/* ============================================================
   Wimau - site.css  |  CSS partagé entre toutes les pages
   ============================================================ */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  background: var(--bg);
  color: var(--ink);
}

/* overflow-x: clip sur html évite le scroll horizontal SANS créer
   de contexte de stacking - contrairement à overflow:hidden sur body
   qui piège les éléments position:fixed comme la nav */
html {
  overflow-x: clip;
}

h1, h2, h3, h4, h5, .display {
  font-family: 'Space Grotesk', sans-serif;
}

/* Fallback dark si pas encore de data-theme (évite le flash) */
:root:not([data-theme]) {
  --bg: #0B0C0F;
  --surface: #15171C;
  --surface2: #1D2027;
  --surface3: #252830;
  --border: #2A2D35;
  --gold: #C9A24B;
  --gold-br: #E5C572;
  --gold-dim: #C9A24B22;
  --ink: #EDEAE3;
  --ink-dim: #9A968C;
  --nav-bg: rgba(21,23,28,0.95);
  --card-shadow: none;
  --green: #5E9C76;
  --warn: #D6A34A;
  --danger: #C1554B;
}

/* Alias courts */
.gold { color: var(--gold-br); }
.dim  { color: var(--ink-dim); }

/* ── Container ── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Boutons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 14px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, color .2s ease;
}

.btn-primary {
  background: linear-gradient(160deg, var(--gold-br), var(--gold));
  color: #0B0C0F;
}
.btn-primary:hover  { transform: translateY(-2px); box-shadow: 0 8px 32px #C9A24B40; }
.btn-primary:active { transform: scale(.97); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--border);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-br); }

/* ── Tape divider ── */
/* (aussi défini dans theme.css - redondant OK) */
.tape-divider {
  height: 10px;
  background-image: repeating-linear-gradient(
    to right, var(--gold) 0px, var(--gold) 1px, transparent 1px, transparent 8px
  );
  background-size: 8px 100%;
  opacity: .45;
  mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
  flex-shrink: 0;
}

/* ── Section typography ── */
.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 17px;
  color: var(--ink-dim);
  max-width: 520px;
}

/* ── Feature cards ── */
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  transition: border-color .2s ease, transform .2s ease;
}
.feature-card:hover {
  border-color: #C9A24B55;
  transform: translateY(-3px);
}
.feature-card h3 { font-size: 17px; font-weight: 600; margin-bottom: 8px; }
.feature-card p  { font-size: 14px; color: var(--ink-dim); line-height: 1.7; }

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, #C9A24B22, #C9A24B08);
  border: 1px solid #C9A24B30;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--gold);
  margin-bottom: 18px;
}

/* ── NAV ── */
nav.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  isolation: isolate;
  background: var(--nav-bg, rgba(11,12,15,.92));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 var(--border), 0 4px 24px rgba(0,0,0,.18);
  transform: translateZ(0);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1100px;
  margin: 0 auto;
  gap: 16px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo img {
  width: 34px;
  height: 34px;
  border-radius: 10px;
}
.nav-logo span {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--ink);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  color: var(--ink-dim);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color .2s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--gold-br); font-weight: 600; }

.nav-close {
  display: none;
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 8px 12px;
  cursor: pointer;
  color: var(--ink);
  font-size: 18px;
  line-height: 1;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-cta-mobile { display: none; }

/* Theme toggle */
.theme-toggle {
  display: flex;
  align-items: center;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 3px;
  gap: 2px;
}
.theme-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 99px;
  border: none;
  background: transparent;
  color: var(--ink-dim);
  cursor: pointer;
  font-size: 12px;
  transition: background .15s ease, color .15s ease !important;
}
.theme-btn.active { background: var(--gold); color: #0B0C0F; }
.theme-btn:not(.active):hover { background: var(--surface3); color: var(--ink); }

/* Nav burger */
.nav-burger {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 8px 12px;
  cursor: pointer;
  color: var(--ink);
  font-size: 16px;
  line-height: 1;
  align-items: center;
  justify-content: center;
}

/* ── Mobile nav ── */
@media (max-width: 768px) {
  .nav-cta-desktop { display: none !important; }
  .nav-burger { display: flex; }

  .nav-links {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg);
    backdrop-filter: blur(12px);
    padding: 80px 32px 40px;
    z-index: 1001;
    justify-content: flex-start;
    overflow-y: auto;
  }
  .nav-links.open { display: flex; }
  .nav-links.open a {
    font-size: 22px;
    font-weight: 600;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    width: 100%;
    color: var(--ink);
  }
  .nav-links.open a.active { color: var(--gold-br); }
  .nav-close { display: flex; }
  .nav-cta-mobile {
    display: inline-flex !important;
    margin-top: 24px;
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 15px;
  }
}

/* ── HERO (fullscreen - landing) ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, #C9A24B14 0%, transparent 70%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: .06;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 48px 48px;
}
.hero > * { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 99px;
  font-size: 12px;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 28px;
  letter-spacing: .04em;
}

.hero h1 {
  font-size: clamp(40px, 8vw, 72px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 24px;
  max-width: 900px;
}
.hero p {
  font-size: clamp(16px, 2.5vw, 20px);
  color: var(--ink-dim);
  max-width: 600px;
  margin: 0 auto 40px;
}
.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-proof {
  margin-top: 48px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-proof-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--ink-dim);
}
.hero-proof-item .check-icon { color: var(--green); }

/* ── PAGE HERO (sous-pages ~400px) ── */
.page-hero {
  min-height: 380px;
  display: flex;
  align-items: center;
  padding: 140px 24px 80px;
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(ellipse 70% 80% at 20% 50%, #C9A24B0D 0%, transparent 60%);
}
.page-hero-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: .04;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 48px 48px;
}
.page-hero > * { position: relative; z-index: 1; }
.page-hero .container { width: 100%; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-dim);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--ink-dim); text-decoration: none; transition: color .2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { opacity: .4; }

.page-hero h1 {
  font-size: clamp(32px, 6vw, 58px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 20px;
  max-width: 700px;
}
.page-hero p {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--ink-dim);
  max-width: 560px;
}

/* ── Mockup phone ── */
.mockup-wrap {
  margin-top: 64px;
  position: relative;
  display: inline-block;
}
.mockup-phone {
  width: 280px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 40px;
  padding: 16px;
  box-shadow: 0 40px 120px #00000080;
  position: relative;
  overflow: hidden;
}
.mockup-screen {
  background: var(--bg);
  border-radius: 28px;
  overflow: hidden;
  min-height: 520px;
}
.mockup-notch {
  height: 28px;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.mockup-notch::after {
  content: '';
  width: 80px;
  height: 6px;
  background: var(--surface2);
  border-radius: 99px;
}
.mockup-glow {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #C9A24B22 0%, transparent 70%);
  pointer-events: none;
}

/* ── Social proof (stats) ── */
.stats-row {
  padding: 56px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-item {
  text-align: center;
  padding: 24px 16px;
}
.stat-value {
  font-family: 'JetBrains Mono', 'Space Grotesk', monospace;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  color: var(--gold-br);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 14px;
  color: var(--ink-dim);
}

@media (max-width: 640px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Features grid ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 56px;
}

/* ── Steps (how it works - landing preview) ── */
.steps-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  margin-top: 56px;
  position: relative;
}
.steps-row::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 28px);
  right: calc(12.5% + 28px);
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border), transparent);
}
.step-card {
  text-align: center;
  padding: 0 24px;
}
.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--surface2);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
  position: relative;
  z-index: 1;
}
.step-card h3 { font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.step-card p  { font-size: 13px; color: var(--ink-dim); }

@media (max-width: 640px) {
  .steps-row::before { display: none; }
  .steps-row { grid-template-columns: 1fr 1fr; gap: 32px 16px; }
  .step-card { padding: 0 8px; }
}
@media (max-width: 380px) {
  .steps-row { grid-template-columns: 1fr; gap: 28px; }
}

/* ── Testimonials ── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 56px;
}
.testi-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
}
.testi-stars { color: var(--gold); font-size: 14px; margin-bottom: 14px; }
.testi-card blockquote {
  font-size: 14px;
  color: var(--ink-dim);
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--surface2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #0B0C0F;
  flex-shrink: 0;
}
.testi-name { font-size: 14px; font-weight: 600; }
.testi-role { font-size: 12px; color: var(--ink-dim); }

/* ── Pricing cards ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 56px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.pricing-card.featured {
  border-color: var(--gold);
  background: var(--surface);
}
.pricing-card.featured::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top, #C9A24B10 0%, transparent 60%);
  pointer-events: none;
}
.pricing-badge {
  display: inline-block;
  background: var(--gold);
  color: #0B0C0F;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 99px;
  margin-bottom: 20px;
}
.pricing-name  { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.pricing-price {
  font-family: 'JetBrains Mono', 'Space Grotesk', monospace;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1;
}
.pricing-price span { font-size: 16px; font-weight: 400; color: var(--ink-dim); font-family: 'Inter', sans-serif; }
.pricing-desc  { font-size: 13px; color: var(--ink-dim); margin-bottom: 24px; line-height: 1.6; }
.pricing-features { list-style: none; margin-bottom: 28px; padding: 0; }
.pricing-features li {
  font-size: 14px;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-dim);
}
.pricing-features li:last-child { border: none; }
.pricing-features li .fi-check { color: var(--green); font-size: 12px; flex-shrink: 0; }
.pricing-features li .fi-x { color: var(--ink-dim); font-size: 12px; flex-shrink: 0; opacity: .4; }

/* ── CTA section ── */
.cta-section {
  padding: 120px 24px;
  text-align: center;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, #C9A24B14 0%, transparent 70%);
}
.cta-section h2 {
  font-size: clamp(32px, 6vw, 52px);
  font-weight: 700;
  margin-bottom: 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.15;
}
.cta-section p {
  font-size: 18px;
  color: var(--ink-dim);
  margin-bottom: 40px;
}

/* ── Section link ── */
.section-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold-br);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  margin-top: 40px;
  transition: gap .2s;
}
.section-link:hover { gap: 10px; }

/* ── FAQ Accordion ── */
.faq-list { margin-top: 48px; max-width: 760px; margin-left: auto; margin-right: auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  color: var(--ink);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
}
.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--surface2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--gold);
  transition: transform .3s ease, background .2s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--gold-dim); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-answer-inner {
  padding: 0 0 20px;
  font-size: 15px;
  color: var(--ink-dim);
  line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 300px; }

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border);
  padding: 48px 0 32px;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.footer-links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.footer-links a {
  color: var(--ink-dim);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color .2s;
}
.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  padding-top: 20px;
  text-align: center;
  color: var(--ink-dim);
  font-size: 13px;
  line-height: 1.8;
}

/* ── Sections padding ── */
.section { padding: 100px 0; }
.section-alt { padding: 100px 0; background: var(--surface); }

/* ── Animations scroll ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up   { animation: fadeUp .7s ease both; }
.delay-1   { animation-delay: .1s; }
.delay-2   { animation-delay: .2s; }
.delay-3   { animation-delay: .3s; }
.delay-4   { animation-delay: .4s; }

/* IntersectionObserver targets start hidden - JS reveals them */
.anim-target {
  opacity: 0;
  transform: translateY(20px);
}

/* ── Detailed steps (comment.html) ── */
.step-detailed {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 72px 0;
  border-bottom: 1px solid var(--border);
}
.step-detailed:last-child { border-bottom: none; }
.step-detailed.reverse { direction: rtl; }
.step-detailed.reverse > * { direction: ltr; }

.step-detailed-num {
  font-family: 'JetBrains Mono', 'Space Grotesk', monospace;
  font-size: 88px;
  font-weight: 700;
  color: var(--gold-dim);
  line-height: 1;
  margin-bottom: 16px;
  -webkit-text-stroke: 2px var(--gold);
  color: transparent;
}
.step-detailed-title {
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 700;
  margin-bottom: 16px;
}
.step-detailed-desc {
  font-size: 16px;
  color: var(--ink-dim);
  line-height: 1.8;
  margin-bottom: 20px;
}
.step-detailed-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.step-detailed-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-dim);
}
.step-detailed-list li::before {
  content: '→';
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 1px;
}

.step-illustration {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  position: relative;
  overflow: hidden;
}
.step-illustration::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, #C9A24B08 0%, transparent 60%);
}

/* ── Categories section (fonctionnalites.html) ── */
.cat-section { padding: 64px 0; }
.cat-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}
.cat-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, #C9A24B22, #C9A24B08);
  border: 1px solid #C9A24B30;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--gold);
  flex-shrink: 0;
}
.cat-title { font-size: 22px; font-weight: 700; }

/* ── Demo section ── */
.demo-section {
  padding: 80px 0;
  background: var(--surface);
}
.demo-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.demo-text h2 { font-size: clamp(24px, 4vw, 36px); font-weight: 700; margin-bottom: 16px; }
.demo-text p  { font-size: 16px; color: var(--ink-dim); line-height: 1.8; margin-bottom: 16px; }

/* ── Responsive ── */
@media (max-width: 768px) {
  .section, .section-alt { padding: 64px 0; }
  .cta-section { padding: 80px 24px; }
  .step-detailed { grid-template-columns: 1fr; gap: 40px; direction: ltr !important; }
  .step-detailed.reverse > * { direction: ltr; }
  .demo-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-links { gap: 16px; }
  .page-hero { min-height: auto; padding: 120px 24px 60px; }
  .stat-label { font-size: 12px; }
}

@media (max-width: 480px) {
  .hero { padding: 100px 20px 60px; }
  .btn { padding: 12px 22px; font-size: 14px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .step-detailed-num { font-size: 64px; }
  .testi-grid { grid-template-columns: 1fr; }
}
