/* ============================================================
   ADMISSIONS24 — styles.css
   Clean, modern, professional. Outfit + Sora fonts.
   Palette: Deep Navy #0f172a | Blue #2563eb | White | Light gray
   ============================================================ */

/* ─── RESET & BASE ───────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy: #0f172a;
  --navy-mid: #1e293b;
  --navy-soft: #334155;
  --blue: #2563eb;
  --blue-dark: #1d4ed8;
  --blue-light: #3b82f6;
  --blue-pale: #eff6ff;
  --blue-pale2: #dbeafe;
  --text: #0f172a;
  --text-soft: #475569;
  --text-muted: #94a3b8;
  --border: #e2e8f0;
  --border-mid: #cbd5e1;
  --bg: #ffffff;
  --bg-soft: #f8faff;
  --bg-mid: #f1f5f9;
  --white: #ffffff;
  --radius: 12px;
  --radius-sm: 8px;
  --nav-h: 68px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow: 0 4px 16px rgba(0, 0, 0, 0.08), 0 1px 4px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 20px 48px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
  --transition: 0.24s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

button {
  cursor: pointer;
  font-family: inherit;
}

input,
select,
textarea {
  font-family: inherit;
}

input[type="number"] {
  -moz-appearance: textfield;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="checkbox"] {
  accent-color: var(--blue);
}

/* ─── UTILITIES ──────────────────────────────────────────── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 2vw, 2rem);
}

.section {
  padding: clamp(2.5rem, 5vw, 6rem) 0;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Sora', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-pale);
  border: 1px solid var(--blue-pale2);
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  margin-bottom: 1.2rem;
}

.section-tag.light {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: #93c5fd;
}

.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 4rem;
}

.section-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 1rem;
  letter-spacing: -0.025em;
}

.section-sub {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-soft);
  line-height: 1.7;
}

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: var(--white);
  border: 2px solid var(--blue);
  padding: 0.78rem 1.75rem;
  border-radius: var(--radius-sm);
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--border-mid);
  padding: 0.78rem 1.75rem;
  border-radius: var(--radius-sm);
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-pale);
  transform: translateY(-2px);
}

/* ─── REVEAL ANIMATION ───────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── NAVBAR ─────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition), background var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow);
  background: rgba(255, 255, 255, 0.98);
}

.nav-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-img {
  height: 45px;
  width: auto;
  object-fit: contain;
  max-width: 180px;
  transition: opacity var(--transition);
}

.nav-logo:hover .nav-logo-img {
  opacity: 0.8;
}

.logo-box {
  width: 38px;
  height: 38px;
  background: var(--blue);
  color: var(--white);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Sora', sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  flex-shrink: 0;
}

.logo-text {
  font-family: 'Sora', sans-serif;
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--navy);
  letter-spacing: -0.01em;
}

.logo-text strong {
  font-weight: 700;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-soft);
  transition: color var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform var(--transition);
}

.nav-link:hover {
  color: var(--blue);
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.nav-btn {
  display: inline-flex;
  align-items: center;
  background: var(--blue);
  color: var(--white) !important;
  padding: 0.6rem 1.3rem;
  border-radius: var(--radius-sm);
  font-size: 0.88rem !important;
  font-weight: 600 !important;
  transition: all var(--transition);
}

.nav-btn:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.nav-btn::after {
  display: none !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  margin-top: var(--nav-h);
  background: var(--bg-soft);
  position: relative;
  overflow: hidden;
  padding: 5rem 0 0;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.hero-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 2vw, 2rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.hero-content {
  z-index: 2;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--text-soft);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.45rem 1rem;
  border-radius: 50px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.6rem;
  animation: fadeUp 0.7s ease both 0.1s;
}

.pill-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
  animation: pulse 2s ease infinite;
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.1);
  }
}

.hero-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--navy);
  margin-bottom: 1.5rem;
  animation: fadeUp 0.7s ease both 0.25s;
}

.title-accent {
  color: var(--blue);
  position: relative;
}

.title-accent::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  border-radius: 2px;
  opacity: 0.3;
}

.hero-desc {
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--text-soft);
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: 2.4rem;
  animation: fadeUp 0.7s ease both 0.4s;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  animation: fadeUp 0.7s ease both 0.55s;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  animation: fadeUp 0.7s ease both 0.7s;
}

.hero-stat {
  padding: 1rem 1.5rem;
  text-align: center;
  flex: 1;
}

.hero-stat strong {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 2px;
}

.hero-stat span {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-muted);
  white-space: nowrap;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

.hero-visual {
  position: relative;
  z-index: 2;
  animation: fadeUp 0.8s ease both 0.3s;
}

.hero-card-main {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.card-glow {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-card-inner {
  position: relative;
  z-index: 1;
}

.card-avatar-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.card-avatars {
  display: flex;
  margin-left: 0;
}

.card-av {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2.5px solid var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--white);
  margin-left: -10px;
}

.card-avatars .card-av:first-child {
  margin-left: 0;
}

.av1 {
  background: #2563eb;
}

.av2 {
  background: #7c3aed;
}

.av3 {
  background: #0891b2;
}

.av4 {
  background: #059669;
}

.card-joined {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-soft);
}

.card-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.card-placement {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1rem;
  margin-bottom: 1.5rem;
}

.placement-icon {
  font-size: 1.6rem;
  line-height: 1;
}

.placement-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
}

.placement-school {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-soft);
  margin-top: 2px;
}

.card-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 1.5rem;
}

.card-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.card-metric {
  text-align: center;
  background: var(--blue-pale);
  border-radius: var(--radius-sm);
  padding: 0.9rem;
}

.metric-val {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: -0.02em;
}

.metric-lbl {
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--text-soft);
  margin-top: 2px;
  display: block;
}

.hero-float-badge {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.7rem 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-md);
  animation: float 4s ease-in-out infinite;
}

.hero-float-badge strong {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.hero-float-badge p {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.badge-top {
  top: -1.5rem;
  right: -1.5rem;
  animation-delay: 0s;
}

.badge-bottom {
  bottom: -1.5rem;
  left: -1.5rem;
  animation-delay: 2s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.hero-wave {
  line-height: 0;
  margin-top: -1px;
}

.hero-wave svg {
  width: 100%;
  height: 80px;
  display: block;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─── TRUST BAR ──────────────────────────────────────────── */
.trust-bar {
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
}

.trust-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  overflow: hidden;
}

.trust-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
  flex-shrink: 0;
  padding-right: 2rem;
  border-right: 1px solid var(--border);
}

.trust-logos {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.logo-item {
  height: 32px;
  max-width: 120px;
  object-fit: contain;
  transition: opacity var(--transition), filter var(--transition);
  opacity: 0.7;
  filter: grayscale(100%);
}

.logo-item:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/* ─── APPROACH / HOW IT WORKS ────────────────────────────── */
.approach-section {
  background: var(--bg);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.step-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  transition: all var(--transition);
}

.step-card:hover {
  border-color: var(--blue-pale2);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  background: var(--white);
}

.step-number {
  font-family: 'Sora', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--blue-pale2);
  line-height: 1;
  margin-bottom: 1rem;
  letter-spacing: -0.04em;
}

.step-icon {
  width: 48px;
  height: 48px;
  background: var(--blue-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin-bottom: 1.2rem;
}

.step-card h3 {
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.7rem;
}

.step-card p {
  font-size: 0.88rem;
  color: var(--text-soft);
  line-height: 1.65;
}

.step-arrow {
  position: absolute;
  top: 50%;
  right: -1.2rem;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--blue);
  z-index: 1;
}

/* ─── CAREER LIBRARY ─────────────────────────────────────── */

.career-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.career-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--bg-soft);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem 1.2rem;
  transition: all var(--transition);
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
}

.career-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, transparent 100%);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

.career-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
  background: var(--white);
  background: linear-gradient(135deg, var(--white) 0%, var(--blue-pale) 100%);
}

.career-card:hover::before {
  opacity: 1;
}

.career-icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  transition: transform var(--transition);
}

.career-card:hover .career-icon {
  transform: scale(1.25);
}

.career-card h4 {
  font-family: 'Sora', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.4rem;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.career-card p {
  font-size: 0.8rem;
  color: var(--text-soft);
  line-height: 1.4;
  margin: 0;
}

.career-see-more {
  display: flex;
  justify-content: center;
}

/* ─── RESULTS ────────────────────────────────────────────── */
.results-section {
  background: var(--bg-soft);
  position: relative;
}

.results-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 50%, rgba(37, 99, 235, 0.05) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 50%, rgba(37, 99, 235, 0.03) 0%, transparent 60%);
  pointer-events: none;
}

.results-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.results-right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.result-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem 1.8rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.result-card:hover {
  border-color: var(--blue-pale2);
  box-shadow: var(--shadow);
}

.result-num {
  font-family: 'Sora', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.result-plus {
  color: var(--blue);
}

.result-card p {
  font-size: 0.85rem;
  color: var(--text-soft);
  line-height: 1.5;
  margin-bottom: 0.9rem;
}

.result-card p em {
  font-style: normal;
  color: var(--text-muted);
  font-size: 0.8rem;
}

.result-bar {
  height: 4px;
  background: var(--bg-mid);
  border-radius: 2px;
  overflow: hidden;
}

.result-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  border-radius: 2px;
  width: 0%;
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── SERVICES / PLANS ───────────────────────────────────── */
.services-section {
  background: var(--bg);
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
}

.plan-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 2.4rem 2rem;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
  position: relative;
}

.plan-card:hover {
  border-color: var(--blue-pale2);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.plan-card.featured {
  background: var(--navy);
  border-color: var(--navy);
  box-shadow: var(--shadow-lg);
}

.plan-card.featured:hover {
  border-color: var(--navy-mid);
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(15, 23, 42, 0.2);
}

.plan-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 50px;
  white-space: nowrap;
}

.plan-tier {
  font-family: 'Sora', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.8rem;
}

.plan-card.featured .plan-tier {
  color: #60a5fa;
}

.plan-price {
  font-family: 'Sora', sans-serif;
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
  margin-bottom: 0.4rem;
  line-height: 1.1;
}

.plan-card.featured .plan-price {
  color: var(--white);
}

.plan-price span {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text-muted);
}

.plan-card.featured .plan-price span {
  color: rgba(255, 255, 255, 0.5);
}

.plan-tagline {
  font-size: 0.88rem;
  color: var(--text-soft);
  line-height: 1.5;
  margin-bottom: 1.8rem;
  padding-bottom: 1.8rem;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.plan-card.featured .plan-tagline {
  color: rgba(255, 255, 255, 0.6);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.plan-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
  margin-bottom: 2rem;
}

.plan-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--text-soft);
}

.plan-card.featured .plan-list li {
  color: rgba(255, 255, 255, 0.75);
}

.plan-list li svg {
  flex-shrink: 0;
}

.plan-btn {
  width: 100%;
  padding: 0.9rem 1.5rem;
  background: var(--bg-soft);
  border: 1.5px solid var(--border);
  color: var(--navy);
  border-radius: var(--radius-sm);
  font-family: 'Outfit', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: all var(--transition);
  margin-top: auto;
}

.plan-btn:hover {
  background: var(--blue-pale);
  border-color: var(--blue);
  color: var(--blue);
}

.featured-btn {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white) !important;
}

.featured-btn:hover {
  background: var(--blue-light) !important;
  border-color: var(--blue-light) !important;
  color: var(--white) !important;
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
}

/* ─── TESTIMONIALS ───────────────────────────────────────── */
.testimonials-section {
  background: var(--bg-soft);
  padding: 6rem 0;
}

.testi-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  max-width: 880px;
  margin: 0 auto;
}

.testi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: row;
  height: auto;
  min-height: 260px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.testi-card:hover {
  border-color: var(--blue-pale2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-10px);
}

.testi-image {
  flex: 0 0 38%;
  position: relative;
  overflow: hidden;
  background: #f8fafc;
}

.testi-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 5%;
  display: block;
}

.testi-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 100%;
  background: linear-gradient(to right, var(--white), transparent);
  pointer-events: none;
  z-index: 2;
}

/* Bottom fade for mobile or vertical layouts */
.testi-image::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: linear-gradient(to top, var(--white), transparent);
  pointer-events: none;
  z-index: 3;
  display: none; /* Only show on mobile/vertical */
}

.testi-card:hover .testi-image img {
  transform: scale(1.02);
}

.testi-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--white);
  background: var(--blue);
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  z-index: 2;
}

.testi-meta {
  margin-top: auto;
}

.testi-meta strong {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
  transition: color 0.3s ease;
}

.testi-meta span {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 400;
}

.testi-content {
  padding: 1.8rem 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.8rem;
  background: var(--white);
}

.testi-stars {
  color: #f59e0b;
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin: 0;
}

.testi-quote {
  font-size: 1.05rem;
  color: var(--text-soft);
  line-height: 1.8;
  font-weight: 400;
  margin: 0;
  position: relative;
}

/* Meta is already styled above */

/* ─── FAQ ────────────────────────────────────────────────── */
.faq-section {
  background: var(--bg);
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: start;
}

.faq-left {
  position: sticky;
  top: 5rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.4rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--navy);
  text-align: left;
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--blue);
}

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all var(--transition);
}

.faq-item.open .faq-icon {
  background: var(--blue-pale);
  border-color: var(--blue-pale2);
  color: var(--blue);
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.open .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 0 1.4rem;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-soft);
  line-height: 1.75;
}

/* ─── CONTACT / CTA ──────────────────────────────────────── */
.contact-section {
  position: relative;
  overflow: hidden;
}

.contact-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, #1e3a8a 60%, #1d4ed8 100%);
  z-index: 0;
}

.contact-section .container {
  position: relative;
  z-index: 1;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 1.2rem;
}

.contact-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.contact-trust {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.ct-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
}

.contact-form-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2.4rem;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.25);
  max-height: 85vh;
  overflow-y: auto;
}

.contact-form-card::-webkit-scrollbar {
  width: 8px;
}

.contact-form-card::-webkit-scrollbar-track {
  background: var(--bg-soft);
  border-radius: 10px;
}

.contact-form-card::-webkit-scrollbar-thumb {
  background: var(--border-mid);
  border-radius: 10px;
}

.contact-form-card::-webkit-scrollbar-thumb:hover {
  background: var(--blue);
}

.contact-form-card h3 {
  font-family: 'Sora', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.contact-form-card>p {
  font-size: 0.85rem;
  color: var(--text-soft);
  margin-bottom: 1.8rem;
  line-height: 1.5;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.02em;
}

.optional {
  font-weight: 400;
  color: var(--text-muted);
}

.required {
  color: #ef4444;
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-soft);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.75rem 0.95rem;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--navy);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
  outline: none;
  width: 100%;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group select {
  color: var(--text-soft);
  cursor: pointer;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
  resize: none;
}

.btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 0.9rem;
  background: var(--blue);
  border: 2px solid var(--blue);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: all var(--transition);
  cursor: pointer;
  margin-top: 1.2rem;
}

.btn-submit:hover:not(:disabled) {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
}

.btn-submit:disabled {
  background: var(--text-muted);
  border-color: var(--text-muted);
  color: rgba(255, 255, 255, 0.6);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* ─── TERMS & CONDITIONS CHECKBOX ─────────────────────────── */
.terms-checkbox-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--blue-pale);
  border: 1.5px solid var(--blue-pale2);
  border-radius: var(--radius-sm);
  margin-top: 0.5rem;
}

.terms-checkbox-wrapper input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 2px solid var(--blue);
  border-radius: 4px;
  background: white;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
}

.terms-checkbox-wrapper input[type="checkbox"]:hover {
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

.terms-checkbox-wrapper input[type="checkbox"]:checked {
  background: var(--blue);
  border-color: var(--blue);
}

.terms-checkbox-wrapper input[type="checkbox"]:checked::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 12px;
  font-weight: bold;
}

.terms-label {
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.4;
  user-select: none;
  flex: 1;
}

.terms-label strong {
  color: var(--blue);
  font-weight: 600;
}

/* ─── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: var(--navy);
  padding: clamp(2rem, 4vw, 4rem) 0 clamp(1rem, 2vw, 2rem);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

.footer-logo {
  text-decoration: none;
}

.footer-logo .nav-logo-img {
  height: 50px;
  opacity: 0.9;
  transition: opacity var(--transition);
}

.footer-logo:hover .nav-logo-img {
  opacity: 1;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.footer-socials a:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

.footer-links-group h4 {
  font-family: 'Sora', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 1.2rem;
}

.footer-links-group ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-links-group a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--transition);
}

.footer-links-group a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.25);
  line-height: 1.5;
}

/* ─── TOAST ──────────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  max-width: 360px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.3rem;
  box-shadow: var(--shadow-lg);
  font-size: 0.9rem;
  color: var(--navy);
  display: none;
  align-items: center;
  gap: 0.75rem;
  animation: toastIn 0.35s ease both;
}

.toast.show {
  display: flex;
}

.toast.success {
  border-left: 4px solid #22c55e;
}

.toast.error {
  border-left: 4px solid #ef4444;
}

@keyframes toastIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */
/* ─── TABLET LANDSCAPE (1024px & below) ───────────────────── */
@media (max-width: 1024px) {
  .container {
    padding: 0 1.75rem;
  }

  .section {
    padding: 5rem 0;
  }

  .hero {
    padding: 4rem 0 0;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-bottom: 2rem;
  }

  .hero-visual {
    max-width: 100%;
    width: 100%;
    position: relative;
  }

  .hero-title {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
  }

  .hero-desc {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .hero-actions {
    flex-wrap: wrap;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .hero-stat {
    min-width: 70px;
    padding: 0.8rem 1rem;
  }

  .hero-float-badge {
    position: static !important;
    margin-top: 1.5rem;
    display: flex !important;
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .step-card {
    padding: 2rem;
  }

  .step-arrow {
    display: none !important;
  }

  .career-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
  }

  .career-card {
    padding: 1.5rem 1rem;
  }

  .career-icon {
    font-size: 1.8rem;
  }

  .results-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .testi-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .testi-image {
    height: 280px;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .faq-left {
    position: static;
    margin-bottom: 2rem;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-form-card {
    padding: 2rem;
    max-height: 80vh;
  }

  .form-row {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .nav-logo-img {
    height: 42px;
  }

  .plans-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.8rem;
  }
}

/* ─── TABLET (768px & below) ───────────────────────────────── */
@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }

  .section {
    padding: 1rem 0;
  }

  .section-title {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
  }

  .section-header {
    margin-bottom: 1rem;
    max-width: 100%;
  }

  /* Navbar */
  .navbar {
    height: 56px;
    box-shadow: var(--shadow-sm);
  }

  :root {
    --nav-h: 56px;
  }

  .hamburger {
    display: flex;
  }

  .nav-logo-img {
    height: 38px;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 56px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1.2rem 1.5rem;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    gap: 0.8rem;
    align-items: stretch;
    z-index: 1000;
    max-height: calc(100vh - 56px);
    overflow-y: auto;
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-link,
  .nav-btn {
    width: 100%;
    text-align: left;
    padding: 0.7rem 0;
  }

  .nav-btn {
    text-align: center;
    justify-content: center;
  }

  /* Hero */
  .hero {
    padding: 2rem 0 0;
  }

  .hero-container {
    gap: 2rem;
    padding-bottom: 1.5rem;
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: clamp(1.75rem, 3vw, 2.2rem);
  }

  .hero-desc {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .hero-actions {
    gap: 0.8rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-outline {
    padding: 0.8rem 1.4rem;
    font-size: 0.9rem;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
  }

  .hero-stat {
    padding: 0.7rem 1rem;
    flex: 0 1 auto;
  }

  .hero-stat-divider {
    display: none;
  }

  .hero-visual {
    max-width: 100%;
    width: 100%;
  }

  .hero-float-badge {
    position: static !important;
    display: flex !important;
    margin-top: 1.5rem;
  }

  .badge-top,
  .badge-bottom {
    position: static !important;
    animation: none;
  }

  /* Steps & Cards */
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .step-card {
    padding: 1.5rem;
  }

  /* Career Grid */
  .career-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .career-card {
    padding: 1.2rem 0.8rem;
  }

  .career-icon {
    font-size: 1.6rem;
    margin-bottom: 0.4rem;
  }

  .career-card h4 {
    font-size: 0.85rem;
  }

  .career-card p {
    font-size: 0.75rem;
  }

  /* Trust Bar */
  .trust-bar {
    padding: 0.8rem 0;
  }

  .trust-container {
    gap: 1.5rem;
    padding: 0 1rem;
    flex-wrap: wrap;
  }

  .trust-label {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding-bottom: 0.8rem;
    width: 100%;
    text-align: center;
  }

  .trust-logos {
    gap: 1.2rem;
    justify-content: center;
  }

  .logo-item {
    height: 30px;
  }

  /* Results */
  .results-layout {
    gap: 2rem;
    grid-template-columns: 1fr;
  }

  .result-card {
    padding: 1.3rem;
  }

  .testi-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .testi-card {
    flex-direction: column; 
    min-height: auto;
    position: relative;
    border-radius: 20px;
    padding: 0; /* Remove card padding to allow full-width image */
    background: var(--white);
  }

  .testi-image {
    order: -1; 
    flex: 0 0 300px; /* Increased height for full feel */
    width: 100%;
    margin: 0;
    position: relative;
  }

  .testi-image::after {
    display: none; 
  }

  .testi-image::before {
    display: block; /* Show the bottom fade on mobile */
  }

  .testi-content {
    padding: 1.5rem;
    padding-top: 0.5rem; /* Tighter transition */
    flex: 1;
  }

  .testi-meta {
    position: relative;
    top: auto;
    left: auto;
    z-index: 1;
    margin-top: 1rem;
    padding-top: 0.8rem;
    border-top: 1px solid var(--bg-mid);
  }

  .testi-meta strong {
    color: var(--navy);
    font-size: 1.15rem;
    text-shadow: none;
  }

  .testi-meta span {
    color: var(--text-muted);
    font-size: 0.85rem;
    text-shadow: none;
  }

  .testi-stars {
    margin-bottom: 0.5rem;
  }

  .testi-quote {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .testi-quote {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }

  .testi-meta strong {
    font-size: 1rem;
  }

  .testi-meta span {
    font-size: 0.8rem;
  }

  /* FAQ */
  .faq-layout {
    gap: 1.5rem;
    grid-template-columns: 1fr;
  }

  .faq-left {
    margin-bottom: 1.5rem;
    position: static;
  }

  .faq-list {
    gap: 0;
  }

  /* Form */
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-form-card {
    padding: 1.5rem;
    max-height: 75vh;
    width: 100%;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .form-group label {
    font-size: 0.75rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 0.7rem 0.85rem;
    font-size: 0.85rem;
    width: 100%;
  }

  /* Plans */
  .plans-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .plan-card {
    padding: 1.8rem 1.5rem;
  }

  /* Footer */
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-brand {
    margin-bottom: 1rem;
  }
}

/* ─── EXTRA SMALL PHONES (380px & below) ───────────────────── */
@media (max-width: 380px) {
  :root {
    --nav-h: 50px;
  }

  .container {
    padding: 0 0.8rem;
  }

  .section {
    padding: 0.5rem 0;
  }

  .section-title {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
  }

  .section-tag {
    font-size: 0.6rem;
    padding: 0.25rem 0.6rem;
  }

  /* Navbar */
  .navbar {
    height: 50px;
  }

  .nav-container {
    padding: 0 0.8rem;
  }

  .nav-logo-img {
    height: 30px;
  }

  .hamburger {
    gap: 4px;
    padding: 4px;
  }

  .hamburger span {
    width: 20px;
    height: 1.5px;
  }

  /* Hero */
  .hero-title {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
  }

  .hero-desc {
    font-size: 0.8rem;
    margin-bottom: 1rem;
  }

  .hero-pill {
    font-size: 0.7rem;
    padding: 0.35rem 0.7rem;
    margin-bottom: 1rem;
  }

  .hero-actions {
    gap: 0.5rem;
    margin-bottom: 1.2rem;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-outline {
    padding: 0.7rem 0.9rem;
    font-size: 0.8rem;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    padding: 0.7rem;
    gap: 0.6rem;
  }

  .hero-stat {
    padding: 0.5rem;
  }

  .hero-stat strong {
    font-size: 0.95rem;
  }

  .hero-stat span {
    font-size: 0.6rem;
  }

  /* Cards */
  .career-grid {
    grid-template-columns: 1fr;
  }

  .career-card {
    padding: 0.9rem 0.6rem;
    border-radius: 8px;
  }

  .career-icon {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
  }

  .career-card h4 {
    font-size: 0.7rem;
  }

  .career-card p {
    font-size: 0.65rem;
  }

  .section-header {
    margin-bottom: 0.8rem;
  }

  /* Steps */
  .steps-grid {
    gap: 1rem;
  }

  .step-card {
    padding: 1rem;
  }

  .step-number {
    font-size: 1.5rem;
    margin-bottom: 0.6rem;
  }

  .step-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 0.8rem;
  }

  .step-card h3 {
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
  }

  .step-card p {
    font-size: 0.75rem;
  }

  /* Trust Bar */
  .trust-container {
    gap: 0.6rem;
    padding: 0 0.6rem;
  }

  .trust-label {
    padding-bottom: 0.6rem;
    font-size: 0.6rem;
  }

  .trust-logos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
    justify-items: center;
  }

  .logo-item {
    height: 24px;
    max-width: 70px;
    width: 100%;
  }

  /* Results */
  .result-card {
    padding: 1rem;
  }

  .result-num {
    font-size: 1.4rem;
  }

  .result-card p {
    font-size: 0.75rem;
  }

  /* Form */
  .contact-form-card {
    padding: 1.2rem;
    max-height: 65vh;
  }

  .contact-form-card h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }

  .contact-form-card>p {
    font-size: 0.75rem;
    margin-bottom: 1rem;
  }

  .form-group label {
    font-size: 0.65rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 0.6rem 0.7rem;
    font-size: 0.75rem;
  }

  .btn-submit {
    padding: 0.7rem 0.9rem;
    font-size: 0.8rem;
  }

  /* Testimonials */
  .testi-card {
    padding: 0;
    border-radius: 12px;
  }

  .testi-image {
    height: 260px;
  }

  .testi-content {
    padding: 1.25rem;
  }

  .testi-quote {
    font-size: 0.85rem;
  }

  .testi-meta {
    bottom: 0.75rem;
    left: 0.75rem;
  }

  .testi-meta strong {
    font-size: 0.95rem;
  }

  .testi-meta span {
    font-size: 0.7rem;
  }

  .testi-badge {
    top: 0.75rem;
    right: 0.75rem;
    padding: 0.3rem 0.6rem;
    font-size: 0.65rem;
  }

  /* Footer */
  .footer {
    padding: 1.5rem 0 0.8rem;
  }

  .footer-logo .nav-logo-img {
    height: 36px;
    margin-bottom: 0.6rem;
  }

  .footer-brand p {
    font-size: 0.75rem;
    margin-bottom: 0.8rem;
  }

  .footer-links-group h4 {
    font-size: 0.65rem;
    margin-bottom: 0.6rem;
  }

  .footer-links-group a {
    font-size: 0.7rem;
  }

  .footer-socials a {
    width: 28px;
    height: 28px;
  }

  .footer-bottom p {
    font-size: 0.65rem;
  }
}

/* ─── LARGE SCREENS (1440px+) ───────────────────────────── */
@media (min-width: 1441px) {
  .container {
    max-width: 1280px;
    padding: 0 2.5rem;
  }

  .section {
    padding: 7rem 0;
  }

  .section-title {
    font-size: 2.8rem;
  }

  .hero {
    padding: 6rem 0 0;
  }

  .hero-container {
    padding: 0 2.5rem;
    gap: 4.5rem;
    padding-bottom: 3rem;
  }

  .hero-title {
    font-size: 3.8rem;
  }

  .hero-desc {
    font-size: 1.15rem;
    max-width: 550px;
  }

  .steps-grid {
    gap: 2.5rem;
  }

  .career-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 1.8rem;
  }

  .career-card {
    padding: 2rem 1.4rem;
  }

  .career-icon {
    font-size: 2.2rem;
  }

  .contact-layout {
    gap: 6rem;
  }

  .contact-title {
    font-size: 2.8rem;
  }

  .contact-form-card {
    padding: 3rem;
    max-height: 90vh;
  }

  .footer {
    padding: 5rem 0 2.5rem;
  }

  .footer-top {
    gap: 4rem;
  }
}

/* ─── MOBILE (540px & below) ───────────────────────────────── */
@media (max-width: 540px) {
  :root {
    --nav-h: 52px;
  }

  .container {
    padding: 0 1rem;
  }

  .section {
    padding: 2.5rem 0;
  }

  .section-title {
    font-size: clamp(1.3rem, 2vw, 1.75rem);
    line-height: 1.3;
  }

  .section-tag {
    font-size: 0.65rem;
    padding: 0.3rem 0.7rem;
  }

  .section-header {
    margin-bottom: 2.5rem;
  }

  /* Navbar */
  .navbar {
    height: 52px;
    padding: 0;
  }

  .nav-container {
    padding: 0 1rem;
  }

  .nav-logo-img {
    height: 34px;
    max-width: 140px;
  }

  .nav-menu {
    padding: 1rem 1rem;
    gap: 0.6rem;
    top: 52px;
    max-height: calc(100vh - 52px);
    overflow-y: auto;
  }

  .nav-link {
    font-size: 0.85rem;
    padding: 0.6rem 0;
  }

  .nav-btn {
    padding: 0.65rem 1rem;
    font-size: 0.85rem;
  }

  .hamburger {
    padding: 0.5rem;
  }

  /* Hero */
  .hero {
    padding: 1.5rem 0 0;
    background: var(--bg-soft);
  }

  .hero-bg-grid {
    display: none;
  }

  .hero-container {
    gap: 1.5rem;
    padding-bottom: 1rem;
    grid-template-columns: 1fr;
  }

  .hero-pill {
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
    margin-bottom: 1.2rem;
  }

  .hero-title {
    font-size: clamp(1.5rem, 2.5vw, 1.9rem);
    margin-bottom: 1rem;
    line-height: 1.2;
  }

  .hero-desc {
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
    line-height: 1.6;
  }

  .hero-actions {
    gap: 0.6rem;
    margin-bottom: 1.5rem;
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-outline {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
    justify-content: center;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 0.8rem;
    gap: 0.8rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
  }

  .hero-stat {
    padding: 0.6rem;
    text-align: center;
    border: none;
  }

  .hero-stat strong {
    font-size: 1rem;
  }

  .hero-stat span {
    font-size: 0.65rem;
  }

  .hero-stat-divider {
    display: none;
  }

  .hero-float-badge {
    position: static !important;
    margin-top: 1rem;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    display: flex !important;
  }

  .badge-top,
  .badge-bottom {
    position: static !important;
    animation: none !important;
  }

  .hero-card-main {
    padding: 1.5rem;
    margin: 0;
  }

  .card-avatars {
    margin-left: 0;
  }

  .card-av {
    width: 30px;
    height: 30px;
    font-size: 0.65rem;
  }

  /* Section Header */
  .section-header {
    max-width: 100%;
  }

  /* Steps */
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .step-card {
    padding: 1.2rem;
    position: relative;
  }

  .step-number {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
  }

  .step-icon {
    width: 40px;
    height: 40px;
  }

  .step-card h3 {
    font-size: 0.95rem;
    margin: 0.8rem 0 0.5rem;
  }

  .step-card p {
    font-size: 0.85rem;
    line-height: 1.5;
  }

  /* Career Grid - 2 columns on mobile */
  .career-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }

  .career-card {
    padding: 1rem 0.7rem;
    border-radius: var(--radius-sm);
  }

  .career-icon {
    font-size: 1.4rem;
    margin-bottom: 0.3rem;
  }

  .career-card h4 {
    font-size: 0.75rem;
    margin-bottom: 0.3rem;
  }

  .career-card p {
    font-size: 0.7rem;
  }

  .career-see-more {
    margin-top: 1.5rem;
  }

  .career-see-more .btn-primary {
    width: 100%;
  }

  /* Trust Bar */
  .trust-bar {
    padding: 0.7rem 0;
  }

  .trust-container {
    flex-direction: column;
    gap: 0.8rem;
    padding: 0 0.8rem;
    align-items: center;
  }

  .trust-label {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding-right: 0;
    padding-bottom: 0.8rem;
    text-align: center;
    width: 100%;
  }

  .trust-logos {
    justify-content: center;
    gap: 0.8rem;
    flex-wrap: wrap;
  }

  .logo-item {
    height: 26px;
    max-width: 85px;
  }

  /* Results */
  .results-layout {
    gap: 1.5rem;
    grid-template-columns: 1fr;
  }

  .results-left {
    margin-bottom: 1rem;
  }

  .result-card {
    padding: 1.2rem;
    border-radius: var(--radius-sm);
  }

  .result-num {
    font-size: 1.6rem;
    margin-bottom: 0.4rem;
  }

  .result-card p {
    font-size: 0.8rem;
  }

  .result-bar {
    height: 3px;
  }

  /* Plans Grid */
  .plans-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .plan-card {
    padding: 1.5rem;
    border-radius: var(--radius);
  }

  .plan-price {
    font-size: 1.5rem;
  }

  .plan-btn {
    padding: 0.8rem 1.2rem;
    font-size: 0.9rem;
  }

  /* Testimonials */
  .testi-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .testi-card {
    padding: 0;
    border-radius: var(--radius-sm);
  }

  .testi-image {
    height: 300px;
  }

  .testi-content {
    padding: 1.5rem;
  }

  .testi-quote {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }

  .testi-meta {
    bottom: 1.25rem;
    left: 1.25rem;
  }

  .testi-meta strong {
    font-size: 1.05rem;
  }

  .testi-meta span {
    font-size: 0.75rem;
  }

  .testi-badge {
    top: 1rem;
    right: 1rem;
    padding: 0.35rem 0.7rem;
    font-size: 0.7rem;
  }

  /* FAQ */
  .faq-layout {
    gap: 1.5rem;
    grid-template-columns: 1fr;
  }

  .faq-left {
    margin-bottom: 1rem;
    position: static;
  }

  .faq-question {
    padding: 0.9rem 0;
    font-size: 0.85rem;
  }

  .faq-icon {
    width: 24px;
    height: 24px;
  }

  .faq-answer p {
    font-size: 0.8rem;
    line-height: 1.6;
    padding-bottom: 1rem;
  }

  .faq-item.open .faq-answer {
    max-height: 300px;
  }

  /* Contact */
  .contact-bg {
    background: linear-gradient(135deg, var(--navy) 0%, #1e3a8a 100%);
  }

  .contact-layout {
    gap: 1.5rem;
    grid-template-columns: 1fr;
  }

  .contact-title {
    font-size: clamp(1.3rem, 2vw, 1.6rem);
    margin-bottom: 1rem;
  }

  .contact-desc {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }

  .contact-left {
    margin-bottom: 1rem;
  }

  .contact-trust {
    gap: 0.6rem;
  }

  .ct-item {
    font-size: 0.8rem;
    gap: 0.6rem;
  }

  /* Form */
  .contact-form-card {
    padding: 1.4rem;
    max-height: 70vh;
    border-radius: 12px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
  }

  .contact-form-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
  }

  .contact-form-card>p {
    font-size: 0.8rem;
    margin-bottom: 1.2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .form-group {
    gap: 0.35rem;
  }

  .form-group label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.01em;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 0.65rem 0.8rem;
    font-size: 0.8rem;
    border-radius: var(--radius-sm);
    width: 100%;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }

  .form-group select {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.5rem center;
    background-size: 1.2em;
    padding-right: 2.5rem;
  }

  .btn-submit {
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
    width: 100%;
    margin-top: 0.5rem;
  }

  /* Footer */
  .footer {
    padding: 2rem 0 1rem;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-brand {
    margin-bottom: 0;
  }

  .footer-logo .nav-logo-img {
    height: 40px;
    margin-bottom: 0.8rem;
  }

  .footer-brand p {
    font-size: 0.8rem;
    margin-bottom: 1.2rem;
  }

  .footer-links-group {
    margin-bottom: 1.5rem;
  }

  .footer-links-group h4 {
    font-size: 0.7rem;
    margin-bottom: 0.8rem;
  }

  .footer-links-group ul {
    gap: 0.5rem;
  }

  .footer-links-group a {
    font-size: 0.75rem;
  }

  .footer-socials {
    gap: 0.5rem;
    justify-content: flex-start;
  }

  .footer-socials a {
    width: 32px;
    height: 32px;
  }

  .footer-bottom {
    padding: 1rem 0 0;
    gap: 0.3rem;
  }

  .footer-bottom p {
    font-size: 0.7rem;
  }
}

/* ─── SMALL PHONES (380px - 480px) ──────────────────────────── */
@media (min-width: 381px) and (max-width: 479px) {
  :root {
    --nav-h: 52px;
  }

  .container {
    padding: 0 0.9rem;
  }

  .section {
    padding: 2.2rem 0;
  }

  .section-title {
    font-size: clamp(1.2rem, 2vw, 1.6rem);
  }

  /* Hero */
  .hero-title {
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  }

  .hero-desc {
    font-size: 0.85rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-outline {
    width: 100%;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Career Grid */
  .career-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Form */
  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-card {
    padding: 1.3rem;
  }
}