/* ============================================================
   Noxify — styles.css
   Premium dark theme · trustworthy / legit / professional
   ============================================================ */

:root {
  /* Surfaces */
  --bg: #05070E;
  --bg-2: #080B16;
  --surface: rgba(255, 255, 255, 0.025);
  --surface-2: rgba(255, 255, 255, 0.05);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);

  /* Text */
  --text: #EDF1F7;
  --text-muted: #9AA7BD;
  --text-dim: #5E6B82;

  /* Brand */
  --brand: #2F6BFF;
  --brand-2: #4F8BFF;
  --brand-3: #22D3EE;
  --brand-glow: rgba(47, 107, 255, 0.45);
  --grad: linear-gradient(120deg, #4F8BFF 0%, #22D3EE 100%);
  --success: #34D399;

  /* Layout */
  --maxw: 1180px;
  --radius: 16px;
  --radius-lg: 22px;
  --shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.6);

  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-head: "Sora", var(--font-body);
}

/* ----------------------- Reset ----------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 88px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--brand); color: #fff; padding: 10px 16px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 2px solid var(--brand-2); outline-offset: 3px; border-radius: 6px; }

/* ----------------------- Layout ----------------------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 800px; }

.section { padding: clamp(64px, 9vw, 120px) 0; position: relative; }
.section--alt { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 50%, var(--bg) 100%); }

.section__head { text-align: center; max-width: 680px; margin: 0 auto clamp(40px, 6vw, 64px); }
.kicker {
  display: inline-block; font-family: var(--font-head); font-weight: 700;
  font-size: 13px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--brand-2); margin-bottom: 14px;
}
.section__title {
  font-family: var(--font-head); font-weight: 800; line-height: 1.1;
  font-size: clamp(28px, 4.4vw, 46px); letter-spacing: -0.02em;
}
.section__lead { color: var(--text-muted); font-size: clamp(16px, 1.6vw, 18px); margin-top: 16px; }

.grad {
  background: var(--grad); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

.glass {
  background: var(--surface);
  border: 1px solid var(--border);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-radius: var(--radius-lg);
}

/* ----------------------- Buttons ----------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 600; font-size: 15px; border: 1px solid transparent;
  padding: 12px 22px; border-radius: 12px; transition: all .2s ease; white-space: nowrap;
}
.btn--sm { padding: 9px 18px; font-size: 14px; }
.btn--lg { padding: 15px 30px; font-size: 16px; }
.btn--block { width: 100%; }

.btn--primary {
  background: var(--brand); color: #fff;
  box-shadow: 0 8px 24px -6px var(--brand-glow), inset 0 1px 0 rgba(255,255,255,.2);
}
.btn--primary:hover { background: var(--brand-2); transform: translateY(-2px); box-shadow: 0 14px 32px -8px var(--brand-glow); }
.btn--ghost { background: var(--surface-2); color: var(--text); border-color: var(--border-strong); }
.btn--ghost:hover { background: rgba(255,255,255,.09); transform: translateY(-2px); }

/* ----------------------- Nav ----------------------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  border-bottom: 1px solid transparent; transition: background .3s, border-color .3s, backdrop-filter .3s;
}
.nav.scrolled {
  background: rgba(5, 7, 14, 0.78);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 24px; }

.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand__logo { height: 32px; width: auto; display: block; }
.brand__logo--footer { height: 30px; }

.nav__links { display: flex; gap: 30px; }
.nav__links a { color: var(--text-muted); font-size: 15px; font-weight: 500; transition: color .2s; }
.nav__links a:hover { color: var(--text); }
.nav__actions { display: flex; align-items: center; }

.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 8px; }
.nav__toggle span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: .25s; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: absolute; top: calc(100% + 10px); left: 16px; right: 16px; z-index: 110;
  display: flex; flex-direction: column; padding: 10px;
  background: rgba(10, 14, 26, 0.98);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--border-strong); border-radius: 16px;
  box-shadow: var(--shadow); animation: menuIn .18s ease;
}
.mobile-menu[hidden] { display: none; }
.mobile-menu a { padding: 13px 14px; border-radius: 10px; color: var(--text-muted); font-weight: 500; }
.mobile-menu a:not(:last-child) { border-bottom: 1px solid var(--border); }
.mobile-menu a:not(.btn):hover { background: var(--surface-2); color: var(--text); }
.mobile-menu .btn { margin-top: 10px; justify-content: center; }
@keyframes menuIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }

/* ----------------------- Hero ----------------------- */
.hero { position: relative; padding: clamp(56px, 8vw, 96px) 0 clamp(64px, 9vw, 110px); overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: -1; }
.hero__bg::before {
  content: ""; position: absolute; top: -20%; left: 50%; transform: translateX(-50%);
  width: 1100px; height: 700px;
  background: radial-gradient(closest-side, rgba(47,107,255,.28), transparent 70%);
  filter: blur(10px);
}
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 75%);
  opacity: .5;
}

.hero__inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px, 5vw, 64px); align-items: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--surface-2); border: 1px solid var(--border);
  padding: 7px 14px; border-radius: 100px; font-size: 13px; font-weight: 600;
  color: var(--text-muted); margin-bottom: 24px;
}
.eyebrow__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--brand-3); box-shadow: 0 0 0 4px rgba(34,211,238,.18); }

.hero__title {
  font-family: var(--font-head); font-weight: 800; letter-spacing: -0.03em;
  font-size: clamp(36px, 6.2vw, 66px); line-height: 1.04;
}
.hero__sub { color: var(--text-muted); font-size: clamp(16px, 1.7vw, 19px); margin-top: 22px; max-width: 540px; }
.hero__sub strong { color: var(--text); }

.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 18px 24px; margin-top: 28px; color: var(--text-dim); font-size: 14px; font-weight: 500; }

/* Hero visual */
.hero__visual { position: relative; }
.call-card { padding: 22px; box-shadow: var(--shadow); position: relative; z-index: 2; }
.call-card__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.call-card__id { display: flex; align-items: center; gap: 12px; }
.call-card__avatar {
  width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center;
  background: var(--grad); color: #fff;
}
.call-card__id strong { display: block; font-size: 15px; }
.call-card__id span { font-size: 12.5px; color: var(--text-muted); }

.badge { display: inline-flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 600; padding: 5px 11px; border-radius: 100px; }
.badge--live { background: rgba(52,211,153,.12); color: var(--success); border: 1px solid rgba(52,211,153,.3); }
.pulse { width: 7px; height: 7px; border-radius: 50%; background: var(--success); animation: pulse 1.6s infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(52,211,153,.5); } 50% { box-shadow: 0 0 0 5px rgba(52,211,153,0); } }

.waveform { display: flex; align-items: center; justify-content: center; gap: 4px; height: 48px; margin: 20px 0; }
.waveform span {
  width: 4px; border-radius: 4px; background: var(--brand-2);
  animation: wave 1.2s ease-in-out infinite; height: 18px; opacity: .85;
}
.waveform span:nth-child(odd) { background: var(--brand-3); }
.waveform span:nth-child(1){animation-delay:0s} .waveform span:nth-child(2){animation-delay:.1s}
.waveform span:nth-child(3){animation-delay:.2s} .waveform span:nth-child(4){animation-delay:.3s}
.waveform span:nth-child(5){animation-delay:.4s} .waveform span:nth-child(6){animation-delay:.5s}
.waveform span:nth-child(7){animation-delay:.6s} .waveform span:nth-child(8){animation-delay:.7s}
.waveform span:nth-child(9){animation-delay:.8s} .waveform span:nth-child(10){animation-delay:.9s}
.waveform span:nth-child(11){animation-delay:1s} .waveform span:nth-child(12){animation-delay:.6s}
.waveform span:nth-child(13){animation-delay:.35s} .waveform span:nth-child(14){animation-delay:.15s}
.waveform span:nth-child(15){animation-delay:.05s}
@keyframes wave { 0%,100% { height: 12px; } 50% { height: 40px; } }

.transcript { display: flex; flex-direction: column; gap: 10px; }
.bubble { font-size: 13.5px; padding: 11px 14px; border-radius: 14px; max-width: 86%; line-height: 1.45; }
.bubble--agent { background: rgba(47,107,255,.16); border: 1px solid rgba(47,107,255,.3); align-self: flex-start; border-bottom-left-radius: 4px; }
.bubble--caller { background: var(--surface-2); border: 1px solid var(--border); align-self: flex-end; border-bottom-right-radius: 4px; color: var(--text-muted); }

.call-card__foot { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--border); }
.booked { display: inline-flex; align-items: center; gap: 8px; color: var(--success); font-weight: 600; font-size: 14px; }

.float-chip {
  position: absolute; z-index: 3; padding: 10px 15px; font-size: 13px; font-weight: 600;
  border-radius: 12px; box-shadow: var(--shadow); animation: float 5s ease-in-out infinite;
}
.float-chip--1 { top: 8%; right: -6%; }
.float-chip--2 { bottom: 10%; left: -8%; animation-delay: 1.5s; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ----------------------- Stats ----------------------- */
.stats { padding: clamp(40px, 5vw, 56px) 0; border-block: 1px solid var(--border); background: var(--bg-2); }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; }
.stat__num { display: block; font-family: var(--font-head); font-weight: 800; font-size: clamp(34px, 4.5vw, 48px); background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat__label { color: var(--text-muted); font-size: 14px; display: block; margin-top: 6px; }
.stats__note { text-align: center; color: var(--text-dim); font-size: 13px; margin-top: 28px; }

/* ----------------------- Steps ----------------------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step {
  position: relative; padding: 30px; border-radius: var(--radius-lg);
  background: var(--surface); border: 1px solid var(--border); transition: transform .25s, border-color .25s;
}
.step:hover { transform: translateY(-5px); border-color: var(--border-strong); }
.step__num { position: absolute; top: 22px; right: 26px; font-family: var(--font-head); font-weight: 800; font-size: 30px; color: rgba(255,255,255,.06); }
.step__icon { font-size: 32px; margin-bottom: 16px; }
.step h3 { font-family: var(--font-head); font-size: 20px; margin-bottom: 10px; }
.step p { color: var(--text-muted); font-size: 15px; }

/* ----------------------- Features ----------------------- */
.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.feature { padding: 26px; transition: transform .25s, border-color .25s; }
.feature:hover { transform: translateY(-5px); border-color: rgba(47,107,255,.4); }
.feature__icon { font-size: 28px; margin-bottom: 14px; }
.feature h3 { font-family: var(--font-head); font-size: 17px; margin-bottom: 8px; }
.feature p { color: var(--text-muted); font-size: 14px; }

/* ----------------------- Use cases ----------------------- */
.usecases { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.usecase {
  display: flex; align-items: center; gap: 12px; padding: 18px 20px;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  font-weight: 600; font-size: 15px; transition: transform .2s, border-color .2s, background .2s;
}
.usecase:hover { transform: translateY(-3px); border-color: var(--border-strong); background: var(--surface-2); }
.usecase span { font-size: 24px; }

/* ----------------------- Comparison ----------------------- */
.compare { padding: 10px; overflow-x: auto; }
.compare__table { width: 100%; border-collapse: collapse; min-width: 580px; }
.compare__table th, .compare__table td { padding: 16px 18px; text-align: center; font-size: 15px; }
.compare__table thead th { font-family: var(--font-head); font-size: 15px; color: var(--text-muted); border-bottom: 1px solid var(--border); }
.compare__table tbody th { text-align: left; color: var(--text); font-weight: 600; }
.compare__table tbody tr:not(:last-child) td, .compare__table tbody tr:not(:last-child) th { border-bottom: 1px solid var(--border); }
.compare__brand { color: var(--brand-2) !important; position: relative; }
.compare__table td.yes { color: var(--success); font-weight: 600; }
.compare__table td.no { color: #F87171; }
.compare__table tbody td:nth-child(2) { background: rgba(47,107,255,.06); }

/* ----------------------- ROI ----------------------- */
.roi { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 0; overflow: hidden; }
.roi__copy { padding: clamp(28px, 4vw, 48px); }
.roi__field { margin-top: 24px; }
.roi__field label { display: flex; justify-content: space-between; font-weight: 600; font-size: 15px; margin-bottom: 10px; }
.roi__field output { color: var(--brand-2); font-family: var(--font-head); font-weight: 700; }
input[type="range"] { width: 100%; -webkit-appearance: none; appearance: none; height: 6px; border-radius: 6px; background: var(--surface-2); outline: none; }
input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; width: 22px; height: 22px; border-radius: 50%; background: var(--brand); border: 3px solid #fff; cursor: pointer; box-shadow: 0 4px 12px var(--brand-glow); }
input[type="range"]::-moz-range-thumb { width: 18px; height: 18px; border-radius: 50%; background: var(--brand); border: 3px solid #fff; cursor: pointer; }

.roi__result {
  padding: clamp(28px, 4vw, 48px); display: flex; flex-direction: column; justify-content: center;
  text-align: center; background: linear-gradient(135deg, rgba(47,107,255,.14), rgba(34,211,238,.08));
  border-left: 1px solid var(--border);
}
.roi__result-label { color: var(--text-muted); font-size: 14px; }
.roi__result-num { font-family: var(--font-head); font-weight: 800; font-size: clamp(40px, 6vw, 60px); background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; margin: 8px 0; line-height: 1; }
.roi__result-note { color: var(--text-dim); font-size: 12.5px; margin-bottom: 22px; }

/* ----------------------- Pricing ----------------------- */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: start; }
.plan { padding: 32px 28px; display: flex; flex-direction: column; transition: transform .25s, border-color .25s; }
.plan:hover { transform: translateY(-5px); }
.plan--featured { border-color: rgba(47,107,255,.5); box-shadow: 0 24px 60px -24px var(--brand-glow); position: relative; }
.plan--featured::before { content: ""; position: absolute; inset: 0; border-radius: var(--radius-lg); padding: 1px; background: var(--grad); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; }
.plan__badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--grad); color: #fff; font-size: 12px; font-weight: 700; padding: 6px 16px; border-radius: 100px; white-space: nowrap; }
.plan__name { font-family: var(--font-head); font-size: 22px; }
.plan__desc { color: var(--text-muted); font-size: 14px; margin: 8px 0 20px; min-height: 40px; }
.plan__price { display: flex; align-items: baseline; gap: 4px; }
.plan__amount { font-family: var(--font-head); font-weight: 800; font-size: 42px; letter-spacing: -0.02em; }
.plan__per { color: var(--text-muted); font-size: 16px; }
.plan__setup { color: var(--text-dim); font-size: 13px; margin: 6px 0 22px; }
.plan__features { display: flex; flex-direction: column; gap: 11px; margin-bottom: 26px; flex: 1; }
.plan__features li { position: relative; padding-left: 26px; font-size: 14.5px; color: var(--text-muted); }
.plan__features li::before { content: "✓"; position: absolute; left: 0; color: var(--brand-3); font-weight: 700; }
.plan__features li:first-child { color: var(--text); font-weight: 600; }
.pricing__note { text-align: center; color: var(--text-dim); font-size: 14px; margin-top: 26px; }

/* ----------------------- FAQ ----------------------- */
.faq { display: flex; flex-direction: column; gap: 12px; }
.faq__item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 4px 22px; transition: border-color .2s; }
.faq__item[open] { border-color: var(--border-strong); }
.faq__item summary { list-style: none; cursor: pointer; padding: 18px 0; font-weight: 600; font-size: 16.5px; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; font-size: 24px; font-weight: 400; color: var(--brand-2); transition: transform .25s; line-height: 1; }
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p { color: var(--text-muted); font-size: 15px; padding: 0 0 20px; max-width: 90%; }

/* ----------------------- CTA / Contact ----------------------- */
.cta__inner { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(32px, 5vw, 60px); align-items: start; }
.cta__copy { padding-top: 8px; }
.cta__copy .section__title, .cta__copy .section__lead { text-align: left; }
.cta__copy .section__lead { margin-left: 0; }
.cta__points { display: flex; flex-direction: column; gap: 10px; margin: 24px 0; color: var(--text-muted); font-weight: 500; }
.cta__contact { margin-top: 28px; color: var(--text-muted); font-size: 15px; display: flex; flex-direction: column; gap: 6px; }
.cta__contact a { color: var(--brand-2); }
.ig-link { display: inline-flex; align-items: center; gap: 8px; }
.ig-link svg { flex: none; transition: transform .2s; }
.ig-link:hover svg { transform: scale(1.12); }
.footer__nav .ig-link { display: inline-flex; color: var(--text-muted); transition: color .2s; }
.footer__nav .ig-link:hover { color: var(--brand-2); }

.contact-form { padding: clamp(26px, 4vw, 38px); display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; grid-column: 1 / -1; }
.field--half { grid-column: span 1; }
.field label { font-size: 13.5px; font-weight: 600; color: var(--text-muted); }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: 15px; color: var(--text);
  background: rgba(0,0,0,.25); border: 1px solid var(--border); border-radius: 10px; padding: 12px 14px;
  transition: border-color .2s, box-shadow .2s; width: 100%;
}
.field textarea { resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: var(--text-dim); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(47,107,255,.18); outline: none; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%239AA7BD' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px; }
.contact-form .btn { grid-column: 1 / -1; margin-top: 6px; }
.hp { position: absolute; left: -9999px; }
.form-status { grid-column: 1 / -1; font-size: 14px; font-weight: 600; text-align: center; min-height: 1px; }
.form-status.success { color: var(--success); }
.form-status.error { color: #F87171; }
.form-fineprint { grid-column: 1 / -1; text-align: center; color: var(--text-dim); font-size: 12.5px; }

/* ----------------------- Footer ----------------------- */
.footer { border-top: 1px solid var(--border); padding: clamp(48px, 6vw, 72px) 0 0; background: var(--bg-2); }
.footer__inner { display: grid; grid-template-columns: 1.3fr 2fr; gap: 48px; padding-bottom: 48px; }
.footer__brand p { color: var(--text-muted); font-size: 14px; margin-top: 16px; max-width: 320px; }
.footer__nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.footer__nav h4 { font-family: var(--font-head); font-size: 14px; margin-bottom: 14px; color: var(--text); }
.footer__nav a, .footer__nav span { display: block; color: var(--text-muted); font-size: 14px; margin-bottom: 10px; transition: color .2s; }
.footer__nav a:hover { color: var(--brand-2); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 22px 24px; border-top: 1px solid var(--border); color: var(--text-dim); font-size: 13px; }

/* ----------------------- Reveal animation ----------------------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ----------------------- Responsive ----------------------- */
@media (max-width: 980px) {
  .nav__links, .nav__actions { display: none; }
  .nav__toggle { display: flex; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { margin-top: 20px; max-width: 440px; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 32px 20px; }
  .steps { grid-template-columns: 1fr; }
  .features { grid-template-columns: repeat(2, 1fr); }
  .usecases { grid-template-columns: repeat(2, 1fr); }
  .roi { grid-template-columns: 1fr; }
  .roi__result { border-left: 0; border-top: 1px solid var(--border); }
  .pricing { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .plan--featured { order: -1; }
  .cta__inner { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 560px) {
  .container { padding: 0 18px; }
  .features { grid-template-columns: 1fr; }
  .usecases { grid-template-columns: 1fr; }
  .contact-form { grid-template-columns: 1fr; }
  .field--half { grid-column: 1 / -1; }
  .footer__nav { grid-template-columns: 1fr 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .float-chip { display: none; }
  .hero__visual { margin-inline: auto; }
}
