/* ============================================================
   Strive5 Website — main.css
   Fonts: Fraunces (display) + DM Sans (body)
   Palette: warm light / ink dark
============================================================ */

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

/* === VARIABLES === */
:root {
  --amber:       #D97706;
  --amber-light: #FDE68A;
  --amber-pale:  #FFFBEB;
  --amber-dark:  #92400E;
  --ink:         #1C1917;
  --ink-mid:     #44403C;
  --ink-soft:    #78716C;
  --ink-faint:   #A8A29E;
  --cream:       #FAFAF9;
  --white:       #FFFFFF;
  --border:      #E7E5E4;
  --border-soft: #F5F5F4;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --radius-xl: 40px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.04);
  --shadow-lg: 0 12px 48px rgba(0,0,0,.10), 0 4px 16px rgba(0,0,0,.06);

  --max-w:      1200px;
  --section-v:  96px;
  --nav-h:      64px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

/* === UTILITY === */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}

.sr-only {
  position: absolute; width:1px; height:1px;
  overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap;
}

/* ============================================================
   NAVIGATION
============================================================ */
#site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-soft);
  transition: box-shadow 0.2s;
}

#site-nav.scrolled { box-shadow: var(--shadow-sm); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  gap: 16px;
}

.nav-logo img { display: block; height: 36px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-links a {
  display: block;
  padding: 6px 14px;
  font-size: 15px;
  font-weight: 400;
  color: var(--ink-mid);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: color 0.15s, background 0.15s;
}
.nav-links a:hover { color: var(--ink); background: var(--border-soft); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Language picker */
.nav-lang-wrap { position: relative; }

.nav-lang {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  font-size: 13px;
  font-weight: 400;
  color: var(--ink-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  background: transparent;
  transition: border-color 0.15s;
  font-family: var(--font-body);
}
.nav-lang:hover { border-color: var(--ink-faint); }
.nav-lang svg { width: 14px; height: 14px; flex-shrink: 0; }

.nav-lang-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 6px;
  list-style: none;
  min-width: 80px;
  display: none;
}
.nav-lang-dropdown.open { display: block; }
.nav-lang-dropdown a {
  display: block;
  padding: 7px 12px;
  font-size: 14px;
  color: var(--ink-mid);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: background 0.12s;
}
.nav-lang-dropdown a:hover,
.nav-lang-dropdown a[aria-selected="true"] {
  background: var(--amber-pale);
  color: var(--amber-dark);
}

.btn-ghost {
  padding: 8px 16px;
  font-size: 15px;
  font-weight: 400;
  color: var(--ink-mid);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}
.btn-ghost:hover { color: var(--ink); background: var(--border-soft); }

.btn-primary {
  padding: 9px 20px;
  font-size: 15px;
  font-weight: 500;
  color: white;
  background: var(--amber);
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background 0.15s, transform 0.1s;
  white-space: nowrap;
}
.btn-primary:hover { background: #B45309; transform: translateY(-1px); }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
  border-radius: var(--radius-sm);
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--ink-mid);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
.nav-hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  border-top: 1px solid var(--border-soft);
  padding: 16px 20px 20px;
  background: rgba(255,255,255,0.96);
}
.mobile-menu[hidden] { display: none; }
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.mobile-menu a {
  display: block; padding: 10px 8px;
  font-size: 16px; color: var(--ink-mid);
  text-decoration: none;
  border-radius: var(--radius-sm);
}
.mobile-menu a:hover { background: var(--border-soft); color: var(--ink); }
.mobile-menu-actions {
  display: flex; gap: 10px; margin-top: 16px; padding-top: 16px;
  border-top: 1px solid var(--border-soft);
}
.mobile-menu-actions .btn-ghost { flex: 1; text-align: center; }
.mobile-menu-actions .btn-primary { flex: 1; text-align: center; }

/* ============================================================
   HERO
============================================================ */
.hero {
  padding-top: calc(var(--nav-h) + 64px);
  padding-bottom: 80px;
  background: var(--white);
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(ellipse at center, rgba(217,119,6,0.09) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px 5px 8px;
  background: var(--amber-pale);
  border: 1px solid var(--amber-light);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--amber-dark);
  margin-bottom: 24px;
}

.hero-badge-dot {
  width: 7px; height: 7px;
  background: var(--amber);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(0.85); }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: -1.5px;
  color: var(--ink);
  margin-bottom: 20px;
}
.hero h1 em { font-style: italic; color: var(--amber); }

.hero-sub {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-mid);
  max-width: 440px;
  margin-bottom: 36px;
  font-weight: 300;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-hero {
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 500;
  color: white;
  background: var(--amber);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: background 0.15s, transform 0.1s, box-shadow 0.15s;
  box-shadow: 0 4px 20px rgba(217,119,6,0.25);
}
.btn-hero:hover {
  background: #B45309;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(217,119,6,0.30);
}

.hero-cta-note { font-size: 14px; color: var(--ink-soft); }
.hero-cta-note strong { color: var(--ink-mid); font-weight: 500; }

.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 44px;
  padding-top: 32px;
  border-top: 1px solid var(--border-soft);
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--ink-soft);
}
.hero-trust-item svg { width: 16px; height: 16px; color: var(--amber); flex-shrink: 0; }

/* Hero visual */
.hero-visual { position: relative; }

.app-mockup {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.mockup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.mockup-date  { font-size: 13px; color: var(--ink-soft); font-weight: 300; }
.mockup-title { font-family: var(--font-display); font-size: 20px; font-weight: 400; color: var(--ink); }
.mockup-streak { display: flex; align-items: center; gap: 5px; font-size: 13px; color: var(--amber); font-weight: 500; }

.mockup-tasks { display: flex; flex-direction: column; gap: 10px; }

.task-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}
.task-item.done { background: var(--amber-pale); border-color: var(--amber-light); }

.task-check {
  width: 20px; height: 20px;
  border: 2px solid var(--border);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.task-item.done .task-check { background: var(--amber); border-color: var(--amber); }
.task-check svg { width: 11px; height: 11px; color: white; }

.task-text { font-size: 15px; color: var(--ink); flex: 1; }
.task-item.done .task-text {
  color: var(--ink-soft);
  text-decoration: line-through;
  text-decoration-color: var(--amber-light);
}

.task-priority { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.p1 { background: #EF4444; }
.p2 { background: var(--amber); }
.p3 { background: #6B7280; }

.mockup-counter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border-soft);
}
.counter-dots { display: flex; gap: 6px; }
.counter-dot { width: 28px; height: 6px; border-radius: 3px; background: var(--border); }
.counter-dot.filled { background: var(--amber); }
.counter-text { font-size: 13px; color: var(--ink-soft); }

.mockup-float {
  position: absolute;
  bottom: -20px; left: -20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
}
.float-icon {
  width: 36px; height: 36px;
  background: var(--amber-pale);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.float-text { display: flex; flex-direction: column; }
.float-text strong { font-size: 14px; font-weight: 500; color: var(--ink); }
.float-text span   { font-size: 12px; color: var(--ink-soft); }

/* ============================================================
   SOCIAL PROOF / LOGOS
============================================================ */
.logos {
  padding: 48px 0;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  background: var(--cream);
}

.logos-label {
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 28px;
  font-weight: 500;
}

.logos-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.logo-placeholder {
  height: 24px;
  background: var(--border);
  border-radius: 4px;
  opacity: 0.6;
}

/* ============================================================
   SECTION SHARED
============================================================ */
.section-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 300;
  line-height: 1.18;
  letter-spacing: -1px;
  color: var(--ink);
  margin-bottom: 16px;
}
.section-title em { font-style: italic; color: var(--amber); }

.section-lead {
  font-size: 17px;
  color: var(--ink-mid);
  font-weight: 300;
  max-width: 540px;
  line-height: 1.65;
}

/* ============================================================
   CONCEPT
============================================================ */
.concept {
  padding: var(--section-v) 0;
  background: var(--white);
}

.concept-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.concept-quote {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 300;
  font-style: italic;
  color: var(--ink-mid);
  line-height: 1.4;
  border-left: 3px solid var(--amber-light);
  padding-left: 20px;
  margin: 24px 0;
}

.concept-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 8px;
}

.stat-card {
  padding: 20px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}
.stat-num   { font-family: var(--font-display); font-size: 28px; font-weight: 400; color: var(--ink); letter-spacing: -0.5px; }
.stat-label { font-size: 13px; color: var(--ink-soft); margin-top: 2px; }

.concept-visual { display: flex; flex-direction: column; gap: 12px; }

.concept-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 96px; height: 96px;
  background: var(--amber);
  border-radius: 24px;
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 600;
  color: white;
  margin: 0 auto 8px;
  box-shadow: 0 8px 32px rgba(217,119,6,0.25);
}

.concept-list-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.concept-task {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 8px;
}
.concept-task:last-of-type { margin-bottom: 0; }
.concept-task.primary { background: var(--amber-pale); border-color: var(--amber-light); }
.concept-task.dim2 { opacity: 0.65; }
.concept-task.dim3 { opacity: 0.4; }

.concept-task-num {
  font-size: 13px;
  color: var(--ink-faint);
  font-weight: 600;
  min-width: 20px;
}
.concept-task.primary .concept-task-num { color: var(--amber-dark); }

.concept-task-text { font-size: 15px; color: var(--ink); flex: 1; }
.concept-task.dim2 .concept-task-text,
.concept-task.dim3 .concept-task-text { color: var(--ink-soft); }

.concept-badge-high {
  font-size: 11px;
  color: var(--amber);
  background: rgba(217,119,6,.12);
  padding: 2px 8px;
  border-radius: 99px;
  font-weight: 600;
}

.concept-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border-soft);
}
.concept-footer-left  { font-size: 13px; color: var(--ink-soft); }
.concept-footer-right { font-size: 13px; color: var(--amber); font-weight: 500; }

/* ============================================================
   FEATURES
============================================================ */
.features {
  padding: var(--section-v) 0;
  background: var(--cream);
}

.features-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 64px;
}

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

.feature-card {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.feature-card:hover {
  border-color: var(--amber-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.feature-icon {
  width: 44px; height: 44px;
  background: var(--amber-pale);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}

.feature-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber-dark);
  background: rgba(217,119,6,0.1);
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 10px;
}

.feature-title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.2px;
}

.feature-desc {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.6;
  font-weight: 300;
}

/* ============================================================
   HOW IT WORKS
============================================================ */
.how {
  padding: var(--section-v) 0;
  background: var(--white);
}

.how-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.how-steps {
  display: flex;
  flex-direction: column;
  margin-top: 40px;
}

.how-step {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border-soft);
  cursor: pointer;
}
.how-step:first-child { padding-top: 0; }
.how-step:last-child  { border-bottom: none; }

.step-num {
  width: 36px; height: 36px;
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 400;
  color: var(--ink-faint);
  flex-shrink: 0;
  margin-top: 2px;
  transition: border-color 0.2s, color 0.2s;
}
.how-step.active .step-num { border-color: var(--amber); color: var(--amber); }

.step-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 6px;
}

.step-desc {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.6;
  font-weight: 300;
}

.how-screen {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}

.screen-card {
  background: var(--ink);
  border-radius: var(--radius-lg);
  padding: 32px;
  color: white;
  box-shadow: var(--shadow-lg);
}

.screen-topbar { display: flex; gap: 6px; margin-bottom: 24px; }
.screen-dot { width: 10px; height: 10px; border-radius: 50%; }
.sd-red   { background: #FF5F57; }
.sd-amber { background: #FFBD2E; }
.sd-green { background: #28C840; }

.screen-day-label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.4);
  margin-bottom: 6px;
}

.screen-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 300;
  color: white;
  margin-bottom: 24px;
  letter-spacing: -0.3px;
}

.screen-task {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.screen-task:last-of-type { border-bottom: none; }

.screen-check {
  width: 18px; height: 18px;
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  flex-shrink: 0;
}
.screen-check.done { background: var(--amber); border-color: var(--amber); }

.screen-task-text { font-size: 15px; color: rgba(255,255,255,0.8); }
.screen-task.done-task .screen-task-text {
  color: rgba(255,255,255,0.35);
  text-decoration: line-through;
}

/* ============================================================
   LANGUAGES
============================================================ */
.languages {
  padding: 64px 0;
  background: var(--amber-pale);
  border-top: 1px solid var(--amber-light);
  border-bottom: 1px solid var(--amber-light);
}

.lang-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.lang-text { flex: 1; min-width: 240px; }

.lang-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  flex: 2;
}

.lang-chip {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  background: var(--white);
  border: 1px solid var(--amber-light);
  border-radius: 999px;
  font-size: 14px;
  color: var(--ink-mid);
}

.lang-flag { font-size: 18px; line-height: 1; }

/* ============================================================
   PRICING
============================================================ */
.pricing {
  padding: var(--section-v) 0;
  background: var(--white);
}

.pricing-header {
  text-align: center;
  max-width: 500px;
  margin: 0 auto 56px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
  align-items: start;
}

.price-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  background: var(--white);
  position: relative;
}
.price-card.featured {
  border-color: var(--amber);
  background: var(--ink);
  color: white;
}

.popular-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--amber);
  color: white;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  white-space: nowrap;
}

.price-tier {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 12px;
}
.price-card.featured .price-tier { color: rgba(255,255,255,0.5); }

.price-amount {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 300;
  letter-spacing: -1.5px;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 4px;
}
.price-card.featured .price-amount { color: white; }

.price-period { font-size: 14px; color: var(--ink-soft); margin-bottom: 24px; }
.price-card.featured .price-period { color: rgba(255,255,255,0.45); }

.price-desc { font-size: 15px; color: var(--ink-soft); margin-bottom: 24px; line-height: 1.55; font-weight: 300; }
.price-card.featured .price-desc { color: rgba(255,255,255,0.65); }

.price-divider { height: 1px; background: var(--border-soft); margin: 24px 0; }
.price-card.featured .price-divider { background: rgba(255,255,255,0.1); }

.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-mid);
  line-height: 1.5;
}
.price-card.featured .price-features li { color: rgba(255,255,255,0.75); }
.price-features li::before {
  content: '✓';
  color: var(--amber);
  font-weight: 600;
  font-size: 13px;
  margin-top: 2px;
  flex-shrink: 0;
}

.price-note {
  font-size: 12px;
  color: var(--ink-faint);
  text-align: center;
  margin-top: 10px;
}
.price-card.featured .price-note { color: rgba(255,255,255,0.3); }

.price-cta {
  display: block;
  width: 100%;
  padding: 12px;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all 0.15s;
}
.price-cta-outline { border: 1.5px solid var(--border); color: var(--ink); }
.price-cta-outline:hover { border-color: var(--ink-faint); background: var(--cream); }
.price-cta-primary { background: var(--amber); color: white; box-shadow: 0 4px 16px rgba(217,119,6,0.25); }
.price-cta-primary:hover { background: #B45309; }
.price-cta-dark { border: 1.5px solid rgba(255,255,255,0.2); color: white; }
.price-cta-dark:hover { background: rgba(255,255,255,0.08); }

/* ============================================================
   TESTIMONIALS
============================================================ */
.testimonials {
  padding: var(--section-v) 0;
  background: var(--cream);
}

.testimonials-header {
  text-align: center;
  max-width: 480px;
  margin: 0 auto 56px;
}

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

.testi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.testi-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.testi-stars span { color: var(--amber); font-size: 15px; }

.testi-quote {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 300;
  font-style: italic;
  color: var(--ink);
  line-height: 1.55;
  margin-bottom: 20px;
}

.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--amber-pale);
  border: 1px solid var(--amber-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--amber-dark);
  flex-shrink: 0;
}
.testi-name { font-size: 14px; font-weight: 500; color: var(--ink); }
.testi-role { font-size: 13px; color: var(--ink-soft); }

/* ============================================================
   FAQ
============================================================ */
.faq {
  padding: var(--section-v) 0;
  background: var(--white);
}

.faq-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
}

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

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

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 16px;
  font-weight: 400;
  color: var(--ink);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 16px;
  font-family: var(--font-body);
}
.faq-question:hover { color: var(--amber); }

.faq-icon {
  width: 20px; height: 20px;
  color: var(--ink-faint);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--amber); }

.faq-answer {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.65;
  font-weight: 300;
  display: none;
  padding-bottom: 20px;
}
.faq-item.open .faq-answer { display: block; }

/* ============================================================
   FINAL CTA
============================================================ */
.cta-section {
  padding: var(--section-v) 0;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse at center, rgba(217,119,6,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner { text-align: center; position: relative; }
.cta-inner .section-label { color: var(--amber-light); }

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 300;
  letter-spacing: -1.5px;
  color: white;
  line-height: 1.12;
  margin-bottom: 16px;
}
.cta-title em { font-style: italic; color: var(--amber); }

.cta-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.55);
  max-width: 440px;
  margin: 0 auto 36px;
  font-weight: 300;
}

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

.btn-cta {
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 500;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all 0.15s;
}
.btn-cta-amber {
  background: var(--amber);
  color: white;
  box-shadow: 0 4px 24px rgba(217,119,6,0.35);
}
.btn-cta-amber:hover { background: #F59E0B; transform: translateY(-2px); }

.btn-cta-ghost {
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.75);
}
.btn-cta-ghost:hover { border-color: rgba(255,255,255,0.4); color: white; }

/* ============================================================
   FOOTER
============================================================ */
footer {
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 56px 0 32px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand {}
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo img { height: 30px; width: auto; filter: brightness(0) invert(1); }

.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
  font-weight: 300;
  max-width: 220px;
}

.footer-col-title {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-links a:hover { color: rgba(255,255,255,0.8); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.25); }

.footer-legal { display: flex; gap: 20px; }
.footer-legal a {
  font-size: 13px;
  color: rgba(255,255,255,0.25);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-legal a:hover { color: rgba(255,255,255,0.5); }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 900px) {
  .hero-inner,
  .concept-inner,
  .how-inner,
  .faq-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-visual { display: none; }

  .features-grid,
  .pricing-grid,
  .testi-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner { grid-template-columns: 1fr 1fr; }

  .nav-links  { display: none; }
  .nav-hamburger { display: flex; }
  .nav-lang { display: none; }

  :root { --section-v: 64px; }
}

@media (max-width: 600px) {
  .container  { padding: 0 20px; }
  .nav-inner  { padding: 0 20px; }
  .footer-inner    { grid-template-columns: 1fr; }
  .lang-inner      { flex-direction: column; align-items: flex-start; }
  .concept-stats   { grid-template-columns: 1fr; }
  .pricing-grid    { max-width: 100%; }
}
