﻿/* ============================================================
   SnatchNDash — Premium site styles  |  Logo-derived Red & Gold
   ============================================================ */

:root {
  --bg: #ffffff;
  --bg-alt: #fff8f2;
  --ink: #181113;
  --ink-2: #2c2123;
  --muted: #6e5b59;
  --line: #efdfda;

  /* Brand — sampled directly from the Snatch N' Dash logo */
  --brand:     #ed3a2f;   /* logo vivid red   */
  --brand-2:   #f9bd47;   /* logo warm gold   */
  --brand-3:   #ff6a3d;   /* orange mid-tone for richer gradients */
  --brand-ink: #c2261c;   /* deep red for text/links on light */
  --brand-2-ink: #9a6b07; /* readable gold-text on light */

  --dark:   #1a0f0f;
  --dark-2: #241414;

  --grad:      linear-gradient(120deg, #ed3a2f 0%, #ff6a3d 48%, #f9bd47 100%);
  --grad-soft: linear-gradient(120deg, rgba(237,58,47,.10), rgba(249,189,71,.12));
  --grad-warm: linear-gradient(135deg, #ed3a2f, #ff6a3d);

  --shadow-sm: 0 2px 8px rgba(36,20,20,.07);
  --shadow:    0 18px 50px -16px rgba(36,20,20,.2);
  --shadow-lg: 0 40px 90px -30px rgba(237,58,47,.30);

  --radius:    16px;
  --radius-lg: 26px;
  --maxw:      1180px;
  --ease:      cubic-bezier(.22, 1, .36, 1);
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }
.container--narrow { max-width: 820px; }

/* ---------- Buttons ---------- */
.btn {
  --pad: 13px 22px;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: var(--pad);
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 600; font-size: .95rem; line-height: 1;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s, border-color .25s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn--sm  { --pad: 10px 16px; font-size: .88rem; }
.btn--lg  { --pad: 16px 30px; font-size: 1.02rem; }

.btn--primary {
  background: var(--grad); color: #fff;
  box-shadow: 0 12px 30px -10px rgba(237,58,47,.5), inset 0 0 0 1px rgba(255,255,255,.15);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 20px 44px -12px rgba(237,58,47,.65); }

.btn--ghost { background: rgba(237,58,47,.04); color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { background: rgba(237,58,47,.08); transform: translateY(-2px); }

.btn--light { background: #fff; color: var(--brand); }
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow); }

/* ---------- Navbar ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.72);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s, background .3s;
}
.nav.is-scrolled { border-color: var(--line); box-shadow: var(--shadow-sm); }
.nav__inner { display: flex; align-items: center; gap: 24px; height: 70px; }
.nav__brand { display: inline-flex; align-items: center; }
.nav__logo-img { height: 52px; width: auto; display: block; }
.nav__links { display: flex; gap: 22px; margin-left: 14px; flex: 1; }
.nav__links a { color: var(--muted); font-weight: 500; font-size: .94rem; position: relative; transition: color .2s; white-space: nowrap; }
.nav__links a:hover { color: var(--ink); }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0; background: var(--grad); transition: width .25s var(--ease); border-radius: 2px; }
.nav__links a:hover::after { width: 100%; }
.nav__cta { display: flex; gap: 10px; }

.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 10px; margin: -2px; border-radius: 10px; }
.nav__toggle:active { background: var(--bg-alt); }
.nav__toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s, opacity .3s; }
.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); }

.nav__mobile { display: none; flex-direction: column; gap: 2px; padding: 0 20px; max-height: 0; overflow: hidden; transition: max-height .35s var(--ease), padding .35s; background: rgba(255,255,255,.98); backdrop-filter: saturate(180%) blur(16px); -webkit-backdrop-filter: saturate(180%) blur(16px); border-bottom: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.nav__mobile.is-open { max-height: 460px; padding: 8px 20px 20px; }
.nav__mobile a { display: flex; align-items: center; min-height: 50px; padding: 12px 6px; color: var(--ink-2); font-weight: 600; font-size: 1.02rem; border-bottom: 1px solid var(--line); }
.nav__mobile a:active { color: var(--brand); }
.nav__mobile a:last-of-type { border-bottom: 0; }
.nav__mobile .btn { margin-top: 14px; min-height: 52px; justify-content: center; }

/* ---------- Hero ---------- */
.hero {
  position: relative; padding: 70px 0 0; overflow: hidden;
  /* Branded backdrop always present, so the hero never renders blank
     if the video is blocked or still loading (iOS Safari). */
  background:
    radial-gradient(120% 80% at 20% 8%, rgba(237,58,47,.20), transparent 55%),
    radial-gradient(100% 70% at 90% 0%, rgba(249,189,71,.15), transparent 55%),
    linear-gradient(180deg, #0d0709 0%, #060406 100%);
}
/* ---- Hero video background ---- */
.hero__video-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; z-index: 0; opacity: .45; pointer-events: none; background: #0a0404; }
/* Directional overlay: heavy on left (text), lighter on right (machine visual) */
.hero__video-overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(105deg,
      rgba(10,4,4,.96) 0%,
      rgba(12,5,5,.90) 35%,
      rgba(12,5,5,.55) 60%,
      rgba(10,4,4,.72) 100%),
    linear-gradient(to bottom, rgba(0,0,0,.25) 0%, rgba(0,0,0,.0) 30%, rgba(0,0,0,.30) 100%);
}
.hero__glow,
.hero__inner,
.hero__stats { position: relative; z-index: 2; }
.hero__glow {
  position: absolute; inset: -20% -10% auto -10%; height: 720px; z-index: 2;
  background:
    radial-gradient(60% 60% at 18% 22%, rgba(237,58,47,.28), transparent 60%),
    radial-gradient(50% 50% at 82% 12%, rgba(249,189,71,.22), transparent 60%);
  filter: blur(8px); pointer-events: none;
}
/* ---- Hero: force all text white on dark video ---- */
.hero__inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.pill {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--grad-soft); border: 1px solid var(--line);
  color: var(--brand-ink); font-weight: 600; font-size: .82rem;
  padding: 8px 14px; border-radius: 999px; margin-bottom: 22px;
}
.pill__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--brand-2); box-shadow: 0 0 0 4px rgba(249,189,71,.22); animation: pulse 2s infinite; }
@keyframes pulse { 50% { opacity: .5; transform: scale(1.25); } }

.hero__title { font-size: clamp(2.4rem, 5.4vw, 4.1rem); line-height: 1.04; letter-spacing: -.035em; font-weight: 800; }
.grad-text { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero__sub { color: var(--muted); font-size: 1.12rem; margin: 22px 0 26px; max-width: 560px; }
.hero__sub strong { color: var(--ink); }

.hero__benefits { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px 22px; margin-bottom: 30px; max-width: 520px; }
.hero__benefits li { display: flex; align-items: center; gap: 10px; font-weight: 500; color: var(--ink-2); font-size: .98rem; }
.check { display: inline-grid; place-items: center; width: 22px; height: 22px; border-radius: 50%; background: var(--grad-soft); color: var(--brand-ink); font-size: .8rem; font-weight: 800; }

.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__actions--center { justify-content: center; }
.hero__micro { margin-top: 18px; font-size: .85rem; color: var(--muted); }

/* ---- Hero on dark video: force light text (placed AFTER base rules to win) ---- */
.hero .pill { background: rgba(255,255,255,.10); border-color: rgba(255,255,255,.18); color: rgba(255,255,255,.92); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); }
.hero .pill__dot { background: var(--brand-2); box-shadow: 0 0 0 4px rgba(249,189,71,.28); }
.hero .hero__title { color: #fff; text-shadow: 0 2px 32px rgba(0,0,0,.45); }
.hero .hero__sub { color: rgba(255,255,255,.80); }
.hero .hero__sub strong { color: #fff; }
.hero .hero__benefits li { color: rgba(255,255,255,.92); font-weight: 600; }
.hero .check { background: var(--grad); color: #fff; box-shadow: 0 2px 10px rgba(237,58,47,.35); }
.hero .hero__micro { color: rgba(255,255,255,.50); }
.hero .hero__actions .btn--ghost { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.32); color: #fff; -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); }
.hero .hero__actions .btn--ghost:hover { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.55); }
.hero .hero__stats { border-color: rgba(255,255,255,.12); }
.hero .hero__stats .stat__label { color: rgba(255,255,255,.55); }

/* Hero visual */
.hero__visual { position: relative; display: grid; place-items: center; min-height: 460px; }

/* ============================================================
   Machine image placeholders
   ============================================================ */
.machine-ph { margin: 0; }
.machine-ph__img {
  position: relative;
  background: linear-gradient(160deg, #fff4f2, #fff9f5);
  border: 2px dashed #f0c8c4;
  border-radius: 30px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  overflow: hidden;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.machine-ph__img:hover { border-color: var(--brand); box-shadow: var(--shadow); }
.machine-ph__content { display: flex; flex-direction: column; align-items: center; gap: 10px; padding: 24px; text-align: center; }
.machine-ph__ic { font-size: 2.8rem; line-height: 1; }
.machine-ph__label { font-weight: 700; color: var(--ink); font-size: 1rem; }
.machine-ph__hint { font-size: .78rem; color: var(--brand-ink); background: rgba(237,58,47,.07); padding: 4px 12px; border-radius: 999px; font-weight: 600; }
.machine-ph figcaption { font-size: .82rem; color: var(--muted); text-align: center; margin-top: 10px; font-style: italic; }

/* Real photo inside machine-ph */
.machine-ph img { display: block; object-fit: cover; }
.machine-ph--hero img { width: 280px; height: 400px; border-radius: 30px; box-shadow: var(--shadow-lg); animation: floaty 6s ease-in-out infinite; }
.machine-gallery .machine-ph img { width: 100%; aspect-ratio: 3/4; border-radius: var(--radius-lg); }
.mstrip__inner .machine-ph img { width: 100%; aspect-ratio: 3/4; border-radius: var(--radius-lg); }

/* Hero machine placeholder */
.machine-ph--hero .machine-ph__img {
  width: 280px; height: 400px;
  animation: floaty 6s ease-in-out infinite;
  box-shadow: var(--shadow-lg);
}
@keyframes floaty { 50% { transform: translateY(-14px); } }

/* Gallery (4-col) */
.machine-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.machine-gallery .machine-ph__img { width: 100%; aspect-ratio: 3/4; border-radius: var(--radius-lg); }

/* Strip (3-col) on landing pages */
.mstrip__inner { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.mstrip__inner .machine-ph__img { width: 100%; aspect-ratio: 3/4; border-radius: var(--radius-lg); }

/* Dark section variant */
.section--dark .machine-ph__img { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.1); }
.section--dark .machine-ph__label { color: #f0e4e2; }
.section--dark .machine-ph__hint { color: #c8a8a4; background: rgba(255,255,255,.08); }
.section--dark figcaption { color: #c8a8a4; }

/* Float cards */
.floatcard {
  position: absolute; background: #fff; border: 1px solid var(--line);
  border-radius: 16px; padding: 14px 18px; box-shadow: var(--shadow);
  animation: floaty 6s ease-in-out infinite;
}
.floatcard--a { top: 36px; right: -6px; animation-delay: .6s; }
.floatcard--b { bottom: 50px; left: -10px; animation-delay: 1.4s; }
.floatcard__label { font-size: .72rem; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }
.floatcard__value { font-size: 1.5rem; font-weight: 800; letter-spacing: -.02em; }
.floatcard__trend { font-size: .76rem; color: #b45309; font-weight: 600; }

/* Hero stats */
.hero__stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; margin: 70px auto 0; padding-block: 30px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stat { text-align: center; }
.stat__num { display: block; font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 800; letter-spacing: -.03em; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat__label { font-size: .85rem; color: var(--muted); }

/* ---------- Sections ---------- */
.section { padding: 100px 0; position: relative; }
.section--alt  { background: var(--bg-alt); }
.section--dark { background: linear-gradient(180deg, var(--dark), var(--dark-2)); color: #f0e4e2; }
.section__head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.eyebrow { display: inline-block; font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--brand-ink); margin-bottom: 14px; }
.eyebrow--light { color: var(--brand-2); }
.section__title { font-size: clamp(1.8rem, 3.6vw, 2.7rem); letter-spacing: -.03em; line-height: 1.12; font-weight: 800; }
.section__title--xl { font-size: clamp(2rem, 4.4vw, 3.2rem); }
.section__lead { color: var(--muted); font-size: 1.08rem; margin-top: 16px; }
.section--dark .section__lead { color: #c8a8a4; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.step {
  position: relative; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 30px 24px; box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.step__num { position: absolute; top: -14px; left: 24px; width: 30px; height: 30px; border-radius: 9px; background: var(--grad); color: #fff; font-weight: 800; display: grid; place-items: center; font-size: .9rem; box-shadow: var(--shadow-sm); }
.step__icon { font-size: 1.9rem; margin: 6px 0 14px; }
.step h3 { font-size: 1.12rem; letter-spacing: -.01em; }
.step p { color: var(--muted); margin-top: 8px; font-size: .94rem; }

/* ---------- Chips ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; max-width: 920px; margin: 0 auto 56px; }
.chip {
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 11px 18px; font-weight: 600; font-size: .94rem; box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), border-color .25s, box-shadow .25s;
}
.chip:hover { transform: translateY(-3px); border-color: var(--brand); box-shadow: var(--shadow); }

.reqs { text-align: center; }
.reqs__title { font-size: 1.2rem; margin-bottom: 22px; }
.reqs__grid { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.req { display: flex; align-items: center; gap: 10px; background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 12px 18px; font-weight: 500; transition: border-color .2s; }
.req:hover { border-color: var(--brand); }
.req__icon { font-size: 1.1rem; }

/* ---------- Benefits ---------- */
.benefits { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.benefitcard { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 38px 34px; box-shadow: var(--shadow-sm); }
.benefitcard--accent { background: linear-gradient(165deg, var(--dark), var(--dark-2)); color: #f0e4e2; border-color: transparent; }
.benefitcard__tag { display: inline-block; font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--brand-ink); margin-bottom: 20px; }
.benefitcard--accent .benefitcard__tag { color: var(--brand-2); }
.benefitcard ul { display: grid; gap: 13px; }
.benefitcard li { position: relative; padding-left: 30px; font-weight: 500; }
.benefitcard li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 20px; height: 20px; display: grid; place-items: center; border-radius: 50%; background: var(--grad-soft); color: var(--brand-ink); font-size: .72rem; font-weight: 800; }
.benefitcard--accent li::before { background: rgba(249,189,71,.18); color: var(--brand-2); }

/* ---------- Pillars ---------- */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.pillar { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 28px; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.pillar:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.pillar__ic { font-size: 2rem; display: block; margin-bottom: 14px; }
.pillar h3 { font-size: 1.16rem; letter-spacing: -.01em; }
.pillar p { color: var(--muted); margin-top: 10px; font-size: .96rem; }

/* ---------- Product note ---------- */
.prodnote { text-align: center; color: var(--muted); font-weight: 600; max-width: 680px; margin: 30px auto 0; }

/* ---------- Technology ---------- */
.tech { display: grid; grid-template-columns: 1.1fr .9fr; gap: 44px; align-items: center; }
.tech__features { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.techfeat { display: flex; gap: 14px; }
.techfeat__ic { font-size: 1.5rem; flex-shrink: 0; width: 46px; height: 46px; display: grid; place-items: center; border-radius: 12px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); }
.techfeat h3 { font-size: 1.04rem; letter-spacing: -.01em; }
.techfeat p { color: #c8a8a4; font-size: .9rem; margin-top: 4px; }

.dashboard { background: linear-gradient(165deg, rgba(255,255,255,.06), rgba(255,255,255,.02)); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow-lg); }
.dashboard__top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.dashboard__title { font-weight: 700; }
.dashboard__live { display: inline-flex; align-items: center; gap: 7px; font-size: .8rem; color: var(--brand-2); font-weight: 600; }
.dashboard__live .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--brand-2); box-shadow: 0 0 8px var(--brand-2); animation: pulse 1.8s infinite; }
.dashboard__kpis { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-bottom: 22px; }
.dashboard__kpis > div { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07); border-radius: 12px; padding: 12px; }
.k__label { display: block; font-size: .72rem; color: #c8a8a4; }
.k__val { font-size: 1.2rem; font-weight: 800; letter-spacing: -.02em; }
.dashboard__chart { display: flex; align-items: flex-end; gap: 8px; height: 120px; padding: 0 2px 4px; }
.dashboard__chart span { flex: 1; height: var(--h); background: var(--grad); border-radius: 6px 6px 2px 2px; opacity: .85; transform-origin: bottom; animation: grow 1s var(--ease) backwards; }
@keyframes grow { from { transform: scaleY(0); } }
.dashboard__row { display: flex; justify-content: space-between; margin-top: 16px; font-size: .86rem; color: #c8a8a4; }
.dashboard__row .up { color: var(--brand-2); font-weight: 700; }

/* ---------- Revenue ---------- */
.revenue { display: grid; grid-template-columns: 1.1fr .9fr; gap: 44px; align-items: center; }
.callout { background: var(--grad-soft); border: 1px solid var(--line); border-left: 4px solid var(--brand); border-radius: 12px; padding: 18px 20px; color: var(--ink-2); font-weight: 500; margin: 26px 0; }
.revenue__handles { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px; box-shadow: var(--shadow); }
.revenue__handles h3 { margin-bottom: 18px; font-size: 1.1rem; }
.handles { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.handles li { font-weight: 500; background: var(--bg-alt); border-radius: 10px; padding: 11px 14px; font-size: .92rem; }
.handles__note { margin-top: 18px; color: var(--muted); font-weight: 600; }

/* ---------- Comparison (vs) ---------- */
.vs { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; max-width: 920px; margin: 0 auto; }
.vs__col { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px 28px; }
.vs__col--new { border-color: transparent; background: linear-gradient(165deg, var(--dark), var(--dark-2)); color: #f0e4e2; box-shadow: var(--shadow); }
.vs__head { font-weight: 800; font-size: 1.1rem; letter-spacing: -.01em; margin-bottom: 18px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.vs__col--new .vs__head { border-color: rgba(255,255,255,.12); color: #fff; }
.vs__col ul { display: grid; gap: 12px; }
.vs__col li { position: relative; padding-left: 28px; font-weight: 500; }
.vs__col--old li::before { content: "\2715"; position: absolute; left: 0; top: 1px; color: var(--brand); font-weight: 800; font-size: .82rem; }
.vs__col--new li::before { content: "\2713"; position: absolute; left: 0; top: 0; width: 18px; height: 18px; display: grid; place-items: center; border-radius: 50%; background: rgba(249,189,71,.18); color: var(--brand-2); font-size: .7rem; font-weight: 800; }

/* ---------- Partnership / flow ---------- */
.partner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 44px; align-items: center; }
.partner__copy strong { color: #fff; }
.partner__flow { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-lg); }
.partner__flow h3 { font-size: 1.16rem; margin-bottom: 18px; }
.flowlist { display: grid; gap: 12px; }
.flowlist li { display: flex; align-items: flex-start; gap: 14px; color: #c8a8a4; font-weight: 500; }
.flowlist__n { flex-shrink: 0; width: 28px; height: 28px; border-radius: 8px; background: var(--grad); color: #fff; font-weight: 800; display: grid; place-items: center; font-size: .85rem; }
.flowlist__note { margin-top: 18px; color: #c8a8a4; font-size: .9rem; }

/* ---------- Quiz ---------- */
.quiz { max-width: 680px; margin: 0 auto; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: 34px; }
.quiz__reassure { margin-top: 14px; font-size: .9rem; color: var(--muted); font-weight: 500; }
.quiz__progress { display: flex; align-items: center; gap: 14px; margin-bottom: 26px; }
.quiz__progressbar { flex: 1; height: 8px; background: var(--bg-alt); border-radius: 999px; overflow: hidden; }
.quiz__progressbar span { display: block; height: 100%; background: var(--grad); border-radius: 999px; transition: width .4s var(--ease); }
.quiz__progresslabel { font-size: .82rem; color: var(--muted); font-weight: 600; white-space: nowrap; }

.quiz__step { border: 0; display: none; animation: fadeUp .4s var(--ease); }
.quiz__step.is-active { display: block; }
.quiz__step legend { font-size: 1.25rem; font-weight: 700; letter-spacing: -.02em; margin-bottom: 20px; padding: 0; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } }

.field { margin-bottom: 16px; }
.field label { display: block; font-size: .86rem; font-weight: 600; color: var(--ink-2); margin-bottom: 7px; }
.field input {
  width: 100%; padding: 13px 15px; border: 1px solid var(--line); border-radius: 12px;
  font-size: .98rem; font-family: inherit; background: var(--bg-alt); transition: border-color .2s, box-shadow .2s, background .2s;
}
.field input:focus { outline: none; border-color: var(--brand); background: #fff; box-shadow: 0 0 0 4px rgba(237,58,47,.1); }

.options { display: grid; gap: 12px; }
.options--2 { grid-template-columns: 1fr 1fr; }
.options--grid { grid-template-columns: repeat(4, 1fr); }
.option {
  padding: 16px 18px; border: 1px solid var(--line); border-radius: 14px;
  background: var(--bg-alt); font-weight: 600; font-size: .96rem; color: var(--ink-2);
  text-align: center; transition: all .2s var(--ease);
}
.option:hover { border-color: var(--brand); transform: translateY(-2px); }
.option.is-selected { border-color: var(--brand); background: var(--grad-soft); color: var(--brand-ink); box-shadow: 0 0 0 3px rgba(237,58,47,.1); }

.quiz__nav { display: flex; justify-content: space-between; gap: 14px; margin-top: 28px; }
.quiz__nav .btn { flex: 1; }
.quiz__error { color: var(--brand); font-size: .86rem; margin-top: 14px; font-weight: 600; text-align: center; }

.quiz__result { display: none; text-align: center; padding: 14px 0; animation: fadeUp .5s var(--ease); }
.quiz__result.is-active { display: block; }
.quiz__badge { width: 64px; height: 64px; border-radius: 50%; background: var(--grad); color: #fff; display: grid; place-items: center; font-size: 1.8rem; font-weight: 800; margin: 0 auto 18px; box-shadow: 0 14px 30px -10px rgba(237,58,47,.6); }
.quiz__result h3 { font-size: 1.6rem; letter-spacing: -.02em; }
.quiz__result p { color: var(--muted); margin: 12px 0 24px; }
.quiz__result .hero__actions { justify-content: center; }
.quiz__disclaimer { font-size: .8rem; color: var(--muted); margin-top: 18px; }

/* ---------- Social proof ---------- */
.proof { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.proofcard { background: #fff; border: 1px dashed var(--line); border-radius: var(--radius); padding: 30px 26px; text-align: center; transition: border-color .25s, transform .25s; }
.proofcard:hover { border-color: var(--brand); transform: translateY(-4px); }
.proofcard__ic { font-size: 2rem; display: block; margin-bottom: 14px; }
.proofcard h3 { font-size: 1.06rem; }
.proofcard p { color: var(--muted); font-size: .9rem; margin-top: 6px; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 12px; }
.faq__item { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 4px 22px; transition: box-shadow .25s, border-color .25s; }
.faq__item[open] { box-shadow: var(--shadow-sm); border-color: var(--brand); }
.faq__item summary { list-style: none; cursor: pointer; font-weight: 600; font-size: 1.05rem; padding: 18px 30px 18px 0; position: relative; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%); font-size: 1.5rem; color: var(--brand); transition: transform .3s; font-weight: 400; }
.faq__item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq__body { padding: 0 0 18px; color: var(--muted); animation: fadeUp .3s var(--ease); }

/* ---------- Private ownership ---------- */
.private {
  display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap;
  background: linear-gradient(135deg, var(--bg-alt), #fef0ee); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 44px 46px;
}
.private__copy h2 { font-size: 1.5rem; letter-spacing: -.02em; }
.private__copy p { color: var(--muted); margin-top: 10px; max-width: 620px; }

/* ---------- CTA band ---------- */
.ctaband { background: linear-gradient(135deg, var(--dark), var(--dark-2)); color: #fff; border-radius: var(--radius-lg); padding: 44px 40px; text-align: center; box-shadow: var(--shadow); }
.ctaband h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); letter-spacing: -.02em; }
.ctaband p { color: #c8a8a4; margin: 12px auto 24px; max-width: 560px; }
.ctaband .hero__actions { justify-content: center; }

/* ---------- CTA / Booking section ---------- */
.section--cta { background: linear-gradient(180deg, var(--dark), #1e1010); color: #fff; overflow: hidden; }
.section--cta .section__lead { color: #c8a8a4; }
.cta__glow { position: absolute; inset: auto -10% -40% -10%; height: 500px; background: radial-gradient(50% 60% at 50% 100%, rgba(237,58,47,.4), transparent 70%); z-index: 0; }
.section--cta .container { position: relative; z-index: 1; }

.booking { margin-top: 46px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-lg); padding: 30px; }
.booking__head { text-align: center; margin-bottom: 22px; }
.booking__head h3 { font-size: 1.4rem; }
.booking__head p { color: #c8a8a4; margin-top: 8px; }
.booking__placeholder { text-align: center; border: 2px dashed rgba(255,255,255,.18); border-radius: 18px; padding: 50px 20px; }
.booking__ic { font-size: 2.6rem; display: block; margin-bottom: 14px; }
.booking__placeholder p { color: #c8a8a4; margin-bottom: 18px; }
.booking__cta { text-align: center; border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.03); border-radius: 18px; padding: 44px 24px; }
.booking__cta p { color: #c8a8a4; margin-bottom: 22px; }
.booking__cta .btn { display: inline-flex; }
.booking__alt { display: block; margin-top: 18px; color: var(--brand-2); font-weight: 600; font-size: .95rem; }
.booking__alt:hover { color: #fff; }

/* ---------- Related links grid ---------- */
.related { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.relcard { display: block; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-sm); transition: transform .25s var(--ease), border-color .25s, box-shadow .25s; }
.relcard:hover { transform: translateY(-4px); border-color: var(--brand); box-shadow: var(--shadow); }
.relcard span { font-size: 1.5rem; display: block; margin-bottom: 10px; }
.relcard h3 { font-size: 1.04rem; letter-spacing: -.01em; }
.relcard p { color: var(--muted); font-size: .9rem; margin-top: 6px; }
.relcard__arrow { color: var(--brand-ink); font-weight: 700; font-size: .9rem; margin-top: 10px; display: inline-block; }

/* ---------- Article ---------- */
.article { max-width: 760px; margin: 0 auto; }
.article h2 { font-size: clamp(1.5rem, 3vw, 2rem); letter-spacing: -.02em; margin: 44px 0 16px; }
.article h3 { font-size: 1.25rem; margin: 30px 0 12px; }
.article p { color: var(--ink-2); margin-bottom: 16px; font-size: 1.05rem; }
.article ul.bullets { display: grid; gap: 10px; margin: 0 0 20px; }
.article ul.bullets li { position: relative; padding-left: 28px; color: var(--ink-2); }
.article ul.bullets li::before { content: "\2713"; position: absolute; left: 0; top: 1px; width: 18px; height: 18px; display: grid; place-items: center; border-radius: 50%; background: var(--grad-soft); color: var(--brand-ink); font-size: .7rem; font-weight: 800; }

/* ---------- Contact form ---------- */
.contactform { max-width: 620px; margin: 0 auto; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px; box-shadow: var(--shadow); }
/* Honeypot — visually hidden from humans, visible to naive bots */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.contactform .field textarea { width: 100%; padding: 13px 15px; border: 1px solid var(--line); border-radius: 12px; font-size: .98rem; font-family: inherit; background: var(--bg-alt); resize: vertical; min-height: 120px; transition: border-color .2s, box-shadow .2s, background .2s; }
.contactform .field textarea:focus { outline: none; border-color: var(--brand); background: #fff; box-shadow: 0 0 0 4px rgba(237,58,47,.1); }
.contactform .btn { width: 100%; margin-top: 6px; }
.contactform__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.formnote { text-align: center; font-size: .82rem; color: var(--muted); margin-top: 14px; }

/* ---------- Footer ---------- */
.footer { background: #0f0808; color: #c8a8a4; padding: 64px 0 30px; }
.footer__inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 32px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer__inner--wide { grid-template-columns: 1.6fr repeat(4, 1fr); }
.footer__brand .nav__brand { color: #fff; margin-bottom: 14px; }
.footer__brand p { font-size: .92rem; max-width: 320px; }
.footer__col h4 { color: #fff; font-size: .92rem; margin-bottom: 14px; letter-spacing: .02em; }
.footer__col a { display: block; padding: 5px 0; font-size: .92rem; color: #c8a8a4; transition: color .2s; }
.footer__col a:hover { color: #fff; }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; font-size: .85rem; flex-wrap: wrap; gap: 10px; }
.footer__legal a:hover { color: #fff; }

/* ---------- Sticky CTA ---------- */
.sticky-cta {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--grad); color: #fff; font-weight: 700; font-size: .95rem;
  padding: 15px 24px; border-radius: 999px; box-shadow: 0 18px 40px -12px rgba(237,58,47,.7);
  transform: translateY(140%); transition: transform .45s var(--ease), box-shadow .25s;
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta:hover { box-shadow: 0 24px 50px -12px rgba(237,58,47,.8); }
.sticky-cta__pulse { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,.5); position: relative; }
.sticky-cta__pulse::after { content: ""; position: absolute; inset: -5px; border-radius: 50%; border: 2px solid rgba(255,255,255,.3); animation: ripple 1.8s infinite; }
@keyframes ripple { to { transform: scale(2.4); opacity: 0; } }

/* ---------- Exit intent modal ---------- */
.modal { position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center; padding: 20px; }
.modal.is-open { display: flex; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(24,15,15,.65); backdrop-filter: blur(4px); animation: fade .3s; }
@keyframes fade { from { opacity: 0; } }
.modal__card { position: relative; background: #fff; border-radius: var(--radius-lg); padding: 40px 38px; max-width: 460px; width: 100%; box-shadow: var(--shadow-lg); text-align: center; animation: modalIn .4s var(--ease-spring); }
@keyframes modalIn { from { opacity: 0; transform: translateY(18px) scale(.97); } }
.modal__close { position: absolute; top: 10px; right: 12px; width: 40px; height: 40px; display: grid; place-items: center; background: none; border: 0; font-size: 1.8rem; color: var(--muted); line-height: 1; border-radius: 10px; }
.modal__close:hover { color: var(--ink); background: var(--bg-alt); }
.modal__badge { display: inline-block; font-size: .76rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--brand-ink); background: var(--grad-soft); padding: 6px 14px; border-radius: 999px; margin-bottom: 16px; }
.modal__card h3 { font-size: 1.5rem; letter-spacing: -.02em; }
.modal__card > p { color: var(--muted); margin: 12px 0 22px; }
.modal__form { display: flex; gap: 10px; flex-wrap: wrap; }
.modal__form input { flex: 1; min-width: 180px; min-height: 50px; padding: 13px 16px; border: 1px solid var(--line); border-radius: 12px; font-family: inherit; font-size: 16px; background: var(--bg-alt); transition: border-color .2s, box-shadow .2s; }
.modal__form input:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 4px rgba(237,58,47,.1); }
.modal__form input.is-invalid { border-color: var(--brand); box-shadow: 0 0 0 4px rgba(237,58,47,.14); }
.modal__form .btn { min-height: 50px; }
.modal__micro { font-size: .8rem; color: var(--muted); margin-top: 14px; }
/* Exit-popup success state */
.modal__success { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.modal__check { width: 64px; height: 64px; display: grid; place-items: center; border-radius: 50%; background: var(--grad); color: #fff; font-size: 2rem; box-shadow: 0 12px 28px -8px rgba(237,58,47,.55); margin-bottom: 8px; animation: modalIn .5s var(--ease-spring); }
.modal__success h3 { font-size: 1.42rem; letter-spacing: -.02em; }
.modal__success p { color: var(--muted); margin: 6px 0 14px; }
.modal__success strong { color: var(--ink); }
.modal__cta { width: 100%; }

/* ---------- Landing page hero ---------- */
.lhero { position: relative; padding: 80px 0 70px; overflow: hidden; }
.lhero__glow { position: absolute; inset: -20% -10% auto -10%; height: 560px; z-index: -1; background: radial-gradient(55% 55% at 25% 20%, rgba(237,58,47,.18), transparent 60%), radial-gradient(45% 45% at 85% 15%, rgba(249,189,71,.16), transparent 60%); }
.lhero__grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 48px; align-items: center; }
.lhero__inner { max-width: none; }
.lhero__visual { display: flex; justify-content: center; }
.lhero h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); line-height: 1.06; letter-spacing: -.035em; font-weight: 800; }
.lhero__sub { color: var(--muted); font-size: 1.14rem; margin: 20px 0 28px; max-width: 600px; }
.lhero__sub strong { color: var(--ink); }
.breadcrumb { font-size: .85rem; color: var(--muted); margin-bottom: 18px; }
.breadcrumb a:hover { color: var(--brand-ink); }
.breadcrumb span { margin: 0 6px; opacity: .5; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1060px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__toggle { display: flex; margin-left: auto; }
  .nav__mobile { display: flex; }
  /* Drop the heavy background video on mobile/tablet: iOS Safari blocks
     autoplay of large videos on cellular and mis-renders object-fit,
     causing the blank/distorted hero. The branded gradient + the hero
     visual image carry the design instead. */
  .hero__video-bg { display: none !important; }
  .hero__inner { grid-template-columns: 1fr; gap: 30px; }
  .hero__visual { min-height: 380px; order: -1; }
  .hero__stats { grid-template-columns: 1fr 1fr; gap: 24px; }
  .steps { grid-template-columns: 1fr 1fr; }
  .tech, .revenue { grid-template-columns: 1fr; }
  .proof { grid-template-columns: 1fr 1fr; }
  .benefits { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__inner--wide { grid-template-columns: 1fr 1fr; }
  .pillars { grid-template-columns: 1fr; }
  .vs { grid-template-columns: 1fr; }
  .partner { grid-template-columns: 1fr; }
  .related { grid-template-columns: 1fr 1fr; }
  .lhero__grid { grid-template-columns: 1fr; }
  .lhero__visual { display: none; }
  .machine-gallery { grid-template-columns: 1fr 1fr; }
  .mstrip__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .section { padding: 70px 0; }
  .hero__benefits { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .tech__features { grid-template-columns: 1fr; }
  .handles, .options--grid { grid-template-columns: 1fr 1fr; }
  .proof { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__inner--wide { grid-template-columns: 1fr; }
  .private { padding: 32px 26px; }
  .quiz { padding: 24px 20px; }
  .sticky-cta { left: 16px; right: 16px; justify-content: center; }
  .hero__stats { padding-block: 22px; }
  .related { grid-template-columns: 1fr; }
  .contactform__row { grid-template-columns: 1fr; }
  .machine-gallery { grid-template-columns: 1fr 1fr; }
  .mstrip__inner { grid-template-columns: 1fr; }
  .ctaband { padding: 32px 24px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   PREMIUM REFINEMENTS v2  —  Enterprise B2B polish
   (Stripe / Linear / Ramp inspired: refined depth, typography,
    glass, motion, and trust components)
   ============================================================ */
:root {
  /* Refined, layered shadow system */
  --shadow-xs: 0 1px 2px rgba(24,15,15,.05);
  --shadow-sm: 0 2px 4px rgba(24,15,15,.04), 0 4px 12px rgba(24,15,15,.05);
  --shadow:    0 4px 8px rgba(24,15,15,.04), 0 16px 40px -12px rgba(24,15,15,.16);
  --shadow-md: 0 8px 16px -4px rgba(24,15,15,.08), 0 24px 56px -16px rgba(24,15,15,.18);
  --shadow-lg: 0 20px 48px -16px rgba(237,58,47,.24), 0 40px 90px -30px rgba(24,15,15,.28);
  --ring: 0 0 0 4px rgba(237,58,47,.16);
  --ease-out: cubic-bezier(.22, 1, .36, 1);
  --ease-spring: cubic-bezier(.34, 1.56, .64, 1);
}

/* ---------- Typography refinement ---------- */
body { letter-spacing: -.011em; }
.hero__title, .lhero h1 { font-weight: 900; letter-spacing: -.04em; }
.section__title { font-weight: 850; }
.section__head { margin-bottom: 60px; }
.section__lead { font-size: 1.12rem; line-height: 1.6; }
h2, h3, h4 { text-wrap: balance; }
p { text-wrap: pretty; }

/* ---------- Accessible focus ring (keyboard only) ---------- */
a:focus-visible, button:focus-visible, summary:focus-visible,
input:focus-visible, textarea:focus-visible, .option:focus-visible {
  outline: none;
  box-shadow: var(--ring);
  border-radius: 8px;
}

/* ---------- Premium glass nav ---------- */
.nav {
  background: rgba(255,255,255,.7);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
}
.nav.is-scrolled {
  background: rgba(255,255,255,.85);
  box-shadow: 0 1px 0 rgba(24,15,15,.06), 0 8px 30px -18px rgba(24,15,15,.3);
}
.nav__logo-img { height: 50px; transition: transform .3s var(--ease-out); }
.nav__brand:hover .nav__logo-img { transform: scale(1.04); }

/* ---------- Refined buttons with subtle sheen ---------- */
.btn { position: relative; overflow: hidden; font-weight: 650; letter-spacing: -.01em; }
.btn--primary::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.22), rgba(255,255,255,0) 45%);
  pointer-events: none;
}
.btn--primary {
  box-shadow: 0 1px 1px rgba(0,0,0,.1), 0 8px 24px -8px rgba(237,58,47,.5),
              inset 0 0 0 1px rgba(255,255,255,.18);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 38px -10px rgba(237,58,47,.62), inset 0 0 0 1px rgba(255,255,255,.22); }
.btn--ghost { background: #fff; border-color: var(--line); box-shadow: var(--shadow-xs); }
.btn--ghost:hover { background: #fff; border-color: var(--brand); box-shadow: var(--shadow-sm); }

/* ---------- Unified premium card hover ---------- */
.pillar, .step, .relcard, .proofcard, .benefitcard, .vs__col,
.revenue__handles, .contactform, .quiz, .chip {
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), border-color .25s;
}
.pillar:hover, .step:hover, .relcard:hover, .proofcard:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(237,58,47,.22);
}
.pillar, .step { border-radius: var(--radius-lg); }
.pillar__ic {
  width: 54px; height: 54px; display: grid; place-items: center;
  border-radius: 14px; background: var(--grad-soft); border: 1px solid rgba(237,58,47,.1);
  font-size: 1.6rem; margin-bottom: 18px;
}

/* ---------- Section rhythm + soft top divider ---------- */
.section--alt { box-shadow: inset 0 1px 0 var(--line), inset 0 -1px 0 var(--line); }

/* ---------- Trust bar (logos / metrics strip) ---------- */
.trustbar { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-alt); }
.trustbar__inner { display: flex; align-items: center; justify-content: center; gap: 14px 48px; flex-wrap: wrap; padding: 28px 24px; }
.trustbar__label { font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.trustbar__item { display: inline-flex; align-items: center; gap: 9px; font-weight: 650; color: var(--ink-2); font-size: .95rem; }
.trustbar__item .ic { font-size: 1.15rem; }

/* ---------- Guarantee badges ---------- */
.badges { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 980px; margin: 0 auto; }
.badge-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 30px 28px; text-align: center; box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
}
.badge-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.badge-card__ic {
  width: 56px; height: 56px; margin: 0 auto 16px; display: grid; place-items: center;
  border-radius: 16px; background: var(--grad); color: #fff; font-size: 1.5rem;
  box-shadow: 0 10px 24px -8px rgba(237,58,47,.5);
}
.badge-card h3 { font-size: 1.1rem; letter-spacing: -.01em; }
.badge-card p { color: var(--muted); font-size: .92rem; margin-top: 8px; }

/* ---------- Testimonials ---------- */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.tcard {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 30px 28px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 16px;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
}
.tcard:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.tcard__stars { color: var(--brand-2); letter-spacing: 2px; font-size: 1rem; }
.tcard__quote { font-size: 1.02rem; color: var(--ink-2); line-height: 1.6; flex: 1; }
.tcard__who { display: flex; align-items: center; gap: 12px; }
.tcard__avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--grad); color: #fff; display: grid; place-items: center; font-weight: 800; font-size: 1rem; flex-shrink: 0; }
.tcard__name { font-weight: 700; font-size: .95rem; }
.tcard__role { color: var(--muted); font-size: .84rem; }

/* ---------- Footer enhancement ---------- */
.footer { background: linear-gradient(180deg, #120909, #0c0606); }
.footer__legal a { color: #c8a8a4; transition: color .2s; }
.footer__disclaimer { max-width: var(--maxw); margin: 22px auto 0; padding: 22px 24px 0; border-top: 1px solid rgba(255,255,255,.06); font-size: .76rem; line-height: 1.6; color: #8a7270; }
.footer__trizan { font-size: .82rem; color: #c8a8a4; margin: 10px 0 2px; letter-spacing: .02em; }
.footer__trizan strong { color: #e8d4d0; font-weight: 700; }
.footer__contact { display: flex; flex-direction: column; gap: 6px; margin-top: 14px; font-size: .9rem; }
.footer__contact a { color: #c8a8a4; }
.footer__contact a:hover { color: #fff; }

/* ---------- Scroll-reveal stagger ---------- */
.reveal { transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }

@media (max-width: 1060px) {
  .badges { grid-template-columns: 1fr; max-width: 460px; }
  .testimonials { grid-template-columns: 1fr; }
}

/* ============================================================
   MOBILE FINALIZATION  —  touch targets, iOS zoom, modal, rhythm
   ============================================================ */
/* Prevent iOS Safari from zooming when a form field is focused
   (any control under 16px triggers the zoom). */
input, textarea, select { font-size: 16px; }

@media (max-width: 600px) {
  /* Comfortable, thumb-friendly tap targets */
  .btn { --pad: 14px 22px; min-height: 48px; }
  .btn--lg { --pad: 16px 26px; min-height: 52px; }
  .btn--sm { min-height: 42px; }

  /* Tighter nav on phones */
  .nav__inner { height: 62px; gap: 12px; }
  .nav__logo-img { height: 44px; }

  /* Hero spacing + type scale */
  .hero { padding-top: 54px; }
  .hero__title { font-size: clamp(2.05rem, 8.5vw, 2.7rem); }
  .hero__sub { font-size: 1.04rem; }
  .hero__actions { gap: 10px; }
  .hero__actions .btn { width: 100%; }

  /* Section headings breathe less on small screens */
  .section__head { margin-bottom: 38px; }
  .section__title { font-size: clamp(1.5rem, 6.4vw, 2rem); }
  .section__lead { font-size: 1.02rem; }

  /* Exit popup: full-width sheet, stacked field + button */
  .modal { padding: 14px; align-items: flex-end; }
  .modal__card { padding: 30px 22px 26px; border-radius: 22px; max-width: 100%; }
  .modal__form { flex-direction: column; gap: 12px; }
  .modal__form input { width: 100%; min-width: 0; }
  .modal__form .btn { width: 100%; }
  .modal__card h3 { font-size: 1.34rem; }

  /* Sticky CTA sits clear of iOS home indicator */
  .sticky-cta { bottom: calc(16px + env(safe-area-inset-bottom, 0px)); padding: 14px 20px; min-height: 52px; }
}

@media (max-width: 380px) {
  .container { padding-inline: 18px; }
  .hero__benefits li { font-size: .92rem; }
}

