/* ============================================================
   THE REVIEW KIT - Design System
   Warm paper + ink, one accent. Fraunces (display) + Inter (UI).
   ============================================================ */

/* ---------- Design Tokens ---------- */
:root {
  /* Color */
  --paper:        #FAF8F4;
  --paper-2:      #F4F1EA;
  --ink:          #1A1A18;
  --slate:        #6B6760;
  --mist:         #EDEAE3;
  --mist-2:       #E2DDD2;
  --accent:       #E85D1F;
  --accent-deep:  #C44C16;
  --accent-soft:  #FBEADF;
  --clay:         #C2613B;
  --gold:         #E0A526;
  --white:        #FFFFFF;

  /* Typography */
  --font-display: "Young Serif", Georgia, "Times New Roman", serif;
  --font-body:    "Figtree", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Spacing scale (8px base) */
  --s-1: 8px;
  --s-2: 16px;
  --s-3: 24px;
  --s-4: 40px;
  --s-5: 64px;
  --s-6: 96px;
  --s-7: 160px;

  /* Radius */
  --r-sm: 12px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-full: 999px;

  /* Shadow (warm, soft) */
  --shadow-sm: 0 2px 10px rgba(26,26,24,0.05);
  --shadow-md: 0 8px 40px rgba(26,26,24,0.07);
  --shadow-lg: 0 24px 70px rgba(26,26,24,0.10);

  /* Layout */
  --maxw: 1200px;
  --gutter: 24px;

  /* Motion */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; padding: 0; }

/* ---------- Type primitives ---------- */
h1, h2, h3 { font-family: var(--font-display); font-weight: 400; line-height: 1.08; letter-spacing: -0.02em; }
.eyebrow {
  font-size: 13px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--slate); margin-bottom: var(--s-2);
}
.lead { font-size: 21px; line-height: 1.55; color: var(--slate); }
.muted { color: var(--slate); }

/* ---------- Layout helpers ---------- */
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--s-7); }
.section--tight { padding-block: var(--s-6); }
.divider { height: 1px; background: var(--mist); border: 0; }
.center { text-align: center; }
.measure { max-width: 62ch; }
.measure-narrow { max-width: 46ch; }
.center .measure, .center .measure-narrow { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 28px; border-radius: var(--r-full); font-size: 16px; font-weight: 500;
  transition: transform .15s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
  white-space: nowrap;
}
.btn--primary { background: var(--accent); color: var(--white); box-shadow: 0 4px 20px rgba(232,93,31,0.25); }
.btn--primary:hover { background: var(--accent-deep); box-shadow: 0 6px 28px rgba(232,93,31,0.35); transform: translateY(-1px); }
.btn--primary:active { transform: translateY(1px); box-shadow: var(--shadow-sm); }
.btn--ghost { background: transparent; color: var(--ink); border: 1px solid var(--mist-2); border-radius: var(--r-full); }
.btn--ghost:hover { background: var(--paper-2); border-color: var(--slate); }
.btn--block { width: 100%; }
.btn--lg { padding: 18px 38px; font-size: 17px; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.header {
  position: sticky; top: 0; z-index: 100;
  transition: background .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  border-bottom: 1px solid transparent;
}
.header.is-scrolled {
  background: rgba(250,248,244,0.82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom-color: var(--mist);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 104px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-display); font-size: 21px; letter-spacing: -0.02em; }
.brand svg { width: 26px; height: 26px; }
.brand__logo { height: 76px; width: auto; display: block; }
.footer__brand .brand__logo { height: 52px; }
.nav__links { display: flex; align-items: center; gap: var(--s-4); }
.nav__links a { font-size: 15px; color: var(--slate); transition: color .15s var(--ease); }
.nav__links a:hover { color: var(--ink); }
.nav__cta { display: flex; align-items: center; gap: var(--s-2); }
.nav__order { display: none; }
.nav-toggle { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; color: var(--ink); background: #ff0000; outline: 3px solid #00f; }
.nav-toggle svg { width: 24px; height: 24px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-menu { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

@media (max-width: 860px) {
  .nav { height: 76px; }
  .brand__logo { height: 50px; }
  .nav__links { display: none; }
  .nav__cta .btn--primary { display: none; }   /* hide top CTA; it lives in the menu now */
  .nav-toggle { display: inline-flex; }
  .nav__links.is-open {
    display: flex; flex-direction: column; align-items: stretch; gap: 0;
    position: fixed; inset: 76px 0 auto 0; background: var(--paper);
    padding: var(--s-1) var(--gutter) var(--s-4); border-bottom: 1px solid var(--mist);
    box-shadow: var(--shadow-md); max-height: calc(100vh - 76px); overflow-y: auto;
  }
  .nav__links.is-open a:not(.nav__order) {
    font-family: var(--font-display); font-size: 24px; color: var(--ink);
    padding: 16px 2px; border-bottom: 1px solid var(--mist);
  }
  .nav__links.is-open .nav__order { display: flex; margin-top: var(--s-3); font-size: 16px; }
}
@media (max-width: 380px) {
  .brand__logo { height: 46px; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero { padding-block: clamp(48px, 8vw, 110px) clamp(56px, 9vw, 120px); }
.hero__grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.hero h1 {
  font-size: clamp(40px, 6.4vw, 74px); letter-spacing: -0.03em; margin-bottom: var(--s-3);
}
.hero h1 em { font-style: italic; color: var(--accent); }
.hero__sub { font-size: clamp(18px, 2.2vw, 21px); color: var(--slate); max-width: 46ch; margin-bottom: var(--s-4); }
.hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: var(--s-2); margin-bottom: var(--s-4); }
.hero__ship { font-size: 14px; color: var(--slate); letter-spacing: 0.01em; }
.hero__trust { display: flex; align-items: center; gap: 14px; font-size: 15px; color: var(--slate); }
.hero__trust strong { color: var(--ink); }
.hero__avatars { display: flex; }
.hero__av {
  width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center;
  font-size: 12px; font-weight: 600; letter-spacing: 0.02em;
  border: 2px solid var(--paper); margin-right: -10px; position: relative;
}
.hero__av:nth-child(1) { background: #E8D5C4; color: #8B6544; z-index: 4; }
.hero__av:nth-child(2) { background: #D4E2D4; color: #4A6B4A; z-index: 3; }
.hero__av:nth-child(3) { background: #D5D8E8; color: #4A5080; z-index: 2; }
.hero__av:nth-child(4) { background: #E8D4D4; color: #804A4A; z-index: 1; }
.hero__av:last-child { margin-right: 0; }

.hero__visual { position: relative; }

/* ============================================================
   PROOF BAR
   ============================================================ */
.proof { background: var(--paper-2); border-block: 1px solid var(--mist); }
.proof__inner { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: var(--s-2) var(--s-5); padding-block: var(--s-3); }
.proof__label { font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--slate); }
.proof__items { display: flex; flex-wrap: wrap; gap: var(--s-2) var(--s-4); }
.proof__items span { font-size: 15px; color: var(--ink); font-weight: 500; }
.proof__items span::before { content: "\2022"; color: var(--mist-2); margin-right: var(--s-2); }
.proof__items span:first-child::before { display: none; }

/* ============================================================
   STATS / WHY REVIEWS MATTER
   ============================================================ */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-4); margin-top: var(--s-6); }
.stat { text-align: center; }
.stat__num { font-family: var(--font-display); font-size: clamp(48px, 7vw, 76px); line-height: 1; letter-spacing: -0.03em; color: var(--ink); font-variant-numeric: tabular-nums; }
.stat__num .unit { color: var(--accent); }
.stat__label { margin-top: var(--s-2); color: var(--slate); font-size: 16px; max-width: 26ch; margin-inline: auto; }
.stat__src { display: block; margin-top: 6px; font-size: 12px; color: #A9A399; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-4); margin-top: var(--s-6); }
.step__n { font-family: var(--font-display); font-size: 15px; color: var(--accent); letter-spacing: 0.1em; }
.step__icon { width: 48px; height: 48px; margin-block: var(--s-3) var(--s-3); color: var(--ink); }
.step__icon svg { width: 100%; height: 100%; stroke: currentColor; stroke-width: 1.5; fill: none; }
.step h3 { font-size: 24px; margin-bottom: 10px; }
.step p { color: var(--slate); max-width: 32ch; }

/* Tap demo */
.tapdemo {
  margin-top: var(--s-6); display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px,5vw,72px);
  align-items: center; background: var(--paper-2); border: 1px solid var(--mist); border-radius: var(--r-lg);
  padding: clamp(28px, 5vw, 64px);
}
.tapdemo h3 { font-size: clamp(26px, 3.4vw, 36px); margin-bottom: var(--s-2); }
.tapdemo p { color: var(--slate); max-width: 40ch; }
.tapdemo__stage { position: relative; display: flex; align-items: center; justify-content: center; min-height: 320px; }

/* ============================================================
   PRODUCT SHOWCASE
   ============================================================ */
.showcase__item {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: center;
  padding-block: var(--s-6);
}
.showcase__item + .showcase__item { border-top: 1px solid var(--mist); }
.showcase__item:nth-child(even) .showcase__media { order: 2; }
.showcase__copy h3 { font-size: clamp(28px, 4vw, 44px); margin-bottom: var(--s-3); }
.showcase__copy p { color: var(--slate); max-width: 44ch; margin-bottom: var(--s-3); }
.feat-list { display: flex; flex-direction: column; gap: 12px; margin-top: var(--s-3); }
.feat-list li { display: flex; align-items: flex-start; gap: 12px; color: var(--ink); }
.feat-list svg { width: 20px; height: 20px; flex: none; margin-top: 3px; color: var(--accent); }

/* Spec strip */
.specs { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-3); margin-top: var(--s-5); border-top: 1px solid var(--mist); padding-top: var(--s-5); }
.spec__k { font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--slate); margin-bottom: 6px; }
.spec__v { font-size: 18px; font-weight: 500; }

/* ============================================================
   MEDIA / PRODUCT MOCKUP FRAMES
   ============================================================ */
.media {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  background: linear-gradient(160deg, #F2EEE6 0%, #E8E2D6 100%);
  box-shadow: var(--shadow-md); aspect-ratio: 4 / 3;
}
.media--tall { aspect-ratio: 4 / 5; }
.media--hero { aspect-ratio: 3 / 2; background: var(--paper-2); }
.media--hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.media svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.media__tag {
  position: absolute; left: 16px; bottom: 16px; z-index: 2;
  background: rgba(250,248,244,0.9); backdrop-filter: blur(6px);
  font-size: 12px; letter-spacing: 0.04em; color: var(--slate);
  padding: 6px 12px; border-radius: var(--r-full);
}

/* ============================================================
   INCLUDED
   ============================================================ */
.included { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(32px,5vw,72px); align-items: center; }
.incl-list { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-3); }
.incl-item { display: flex; gap: 14px; align-items: flex-start; }
.incl-item svg { width: 26px; height: 26px; flex: none; color: var(--accent); stroke-width: 1.5; }
.incl-item h4 { font-size: 17px; font-weight: 600; margin-bottom: 2px; }
.incl-item p { font-size: 15px; color: var(--slate); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
#reviews { position: relative; overflow: hidden; }
#reviews .wrap { position: relative; z-index: 1; }
.koi-deco {
  position: absolute; z-index: 0; pointer-events: none; user-select: none;
  top: 4%; right: -2%; width: clamp(180px, 24vw, 340px); height: auto;
  opacity: 0.16; transform: rotate(-4deg);
  animation: koiFloat 11s ease-in-out infinite alternate;
}
@keyframes koiFloat {
  from { transform: translateY(-10px) rotate(-5deg); }
  to   { transform: translateY(10px)  rotate(-1deg); }
}
@media (prefers-reduced-motion: reduce) { .koi-deco { animation: none; } }
.quotes { columns: 3; column-gap: var(--s-3); margin-top: var(--s-5); }
.quote {
  break-inside: avoid; position: relative;
  background: linear-gradient(145deg, #FFFCF7 0%, #F9F5ED 100%);
  border: 1px solid var(--mist); border-bottom: 3px solid var(--mist-2);
  border-radius: var(--r-lg); padding: var(--s-4) var(--s-4) var(--s-3);
  margin-bottom: var(--s-3); box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.quote:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.quote::before {
  content: "\201C"; position: absolute; top: 16px; right: 22px;
  font-family: Georgia, serif; font-size: 64px; line-height: 1; color: var(--mist-2);
  pointer-events: none;
}
.quote .stars { color: var(--gold); letter-spacing: 3px; font-size: 15px; margin-bottom: 14px; }
.quote p { font-size: 17px; line-height: 1.55; position: relative; z-index: 1; }

/* Featured quote */
.quote--feat {
  background: linear-gradient(145deg, var(--ink) 0%, #2A2A26 100%);
  border-color: transparent; border-bottom-color: var(--accent);
}
.quote--feat::before { color: rgba(255,255,255,0.08); }
.quote--feat .stars { color: var(--gold); }
.quote--feat p { font-family: var(--font-display); font-size: 23px; line-height: 1.4; letter-spacing: -0.01em; color: var(--paper); }
.quote--feat .quote__by b { color: var(--paper); }
.quote--feat .quote__by span { color: #9A9388; }
.quote--feat .quote__av { background: var(--accent); color: var(--white); }

.quote__by { display: flex; align-items: center; gap: 12px; margin-top: var(--s-3); padding-top: var(--s-2); border-top: 1px solid var(--mist); }
.quote--feat .quote__by { border-top-color: rgba(255,255,255,0.1); }
.quote__av { width: 42px; height: 42px; border-radius: 50%; background: var(--accent-soft); color: var(--accent-deep); display: grid; place-items: center; font-weight: 600; font-size: 14px; letter-spacing: 0.02em; flex: none; }
.quote__by b { display: block; font-size: 15px; font-weight: 600; }
.quote__by span { font-size: 13px; color: var(--slate); }

/* ============================================================
   OFFER
   ============================================================ */
.offer { background: var(--paper-2); border: 1px solid var(--mist); border-radius: var(--r-lg); padding: clamp(32px,5vw,72px); display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px,5vw,64px); align-items: center; }
.offer__price { display: flex; align-items: baseline; gap: 12px; margin-block: var(--s-3); }
.offer__price b { font-family: var(--font-display); font-size: 56px; letter-spacing: -0.03em; }
.offer__price s { color: var(--slate); font-size: 22px; }
.offer__price em { font-style: normal; color: var(--accent); font-size: 14px; background: var(--accent-soft); padding: 4px 10px; border-radius: var(--r-full); }
.offer ul.feat-list { margin-bottom: var(--s-4); }
.badges { display: flex; flex-wrap: wrap; gap: var(--s-2) var(--s-3); margin-top: var(--s-3); }
.badge { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--slate); }
.badge svg { width: 18px; height: 18px; color: var(--accent); }

/* ============================================================
   FAQ
   ============================================================ */
.faq { max-width: 760px; margin-inline: auto; margin-top: var(--s-5); }
.faq__item { border-bottom: 1px solid var(--mist); }
.faq__q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: var(--s-3); padding: var(--s-3) 0; text-align: left; font-size: 19px; font-weight: 500; }
.faq__q svg { width: 22px; height: 22px; flex: none; color: var(--slate); transition: transform .25s var(--ease); }
.faq__item[open] .faq__q svg { transform: rotate(45deg); }
.faq__a { padding-bottom: var(--s-3); color: var(--slate); max-width: 64ch; }
details > summary { list-style: none; cursor: pointer; }
details > summary::-webkit-details-marker { display: none; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.finalcta { position: relative; overflow: hidden; text-align: center; background: var(--ink); color: var(--paper); border-radius: var(--r-lg); padding: clamp(48px,7vw,96px) var(--gutter); }
.finalcta h2, .finalcta p, .finalcta .btn { position: relative; z-index: 1; }
.finalcta h2 { font-size: clamp(32px, 5vw, 56px); margin-bottom: var(--s-3); }

/* Ambient koi.png drifting in the dark final CTA (lowkey, like koi in dark water) */
.koi-cta {
  position: absolute; z-index: 0; pointer-events: none; user-select: none;
  right: -3%; bottom: -6%; width: clamp(220px, 30vw, 380px); height: auto;
  opacity: 0.22; transform: rotate(-6deg);
  animation: koiDrift 16s ease-in-out infinite alternate;
}
@keyframes koiDrift {
  from { transform: translate(-10px, 8px) rotate(-7deg); }
  to   { transform: translate(10px, -8px) rotate(-3deg); }
}
@media (prefers-reduced-motion: reduce) { .koi-cta { animation: none; } }
.finalcta h2 em { font-style: italic; color: #F6A871; }
.finalcta p { color: #B8B4AC; max-width: 44ch; margin-inline: auto; margin-bottom: var(--s-4); }
.finalcta .btn--primary { background: var(--paper); color: var(--ink); }
.finalcta .btn--primary:hover { background: var(--white); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { border-top: 1px solid var(--mist); padding-block: var(--s-6) var(--s-4); }
.footer__grid { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: var(--s-4); }
.footer__brand p { color: var(--slate); max-width: 30ch; margin-top: var(--s-2); font-size: 15px; }
.footer h5 { font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--slate); margin-bottom: var(--s-2); font-weight: 600; }
.footer ul { display: flex; flex-direction: column; gap: 10px; }
.footer ul a { font-size: 15px; color: var(--ink); }
.footer ul a:hover { color: var(--accent); }
.footer__bar { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: var(--s-2); margin-top: var(--s-5); padding-top: var(--s-3); border-top: 1px solid var(--mist); font-size: 13px; color: var(--slate); }

/* ============================================================
   STICKY MOBILE ORDER BAR
   ============================================================ */
.mobilebar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; display: none;
  align-items: center; justify-content: space-between; gap: var(--s-2);
  padding: 12px var(--gutter); background: rgba(250,248,244,0.92);
  backdrop-filter: blur(14px); border-top: 1px solid var(--mist);
  transform: translateY(120%); transition: transform .35s var(--ease);
}
.mobilebar.is-visible { transform: translateY(0); }
.mobilebar b { font-size: 15px; }
.mobilebar span { font-size: 13px; color: var(--slate); display: block; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ============================================================
   ORDER FLOW PAGES (personalize / success)
   ============================================================ */
.page { min-height: 100vh; display: flex; flex-direction: column; }
.page__main { flex: 1; display: flex; align-items: flex-start; justify-content: center; padding-block: var(--s-6); }
.formcard { width: 100%; max-width: 620px; }
.progress { display: flex; align-items: center; gap: 10px; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--slate); margin-bottom: var(--s-3); }
.progress .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
.formcard h1 { font-size: clamp(30px, 4vw, 44px); margin-bottom: 10px; }
.formcard > .lead { margin-bottom: var(--s-4); }
.field { margin-bottom: var(--s-3); }
.field label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 8px; }
.field label .opt { font-weight: 400; color: var(--slate); }
.field .hint { font-size: 13px; color: var(--slate); margin-top: 6px; }
.field input[type=text], .field input[type=url], .field textarea {
  width: 100%; padding: 14px 16px; font: inherit; color: var(--ink);
  background: var(--white); border: 1px solid var(--mist-2); border-radius: var(--r-sm);
  transition: border-color .15s var(--ease), box-shadow .15s var(--ease);
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.field--valid input { border-color: var(--accent); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-3); }
.dropzone { border: 1.5px dashed var(--mist-2); border-radius: var(--r-sm); padding: var(--s-4); text-align: center; color: var(--slate); background: var(--white); cursor: pointer; transition: border-color .15s var(--ease), background .15s var(--ease); }
.dropzone:hover { border-color: var(--accent); background: var(--accent-soft); }
.dropzone svg { width: 28px; height: 28px; margin: 0 auto 10px; color: var(--slate); }
.order__logo { width: clamp(150px, 26vw, 200px); height: auto; margin: 0 auto var(--s-4); display: block; }
.success { text-align: center; max-width: 540px; }
.success__check { width: 84px; height: 84px; margin: 0 auto var(--s-4); border-radius: 50%; background: var(--accent-soft); display: grid; place-items: center; }
.success__check svg { width: 40px; height: 40px; color: var(--accent); }
.success h1 { font-size: clamp(32px,5vw,52px); margin-bottom: var(--s-2); }
.success .steps-next { text-align: left; background: var(--paper-2); border: 1px solid var(--mist); border-radius: var(--r-md); padding: var(--s-4); margin-top: var(--s-4); }
.success .steps-next li { display: flex; gap: 14px; padding: 12px 0; }
.success .steps-next li + li { border-top: 1px solid var(--mist); }
.success .steps-next b { display: block; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; gap: var(--s-4); }
  .hero__visual { order: -1; }
  .quotes { columns: 2; }
  .specs { grid-template-columns: repeat(2, 1fr); row-gap: var(--s-4); }
}
@media (max-width: 760px) {
  :root { --gutter: 20px; }
  .section { padding-block: var(--s-6); }
  .stats { grid-template-columns: 1fr; gap: var(--s-5); }
  .steps { grid-template-columns: 1fr; gap: var(--s-5); }
  .tapdemo { grid-template-columns: 1fr; }
  .tapdemo__stage { order: -1; }
  .showcase__item { grid-template-columns: 1fr; gap: var(--s-4); }
  .showcase__item:nth-child(even) .showcase__media { order: -1; }
  .showcase__item .showcase__media { order: -1; }
  .included { grid-template-columns: 1fr; }
  .incl-list { grid-template-columns: 1fr; }
  .quotes { columns: 1; }
  .offer { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .grid-2 { grid-template-columns: 1fr; }
  .mobilebar { display: flex; }
  body { padding-bottom: 76px; }
  .hero__actions { gap: var(--s-2); }
  .hero__actions .btn { width: 100%; }
  .hero__price { width: 100%; }
  .proof__inner { justify-content: flex-start; }
}
@media (max-width: 420px) {
  .footer__grid { grid-template-columns: 1fr; }
}
