/* ============================================================
   AVIDITY JOURNEY — Main Stylesheet
   Brand Colors:
     Primary Navy/Teal : #09466A
     Black             : #000000
     Gold/Tan          : #BDB194
     Light Blue        : #E6F0F5
     Muted Gray        : #D1D2D2
   Theme: Outdoor Adventure / Financial Expedition
   Font: Montserrat
   ============================================================ */

/* ---------- CSS VARIABLES ---------- */
:root {
  --navy: #09466A;
  --navy-dark: #062f48;
  --navy-deeper: #041f31;
  --black: #000000;
  --gold: #BDB194;
  --gold-dark: #a09372;
  --gold-light: #d4ccac;
  --light-blue: #E6F0F5;
  --gray: #D1D2D2;
  --gray-dark: #9a9b9c;
  --white: #ffffff;
  --text-dark: #0d1b2a;
  --text-mid: #2d4a5e;
  --text-light: #6b8fa3;

  /* Semantic */
  --success: #4ECDC4;
  --amber: #E8875B;
  --red: #E85B6C;
  --purple: #7B5BE8;
  --green: #5BAE8D;

  /* Layout */
  --container: 1200px;
  --radius: 16px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(9,70,106,0.12);
  --shadow-lg: 0 12px 48px rgba(9,70,106,0.18);
  --transition: 0.3s ease;

  /* Adventure / Terrain */
  --terrain-tan: rgba(189,177,148,0.08);
  --terrain-navy: rgba(9,70,106,0.07);
  --rugged-border: 2px solid rgba(189,177,148,0.25);
}

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

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

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--white);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- TYPOGRAPHY ---------- */
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 12px;
  display: inline-block;
}
.section-eyebrow.gold { color: var(--gold-dark); }

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 580px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--navy) 0%, #1b7baa 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.underline-gold {
  position: relative;
}
.underline-gold::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
}

/* ---------- BUTTONS ---------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  background: linear-gradient(135deg, var(--navy) 0%, #1b7baa 100%);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 50px;
  transition: var(--transition);
  box-shadow: 0 6px 24px rgba(9,70,106,0.35);
  cursor: pointer;
  border: none;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(9,70,106,0.45);
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
}
.btn-primary.large {
  padding: 18px 40px;
  font-size: 1.05rem;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  background: transparent;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.35);
  transition: var(--transition);
  cursor: pointer;
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.65);
}
.btn-ghost.light {
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 18px 0;
  transition: all 0.4s ease;
}
#navbar.scrolled {
  background: rgba(4, 31, 49, 0.97);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

.nav-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--white);
  flex-shrink: 0;
}
.logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-deeper);
  font-size: 1rem;
  flex-shrink: 0;
}
.logo-text { color: var(--white); }
.logo-accent { color: var(--gold); }

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  color: rgba(255,255,255,0.75);
  font-size: 0.88rem;
  font-weight: 600;
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  padding: 10px 24px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy-deeper);
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 50px;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(189,177,148,0.35);
  flex-shrink: 0;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(189,177,148,0.5);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(4, 31, 49, 0.98);
  padding: 20px 24px 24px;
  gap: 4px;
  backdrop-filter: blur(12px);
}
.mobile-menu a {
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--white); }
.mobile-menu .mobile-cta {
  margin-top: 12px;
  padding: 14px 24px;
  background: var(--gold);
  color: var(--navy-deeper);
  border-radius: 50px;
  text-align: center;
  font-weight: 700;
  border-bottom: none;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
#hero {
  min-height: 100vh;
  background:
    linear-gradient(175deg, var(--navy-deeper) 0%, var(--navy-dark) 45%, #0a3d5f 75%, #0c4872 100%);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 24px 80px;
  overflow: hidden;
}

/* Background shapes */
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; }

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.12;
}
.shape-1 {
  width: 600px; height: 600px;
  background: var(--gold);
  top: -200px; right: -100px;
}
.shape-2 {
  width: 400px; height: 400px;
  background: var(--success);
  bottom: -100px; left: -100px;
}
.shape-3 {
  width: 300px; height: 300px;
  background: #1b7baa;
  top: 40%; left: 40%;
  opacity: 0.08;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* Terrain / mountain silhouette at bottom of hero */
.hero-terrain {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 320px;
  pointer-events: none;
  z-index: 1;
}
.hero-terrain svg {
  width: 100%;
  height: 100%;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(189,177,148,0.15);
  border: 1px solid rgba(189,177,148,0.35);
  padding: 8px 16px;
  border-radius: 50px;
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}
.hero-badge i { color: var(--gold); font-size: 0.85rem; }

.hero-headline {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-sub em { color: var(--gold-light); font-style: normal; font-weight: 600; }

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.2);
}

/* ---------- DASHBOARD MOCKUP ---------- */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.dashboard-mockup {
  width: 100%;
  max-width: 480px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.1);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

.mockup-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(9,70,106,0.6);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mockup-dots { display: flex; gap: 6px; }
.mockup-dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
}
.mockup-dots span:first-child { background: #ff5f57; }
.mockup-dots span:nth-child(2) { background: #febc2e; }
.mockup-dots span:last-child { background: #28c840; }

.mockup-title {
  flex: 1;
  text-align: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.78rem;
  font-weight: 600;
}

.mockup-badge-live {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--success);
  font-size: 0.72rem;
  font-weight: 700;
}
.pulse-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--success);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.mockup-body { padding: 18px; }

.mockup-score-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.score-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.score-label {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.5);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.score-ring {
  position: relative;
  width: 80px;
  height: 80px;
}
.score-ring svg { width: 100%; height: 100%; transform: rotate(-90deg); }

.ring-bg {
  fill: none;
  stroke: rgba(255,255,255,0.1);
  stroke-width: 8;
}
.ring-fill {
  fill: none;
  stroke: url(#scoreGradient);
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 314;
  stroke-dashoffset: 68;
  transition: stroke-dashoffset 1.5s ease;
}

/* inline SVG gradient fallback */
.ring-fill { stroke: var(--gold); }

.score-value {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--white);
}
.score-status {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
  background: rgba(78,205,196,0.2);
  color: var(--success);
}

.score-metrics {
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
}
.metric-item {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 8px;
}
.metric-label {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.55);
  font-weight: 600;
  white-space: nowrap;
}
.metric-label i { margin-right: 4px; color: var(--gold); font-size: 0.6rem; }
.metric-bar {
  height: 5px;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
  overflow: hidden;
  width: 80px;
}
.metric-fill {
  height: 100%;
  background: var(--gold);
  border-radius: 3px;
  transition: width 1.5s ease;
}
.metric-fill.amber { background: var(--amber); }
.metric-fill.green { background: var(--green); }
.metric-pct {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.6);
  font-weight: 700;
  min-width: 28px;
  text-align: right;
}

.mockup-modules {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.mod-chip {
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.62rem;
  font-weight: 700;
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.45);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  gap: 4px;
}
.mod-chip.active {
  background: rgba(9,70,106,0.6);
  color: var(--light-blue);
  border-color: rgba(27,123,170,0.5);
}
.mod-chip.done {
  background: rgba(78,205,196,0.15);
  color: var(--success);
  border-color: rgba(78,205,196,0.3);
}

.mockup-pension {
  background: rgba(9,70,106,0.4);
  border: 1px solid rgba(27,123,170,0.3);
  border-radius: 10px;
  padding: 10px 12px;
}
.pension-label {
  font-size: 0.62rem;
  color: rgba(255,255,255,0.55);
  font-weight: 600;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.pension-label i { color: var(--gold); }
.pension-chart {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 50px;
}
.pension-bar {
  flex: 1;
  background: rgba(255,255,255,0.12);
  border-radius: 3px 3px 0 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  transition: all 0.5s ease;
  position: relative;
}
.pension-bar span {
  font-size: 0.5rem;
  color: rgba(255,255,255,0.35);
  position: absolute;
  bottom: -14px;
  white-space: nowrap;
}
.pension-bar.active {
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-dark) 100%);
}

.mockup-footer {
  padding: 10px 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.achievement, .ai-tip {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.5);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}
.achievement i { color: var(--gold); }
.ai-tip i { color: var(--success); }

/* Floating badges */
.float-badge {
  position: absolute;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 8px 14px;
  border-radius: 50px;
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.float-badge i { color: var(--gold); }

.badge-1 { top: 10%; right: -10px; animation: floatBadge 7s ease-in-out infinite; }
.badge-2 { bottom: 20%; left: -20px; animation: floatBadge 7s ease-in-out infinite 2.5s; }
.badge-3 { bottom: 8%; right: 0px; animation: floatBadge 7s ease-in-out infinite 5s; }

@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
  font-weight: 600;
  z-index: 2;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.bounce {
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ============================================================
   THE PROBLEM SECTION
   ============================================================ */
#problem {
  background: var(--light-blue);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
#problem::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--gold), var(--navy));
}

/* Contour lines overlay for problem section */
.contour-lines {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 200px;
  pointer-events: none;
  overflow: hidden;
}
.contour-lines svg {
  width: 100%;
  height: 100%;
}

.problem-inner { text-align: center; }

.problem-intro {
  font-size: 1.15rem;
  color: var(--text-mid);
  max-width: 620px;
  margin: 0 auto 56px;
  font-weight: 500;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

.problem-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  box-shadow: var(--shadow);
  text-align: left;
  border-top: 3px solid transparent;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}
.problem-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--gold));
  transform: scaleX(0);
  transition: transform 0.35s ease;
  transform-origin: left;
}
.problem-card:hover::after { transform: scaleX(1); }
.problem-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.problem-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--navy) 0%, #1b7baa 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 18px;
}

.problem-card h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.problem-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.65;
}

.problem-statement {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  max-width: 700px;
  margin: 0 auto;
}
.ps-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.problem-statement p {
  font-size: 1.25rem;
  color: var(--text-dark);
  text-align: center;
  line-height: 1.6;
  flex-shrink: 0;
  max-width: 420px;
}
.problem-statement strong {
  color: var(--navy);
  font-weight: 800;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
#how-it-works {
  background: var(--white);
  padding: 100px 0;
  overflow: hidden;
  position: relative;
}
/* Subtle topographic pattern */
#how-it-works::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(9,70,106,0.025) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(189,177,148,0.04) 0%, transparent 40%);
  pointer-events: none;
}

.steps-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

.steps-connector {
  position: absolute;
  top: 70px;
  left: calc(16.66% + 24px);
  right: calc(16.66% + 24px);
  height: 2px;
  background: linear-gradient(90deg, var(--navy), var(--gold), var(--navy));
  opacity: 0.3;
  z-index: 0;
}

.step-card {
  background: var(--white);
  border: 2px solid var(--gray);
  border-radius: 20px;
  padding: 40px 28px;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: all 0.35s ease;
  overflow: hidden;
}
/* Rocky notch accent top-left corner */
.step-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 0;
  border-style: solid;
  border-width: 28px 28px 0 0;
  border-color: var(--light-blue) transparent transparent transparent;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.step-card:hover::after { opacity: 1; }
.step-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(9,70,106,0.03) 0%, rgba(189,177,148,0.05) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.step-card:hover::before { opacity: 1; }
.step-card:hover {
  border-color: var(--navy);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.step-number {
  font-size: 4rem;
  font-weight: 900;
  color: rgba(9,70,106,0.055);
  line-height: 1;
  position: absolute;
  top: 16px;
  right: 20px;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: -2px;
}

.step-icon-wrap {
  width: 72px; height: 72px;
  background: var(--light-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 1.5rem;
  margin: 0 auto 20px;
  transition: all 0.35s ease;
  border: 3px solid transparent;
}
.step-icon-wrap.featured {
  background: linear-gradient(135deg, var(--navy) 0%, #1b7baa 100%);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(9,70,106,0.3);
}
.step-card:hover .step-icon-wrap {
  background: linear-gradient(135deg, var(--navy) 0%, #1b7baa 100%);
  color: var(--white);
  transform: scale(1.1);
}

.step-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.step-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
}

.step-tags {
  display: flex;
  gap: 6px;
  justify-content: center;
  flex-wrap: wrap;
}
.step-tags span {
  padding: 4px 12px;
  background: var(--light-blue);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 20px;
}

/* ============================================================
   MODULES
   ============================================================ */
#modules {
  background: var(--navy-deeper);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
/* Topographic contour grid */
#modules::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 50px 50px;
}
/* Diagonal slash texture */
#modules::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 20px,
    rgba(255,255,255,0.008) 20px,
    rgba(255,255,255,0.008) 21px
  );
  pointer-events: none;
}
#modules .section-title { color: var(--white); }
#modules .section-sub { color: rgba(255,255,255,0.55); }
#modules .section-eyebrow { color: var(--gold); }

.modules-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
  z-index: 1;
}

.module-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 24px 20px;
  position: relative;
  transition: all 0.35s ease;
  overflow: hidden;
  cursor: default;
}
/* Rugged notch top-right */
.module-card::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 0; height: 0;
  border-style: solid;
  border-width: 0 22px 22px 0;
  border-color: transparent rgba(189,177,148,0.1) transparent transparent;
  transition: border-color 0.35s ease;
}
.module-card:hover::after {
  border-color: transparent rgba(189,177,148,0.28) transparent transparent;
}
.module-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(9,70,106,0.3) 0%, rgba(27,123,170,0.1) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.module-card:hover::before { opacity: 1; }
.module-card:hover {
  transform: translateY(-6px);
  border-color: rgba(189,177,148,0.35);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.module-num {
  font-size: 0.65rem;
  font-weight: 800;
  color: rgba(255,255,255,0.2);
  letter-spacing: 1px;
  margin-bottom: 12px;
  font-family: 'Montserrat', sans-serif;
}

.module-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(var(--icon-color, 189,177,148), 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--icon-color, var(--gold));
  font-size: 1.1rem;
  margin-bottom: 14px;
  transition: transform 0.35s ease;
  border: 1px solid rgba(255,255,255,0.06);
}
.module-card:hover .module-icon { transform: scale(1.15); }

.module-card h4 {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}
.module-card p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.48);
  line-height: 1.65;
  margin-bottom: 14px;
}

.module-tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.35);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.08);
}

/* Last module card spans full remaining space */
.modules-grid .module-card:last-child {
  grid-column: span 1;
}

/* ============================================================
   EMPLOYER SPECIFIC
   ============================================================ */
#employers {
  background: var(--white);
  padding: 100px 0;
  position: relative;
}
/* Subtle terrain divider */
#employers::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-dark), var(--navy), transparent);
  opacity: 0.5;
}

.employer-inner { text-align: center; }

.employer-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}

.employer-card {
  background: var(--white);
  border: 2px solid var(--gray);
  border-radius: 16px;
  padding: 28px 16px;
  text-align: center;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}
.employer-card:hover {
  border-color: var(--navy);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.featured-employer {
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(189,177,148,0.06) 0%, rgba(9,70,106,0.04) 100%);
}
.featured-employer::before {
  content: '⭐ Featured';
  position: absolute;
  top: 10px;
  right: -20px;
  background: var(--gold);
  color: var(--navy-deeper);
  font-size: 0.6rem;
  font-weight: 700;
  padding: 3px 24px;
  transform: rotate(35deg);
  letter-spacing: 0.5px;
}

.employer-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--navy) 0%, #1b7baa 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.25rem;
  margin: 0 auto 14px;
}

.employer-name {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 14px;
}

.employer-details {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}
.employer-details span {
  font-size: 0.72rem;
  color: var(--text-light);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}
.employer-details i {
  color: var(--green);
  font-size: 0.62rem;
  flex-shrink: 0;
}

.employer-cta-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--text-light);
  font-size: 0.88rem;
  font-weight: 600;
}
.employer-cta-note i { color: var(--navy); }
.employer-cta-note a {
  color: var(--navy);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition);
}
.employer-cta-note a:hover { color: var(--gold-dark); }

/* ============================================================
   FEATURES
   ============================================================ */
#features {
  background: var(--light-blue);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
/* Diagonal terrain pattern */
#features::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    135deg,
    transparent,
    transparent 30px,
    rgba(9,70,106,0.018) 30px,
    rgba(9,70,106,0.018) 31px
  );
  pointer-events: none;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--white);
  border-radius: 20px;
  padding: 32px 28px;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}
/* Rugged corner accent */
.feature-card:not(.primary-feature)::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 0; height: 0;
  border-style: solid;
  border-width: 0 0 24px 24px;
  border-color: transparent transparent var(--light-blue) transparent;
  opacity: 0.8;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--navy);
}

.primary-feature {
  background: linear-gradient(135deg, var(--navy) 0%, #1b7baa 100%);
  color: var(--white);
  border-color: transparent !important;
}
.primary-feature h3, .primary-feature p { color: var(--white); }
.primary-feature p { opacity: 0.8; }
.primary-feature .feature-icon { background: rgba(255,255,255,0.15); color: var(--gold); }
.primary-feature:hover { box-shadow: 0 12px 48px rgba(9,70,106,0.4); }

.feature-icon {
  width: 56px; height: 56px;
  background: var(--light-blue);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 1.3rem;
  margin-bottom: 20px;
  transition: all 0.35s ease;
}
.feature-card:not(.primary-feature):hover .feature-icon {
  background: var(--navy);
  color: var(--white);
  transform: scale(1.1);
}

.feature-card h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
}

.feature-highlight {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 16px;
  padding: 5px 12px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 20px;
  color: var(--gold-light);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ============================================================
   SOCIAL PROOF
   ============================================================ */
#social-proof {
  background: var(--white);
  padding: 100px 0;
  position: relative;
}
#social-proof::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--navy), var(--gold), transparent);
  opacity: 0.35;
}

.testimonials-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

.testimonial-card {
  background: var(--white);
  border: 2px solid var(--gray);
  border-radius: 20px;
  padding: 32px 28px;
  transition: all 0.35s ease;
  position: relative;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--navy);
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px; right: 24px;
  font-size: 5rem;
  color: rgba(9,70,106,0.06);
  font-family: Georgia, serif;
  line-height: 1;
}

.featured-testimonial {
  background: linear-gradient(135deg, var(--navy) 0%, #1b7baa 100%);
  border-color: transparent;
}
.featured-testimonial .testimonial-text,
.featured-testimonial .author-name { color: var(--white); }
.featured-testimonial .author-role { color: rgba(255,255,255,0.6); }
.featured-testimonial::before { color: rgba(255,255,255,0.08); }
.featured-testimonial:hover { border-color: transparent; }

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}
.testimonial-stars i { color: var(--gold); font-size: 0.85rem; }
.featured-testimonial .testimonial-stars i { color: var(--gold-light); }

.testimonial-text {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px;
  background: var(--light-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 1rem;
  flex-shrink: 0;
}
.featured-testimonial .author-avatar {
  background: rgba(255,255,255,0.15);
  color: var(--white);
}
.author-name {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--text-dark);
}
.author-role {
  font-size: 0.75rem;
  color: var(--text-light);
  font-weight: 500;
}

/* Trust Badges */
.trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--light-blue);
  border: 2px solid transparent;
  border-radius: 50px;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 700;
  transition: all 0.35s ease;
}
.trust-badge i { color: var(--gold-dark); }
.trust-badge:hover {
  border-color: var(--navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* ============================================================
   PRICING
   ============================================================ */
#pricing {
  background: var(--navy-deeper);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
/* Topographic grid */
#pricing::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 50px 50px;
}
/* Trail path diagonal accent */
#pricing::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 24px,
    rgba(255,255,255,0.007) 24px,
    rgba(255,255,255,0.007) 25px
  );
  pointer-events: none;
}
#pricing .section-title { color: var(--white); }
#pricing .section-sub { color: rgba(255,255,255,0.55); }
#pricing .section-eyebrow { color: var(--gold); }

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 860px;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}

.pricing-card {
  background: rgba(255,255,255,0.05);
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  padding: 40px 36px;
  position: relative;
  transition: all 0.35s ease;
  overflow: hidden;
}
.pricing-card:hover {
  transform: translateY(-6px);
  border-color: rgba(189,177,148,0.4);
  box-shadow: 0 16px 56px rgba(0,0,0,0.3);
}

.featured-plan {
  background: linear-gradient(135deg, rgba(189,177,148,0.12) 0%, rgba(9,70,106,0.2) 100%);
  border-color: var(--gold);
  box-shadow: 0 0 40px rgba(189,177,148,0.15);
}
.featured-plan:hover { box-shadow: 0 20px 64px rgba(0,0,0,0.35); }

.pricing-badge-top {
  display: inline-block;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.6);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 20px;
  border: 1px solid rgba(255,255,255,0.15);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.gold-badge {
  background: rgba(189,177,148,0.2);
  color: var(--gold);
  border-color: rgba(189,177,148,0.35);
}

.plan-icon {
  width: 56px; height: 56px;
  background: rgba(255,255,255,0.08);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 1.3rem;
  margin-bottom: 20px;
  border: 1px solid rgba(255,255,255,0.1);
}
.gold-icon { background: rgba(189,177,148,0.15); color: var(--gold); border-color: rgba(189,177,148,0.25); }

.plan-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.price-from { font-size: 0.75rem; color: rgba(255,255,255,0.4); font-weight: 500; }
.price-amount {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.price-period { font-size: 0.85rem; color: rgba(255,255,255,0.5); font-weight: 500; }

.plan-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.plan-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
}
.plan-features li i { font-size: 0.75rem; color: var(--success); flex-shrink: 0; }
.plan-features li.unavailable { opacity: 0.3; }
.plan-features li.unavailable i { color: var(--red); }

.btn-plan {
  display: block;
  text-align: center;
  padding: 15px 24px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.2);
  transition: all 0.35s ease;
  cursor: pointer;
}
.btn-plan:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-2px);
}
.gold-btn {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy-deeper);
  border-color: transparent;
  box-shadow: 0 6px 24px rgba(189,177,148,0.35);
}
.gold-btn:hover {
  box-shadow: 0 10px 32px rgba(189,177,148,0.5);
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
}

.pricing-note {
  text-align: center;
  color: rgba(255,255,255,0.3);
  font-size: 0.8rem;
  position: relative;
  z-index: 1;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
#cta-final {
  background: linear-gradient(165deg, var(--navy-deeper) 0%, var(--navy-dark) 40%, #0a3d5f 75%, #0c4872 100%);
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
/* Mountain terrain SVG overlay */
.cta-terrain {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 200px;
  pointer-events: none;
  z-index: 0;
}
.cta-terrain svg {
  width: 100%;
  height: 100%;
}

.cta-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.cta-shape-1 {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.05;
  top: -150px; left: -100px;
  filter: blur(80px);
}
.cta-shape-2 {
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: var(--success);
  opacity: 0.06;
  bottom: -100px; right: -50px;
  filter: blur(80px);
}

.cta-inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }

.cta-icon-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 28px;
}
.cta-icon-row i {
  font-size: 2rem;
  color: var(--gold);
  opacity: 0.85;
  transition: transform 0.4s ease, opacity 0.4s ease;
  filter: drop-shadow(0 2px 8px rgba(189,177,148,0.35));
}
.cta-inner:hover .cta-icon-row i {
  transform: translateY(-3px);
  opacity: 1;
}

.cta-inner h2 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.cta-inner p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 40px;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.cta-disclaimer {
  color: rgba(255,255,255,0.3);
  font-size: 0.75rem;
  font-weight: 500;
}

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  background: var(--black);
  padding: 64px 0 32px;
  color: rgba(255,255,255,0.55);
  position: relative;
}
/* Subtle mountain silhouette footer divider */
#footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy-dark), var(--gold-dark), var(--navy-dark));
  opacity: 0.7;
}

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

.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.65;
  margin: 16px 0 20px;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  font-size: 0.88rem;
  transition: all var(--transition);
  border: 1px solid rgba(255,255,255,0.08);
}
.footer-social a:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  transform: translateY(-2px);
}

.footer-links h4 {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links li a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
  transition: color var(--transition);
}
.footer-links li a:hover { color: var(--gold); }

.footer-bottom { text-align: center; }
.footer-disclaimer {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 14px 20px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.65;
  margin-bottom: 20px;
  text-align: left;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.footer-disclaimer i { color: rgba(255,255,255,0.2); flex-shrink: 0; margin-top: 2px; }
.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-links-inline { display: flex; gap: 16px; }
.footer-links-inline a {
  color: rgba(255,255,255,0.25);
  font-size: 0.78rem;
  transition: color var(--transition);
}
.footer-links-inline a:hover { color: var(--gold); }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-animate="fade-left"] {
  transform: translateX(40px);
}
[data-animate].visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* ============================================================
   RESPONSIVE — Tablet (1024px)
   ============================================================ */
@media (max-width: 1100px) {
  .modules-grid { grid-template-columns: repeat(3, 1fr); }
  .employer-grid { grid-template-columns: repeat(3, 1fr); }
  .problem-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 980px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { display: none; }

  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-wrapper { grid-template-columns: 1fr; max-width: 560px; margin-left: auto; margin-right: auto; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .steps-wrapper { grid-template-columns: 1fr; }
  .steps-connector { display: none; }
}

/* ============================================================
   RESPONSIVE — Mobile (768px)
   ============================================================ */
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-menu.open { display: flex; }

  #hero { padding: 100px 20px 60px; }
  .hero-headline { font-size: 2.4rem; }
  .hero-stats { gap: 16px; }
  .stat-num { font-size: 1.6rem; }

  #problem, #how-it-works, #modules, #employers, #features,
  #social-proof, #pricing, #cta-final { padding: 72px 0; }

  .problem-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }

  .modules-grid { grid-template-columns: repeat(2, 1fr); }
  .employer-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }

  .cta-inner h2 { font-size: 2rem; }
  .cta-actions { flex-direction: column; align-items: stretch; text-align: center; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-copy { flex-direction: column; gap: 10px; }
}

@media (max-width: 480px) {
  .section-title { font-size: 1.75rem; }
  .modules-grid { grid-template-columns: 1fr; }
  .employer-grid { grid-template-columns: 1fr; }
  .trust-badges { flex-direction: column; align-items: center; }
  .hero-badge { font-size: 0.68rem; }
}
