/* ── OpenEar — Noir Minimal ── */

:root {
  --bg: #060607;
  --bg-warm: #0c0b0a;
  --bg-elevated: #131211;
  --bg-card: #171615;
  --bg-card-hover: #1c1b19;
  --bg-inset: #0a0908;

  --ivory: #f2ede5;
  --cream: #dbd3c7;
  --parchment: #c4baa8;
  --stone: #918778;
  --muted: #5e564c;
  --faint: #3a352f;

  --dahlia: #c43e4c;
  --dahlia-soft: #d4525f;
  --dahlia-warm: #b8384a;
  --dahlia-deep: #8a1a28;
  --dahlia-dim: rgba(196, 62, 76, 0.05);
  --dahlia-glow: rgba(196, 62, 76, 0.08);
  --dahlia-border: rgba(196, 62, 76, 0.12);

  --gold: #c9a96e;
  --gold-dim: rgba(201, 169, 110, 0.06);
  --gold-border: rgba(201, 169, 110, 0.10);
  --green: #7eb882;

  --border: rgba(255, 248, 235, 0.035);
  --border-warm: rgba(201, 169, 110, 0.07);

  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
}

/* ── Reset ── */
html {
  background: var(--bg) !important;
  color: var(--cream) !important;
  scroll-behavior: smooth;
}

body {
  background: var(--bg) !important;
  color: var(--cream) !important;
  font-family: 'Inter', -apple-system, sans-serif !important;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.75 !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* Noise grain */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.018;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 512px 512px;
}

body > * { position: relative; z-index: 1; }

::selection { background: rgba(196, 62, 76, 0.25); color: var(--ivory); }

/* ── Gradient text ── */
.grad-text {
  background: linear-gradient(135deg, var(--dahlia-soft), var(--dahlia), var(--dahlia-deep));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Layout ── */
.container {
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 48px;
  padding-right: 48px;
  width: 100%;
  box-sizing: border-box;
}

/* ── Nav ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  background: rgba(6, 6, 7, 0.8);
  backdrop-filter: blur(40px) saturate(1.5);
  -webkit-backdrop-filter: blur(40px) saturate(1.5);
  border-bottom: 1px solid var(--border);
}
.nav__brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--ivory);
  text-decoration: none;
  letter-spacing: 0.05em;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__link {
  font-size: 11px;
  color: var(--stone);
  text-decoration: none;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 400;
  transition: color 0.3s;
}
.nav__link:hover { color: var(--cream); }
.nav__cta {
  font-size: 10px;
  font-weight: 500;
  color: var(--dahlia);
  text-decoration: none;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 100px;
  background: rgba(196, 62, 76, 0.08);
  border: 1px solid rgba(196, 62, 76, 0.15);
  transition: all 0.3s;
}
.nav__cta:hover {
  background: rgba(196, 62, 76, 0.14);
  border-color: rgba(196, 62, 76, 0.25);
  color: var(--dahlia-soft);
  box-shadow: 0 0 20px rgba(196, 62, 76, 0.1);
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 0 100px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero__glow {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(196, 62, 76, 0.06) 0%, rgba(196, 62, 76, 0.02) 40%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  filter: blur(60px);
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero__content {
  max-width: 680px;
  margin: 0 auto;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 100px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-warm);
  font-size: 9px;
  font-weight: 500;
  color: var(--stone);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 36px;
}
.hero__badge-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px rgba(126, 184, 130, 0.5);
  animation: dotPulse 3s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 10px rgba(126, 184, 130, 0.5); }
  50% { opacity: 0.6; box-shadow: 0 0 4px rgba(126, 184, 130, 0.3); }
}

.hero__title {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 80px !important;
  line-height: 0.95 !important;
  letter-spacing: -0.025em;
  color: var(--ivory);
  margin-bottom: 28px;
  font-weight: 300 !important;
}
.hero__title-em {
  font-style: italic;
  font-weight: 400;
}

.hero__sub {
  font-size: 17px;
  line-height: 1.8;
  color: var(--stone);
  max-width: 480px;
  margin: 0 auto 44px;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.hero__note {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.hero__note strong {
  color: var(--parchment);
  font-weight: 400;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: linear-gradient(180deg, var(--dahlia-soft) 0%, var(--dahlia-warm) 100%);
  color: #fff !important;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.03em;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  text-decoration: none !important;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.12) inset,
    0 -1px 0 rgba(0,0,0,0.2) inset,
    0 4px 20px rgba(196, 62, 76, 0.2),
    0 1px 4px rgba(0,0,0,0.3);
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}
.btn-primary:hover {
  box-shadow:
    0 1px 0 rgba(255,255,255,0.14) inset,
    0 -1px 0 rgba(0,0,0,0.2) inset,
    0 8px 36px rgba(196, 62, 76, 0.3),
    0 2px 8px rgba(0,0,0,0.3);
  transform: translateY(-2px);
}
.btn-primary:active {
  transform: translateY(0);
  box-shadow:
    0 -1px 0 rgba(255,255,255,0.05) inset,
    0 2px 4px rgba(0,0,0,0.4) inset,
    0 2px 8px rgba(196, 62, 76, 0.15);
}
.btn-primary--lg {
  padding: 18px 36px;
  font-size: 14px;
  border-radius: var(--radius);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 8px;
  color: var(--stone) !important;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  letter-spacing: 0.02em;
  text-decoration: none !important;
  cursor: pointer;
  transition: color 0.3s;
}
.btn-ghost:hover { color: var(--cream) !important; }
.btn-ghost__arrow {
  transition: transform 0.3s;
  display: inline-block;
}
.btn-ghost:hover .btn-ghost__arrow { transform: translateX(4px); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  background: var(--bg-elevated);
  color: var(--stone) !important;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 0.04em;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-warm);
  text-decoration: none !important;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 1px 0 rgba(255,248,235,0.03), 0 2px 8px rgba(0,0,0,0.2);
}
.btn-secondary:hover {
  color: var(--cream) !important;
  border-color: rgba(201, 169, 110, 0.15);
  background: var(--bg-card);
  transform: translateY(-1px);
}

/* ── Trust bar ── */
.trust-bar {
  padding: 56px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(10, 10, 11, 0.5);
}
.trust-bar__label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  font-weight: 400;
  font-style: italic;
  color: var(--muted);
  margin-bottom: 20px;
  text-align: center;
}
.trust-bar__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  align-items: center;
  justify-content: center;
}
.trust-bar__item {
  font-size: 12px;
  color: var(--stone);
  font-weight: 300;
  letter-spacing: 0.02em;
}
.trust-bar__item::after {
  content: '\00b7';
  margin: 0 14px;
  color: var(--faint);
}
.trust-bar__item:last-child::after { content: ''; margin: 0; }

/* ── Section ── */
.section {
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}
.section__header {
  text-align: center;
  margin-bottom: 64px;
}
.section__header .section__sub {
  margin-left: auto;
  margin-right: auto;
}
.section__label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}
.section__title {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 48px !important;
  letter-spacing: -0.015em;
  line-height: 1.1 !important;
  margin-bottom: 16px;
  color: var(--ivory);
  font-weight: 300 !important;
}
.section__sub {
  font-size: 15px;
  color: var(--stone);
  max-width: 480px;
  line-height: 1.8;
  margin-bottom: 0;
}

/* ── Features grid ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-warm);
  border: 1px solid var(--border-warm);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    0 1px 0 rgba(255,248,235,0.02) inset,
    0 20px 60px rgba(0,0,0,0.4),
    0 0 0 1px rgba(0,0,0,0.2);
}
.feature {
  padding: 40px 32px;
  background: var(--bg-card);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.feature:hover {
  background: var(--bg-card-hover);
}
.feature:hover .feature__icon {
  border-color: rgba(196, 62, 76, 0.2);
  box-shadow: inset 0 2px 6px rgba(0,0,0,0.4), 0 0 16px rgba(196, 62, 76, 0.06);
}
.feature__icon {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--bg-inset);
  border: 1px solid var(--border-warm);
  color: var(--gold);
  margin-bottom: 20px;
  box-shadow: inset 0 2px 6px rgba(0,0,0,0.4);
  transition: all 0.4s;
}
.feature__title {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 17px !important;
  font-weight: 500 !important;
  margin-bottom: 8px;
  color: var(--ivory);
}
.feature__desc {
  font-size: 12.5px;
  color: var(--stone);
  line-height: 1.75;
}

/* ── Split layout ── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  text-align: left;
}

/* ── Steps ── */
.steps {
  display: flex;
  flex-direction: column;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 40px;
  bottom: 40px;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold-border), var(--dahlia-border), transparent);
}
.step {
  display: flex;
  gap: 24px;
  padding: 32px 0;
  text-align: left;
}
.step__num {
  width: 40px; height: 40px;
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--bg-inset);
  border: 1px solid var(--border-warm);
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--gold);
  position: relative;
  z-index: 1;
  box-shadow: inset 0 2px 6px rgba(0,0,0,0.4), 0 1px 0 rgba(255,248,235,0.03);
  font-variant-numeric: lining-nums;
}
.step__title {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 19px !important;
  font-weight: 400 !important;
  margin-bottom: 6px;
  color: var(--ivory);
  text-align: left !important;
}
.step__desc {
  font-size: 13px;
  color: var(--stone);
  line-height: 1.75;
  text-align: left !important;
}

/* ── Speed block ── */
.speed-block {
  background: var(--bg-card);
  border: 1px solid var(--border-warm);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow:
    0 1px 0 rgba(255,248,235,0.02) inset,
    0 20px 60px rgba(0,0,0,0.4);
  position: relative;
}
.speed-block::before {
  content: '';
  position: absolute; top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 169, 110, 0.08), transparent);
}
.speed-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}
.speed-row:last-of-type { margin-bottom: 0; }
.speed-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  color: var(--stone);
  width: 64px;
  min-width: 64px;
  font-style: italic;
}
.speed-bar-bg {
  flex: 1;
  height: 4px;
  background: var(--bg-inset);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.3);
}
.speed-bar {
  height: 100%;
  border-radius: 2px;
}
.speed-bar--typing {
  width: 18%;
  background: linear-gradient(90deg, var(--muted), var(--stone));
}
.speed-bar--openear {
  width: 80%;
  background: linear-gradient(90deg, var(--dahlia-warm), var(--dahlia));
  box-shadow: 0 0 12px rgba(196, 62, 76, 0.2);
}
.speed-val {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--parchment);
  width: 60px;
  min-width: 60px;
  text-align: right;
  font-variant-numeric: lining-nums tabular-nums;
}
.speed-note {
  font-size: 11px;
  color: var(--muted);
  margin-top: 20px;
  font-style: italic;
}

/* ── Stats ── */
.stats-row {
  display: flex;
  gap: 48px;
  padding: 24px 0;
}
.stat__num {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 36px;
  color: var(--ivory);
  line-height: 1;
  font-weight: 200;
  letter-spacing: -0.02em;
  font-variant-numeric: lining-nums tabular-nums;
}
.stat__label {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 9px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 6px;
}

/* ── Comparison table ── */
.compare {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.compare th {
  text-align: left;
  padding: 14px 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  font-style: italic;
  color: var(--muted);
  font-weight: 400;
  border-bottom: 1px solid var(--border-warm);
}
.compare__highlight {
  color: var(--dahlia) !important;
  font-weight: 500 !important;
  font-style: normal !important;
}
.compare td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  color: var(--stone);
}
.compare tr td:first-child {
  color: var(--cream);
  font-weight: 300;
}
.compare .yes { color: var(--dahlia); font-weight: 400; }
.compare .dim { color: var(--muted); }
.compare tbody tr {
  transition: background 0.3s;
}
.compare tbody tr:hover { background: var(--bg-elevated); }

/* ── Pricing ── */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 740px;
  margin: 0 auto;
}
.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border-warm);
  border-radius: var(--radius);
  padding: 40px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow:
    0 1px 0 rgba(255,248,235,0.02) inset,
    0 20px 60px rgba(0,0,0,0.4);
}
.price-card:hover {
  border-color: rgba(201, 169, 110, 0.12);
  transform: translateY(-4px);
  box-shadow:
    0 1px 0 rgba(255,248,235,0.02) inset,
    0 32px 80px rgba(0,0,0,0.5);
}
.price-card::before {
  content: '';
  position: absolute; top: 0; left: 15%; right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 169, 110, 0.08), transparent);
}
.price-card--featured {
  border-color: var(--dahlia-border);
  background: linear-gradient(180deg, var(--bg-card) 0%, rgba(196, 62, 76, 0.02) 100%);
}
.price-card--featured::before {
  background: linear-gradient(90deg, transparent, rgba(196, 62, 76, 0.15), transparent);
}
.price-card--featured:hover {
  border-color: rgba(196, 62, 76, 0.2);
  box-shadow:
    0 1px 0 rgba(255,248,235,0.02) inset,
    0 32px 80px rgba(0,0,0,0.5),
    0 0 40px rgba(196, 62, 76, 0.06);
}
.price-card__badge {
  position: absolute;
  top: -10px; left: 28px;
  padding: 4px 14px;
  background: linear-gradient(180deg, var(--dahlia-soft), var(--dahlia-warm));
  color: #fff;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 100px;
  box-shadow: 0 2px 12px rgba(196, 62, 76, 0.3);
}
.price-card__plan {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  font-style: italic;
  color: var(--muted);
  margin-bottom: 12px;
}
.price-card__amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  color: var(--ivory);
  line-height: 1;
  margin-bottom: 4px;
  font-weight: 300;
}
.price-card__note {
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 32px;
}
.price-card ul {
  list-style: none;
  margin-bottom: 32px;
  padding: 0;
}
.price-card li {
  font-size: 12.5px;
  color: var(--stone);
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}
.price-card li:last-child { border-bottom: none; }
.price-card .chk {
  color: var(--dahlia);
  font-size: 10px;
  flex-shrink: 0;
  margin-top: 2px;
}
.price-card .btn-primary,
.price-card .btn-secondary {
  width: 100%;
  justify-content: center;
}
.price-card__sub {
  text-align: center;
  font-size: 10px;
  color: var(--muted);
  margin-top: 12px;
  font-style: italic;
}

/* ── FAQ ── */
.faq-list { max-width: 560px; }
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}
.faq-q {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 18px !important;
  font-weight: 400 !important;
  color: var(--ivory);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--dahlia-soft); }
.faq-q::after {
  content: '+';
  color: var(--muted);
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 200;
  transition: transform 0.3s, color 0.3s;
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item--open .faq-q::after { transform: rotate(45deg); color: var(--dahlia); }
.faq-a {
  font-size: 13px;
  color: var(--stone);
  line-height: 1.85;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item--open .faq-a { max-height: 300px; padding-top: 14px; }

/* ── CTA ── */
.cta {
  padding: 180px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(196, 62, 76, 0.06) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(40px);
}
.cta__inner {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.cta__title {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 52px !important;
  line-height: 1.1 !important;
  letter-spacing: -0.015em;
  margin-bottom: 20px;
  color: var(--ivory);
  font-weight: 300 !important;
}
.cta__sub {
  font-size: 15px;
  color: var(--stone);
  margin-bottom: 40px;
  line-height: 1.8;
}

/* ── Footer ── */
.footer {
  padding: 36px 0;
  border-top: 1px solid var(--border);
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  color: var(--muted);
  font-style: italic;
}
.footer__links {
  display: flex;
  gap: 24px;
}
.footer__link {
  font-size: 10px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.footer__link:hover { color: var(--cream); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .container { padding-left: 24px; padding-right: 24px; }
  .nav { padding: 0 24px; }
  .nav__link:not(.nav__cta) { display: none; }
  .hero { padding: 120px 0 80px; }
  .hero__title { font-size: 52px !important; }
  .split { grid-template-columns: 1fr; gap: 48px; }
  .features-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .stats-row { flex-wrap: wrap; gap: 28px; }
  .hero__actions { flex-direction: column; }
  .section { padding: 80px 0; }
  .section__title { font-size: 36px !important; }
  .cta { padding: 100px 0; }
  .cta__title { font-size: 38px !important; }
}

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.anim { opacity: 0; animation: fadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.anim-d1 { animation-delay: 0.15s; }
.anim-d2 { animation-delay: 0.3s; }
.anim-d3 { animation-delay: 0.45s; }
