/* ============================================================
   reservaime — Landing comercial
   Design system + estilos
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --navy: #1B3461;
  --navy-700: color-mix(in srgb, var(--navy) 82%, #000);
  --gold: #C9932A;
  --gold-600: color-mix(in srgb, var(--gold) 87%, #000);
  --gold-soft: color-mix(in srgb, var(--gold) 28%, #fff);
  --dark-start: color-mix(in srgb, var(--navy) 70%, #000);
  --dark-end: var(--navy);
  --ink: #111827;
  --gray: #4B5563;
  --gray-400: #8a93a3;
  --line: #e7e4dc;
  --line-soft: #efece4;
  --cream: #F8F7F4;
  --white: #FFFFFF;
  --green: #16A34A;
  --amber: #D97706;
  --red: #DC2626;

  --maxw: 1200px;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;

  --shadow-sm: 0 1px 2px rgba(16,30,59,.06), 0 1px 3px rgba(16,30,59,.05);
  --shadow: 0 10px 30px -12px rgba(16,30,59,.18), 0 2px 8px rgba(16,30,59,.06);
  --shadow-lg: 0 30px 60px -20px rgba(13,30,59,.35), 0 8px 24px rgba(13,30,59,.12);
  --shadow-gold: 0 14px 30px -10px rgba(201,147,42,.45);

  --ease: cubic-bezier(.22,.61,.36,1);
  --font: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 84px; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; padding: 0; }
h1, h2, h3, h4 { line-height: 1.1; letter-spacing: -0.02em; font-weight: 800; text-wrap: balance; }
p { text-wrap: pretty; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(64px, 9vw, 120px) 0; position: relative; }
.section--cream { background: var(--cream); }
.section--navy { background: var(--navy); color: #fff; }
.section--tight { padding-top: clamp(48px, 6vw, 80px); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold-600);
}
.section--navy .eyebrow { color: var(--gold); }
.eyebrow::before { content: ""; width: 22px; height: 2px; background: currentColor; border-radius: 2px; }

.section-head { max-width: 760px; margin: 0 auto clamp(40px, 5vw, 64px); text-align: center; }
.section-head.left { text-align: left; margin-left: 0; }
.section-head h2 { font-size: clamp(28px, 4vw, 44px); margin: 16px 0 0; }
.section-head p { font-size: clamp(17px, 1.5vw, 20px); color: var(--gray); margin-top: 18px; }
.section--navy .section-head p { color: rgba(255,255,255,.78); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 700; font-size: 16px; letter-spacing: -0.01em;
  padding: 15px 26px; border-radius: 999px; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s;
  white-space: nowrap; cursor: pointer;
}
.btn svg { width: 18px; height: 18px; }
.btn--gold { background: var(--gold); color: #fff; box-shadow: var(--shadow-gold); }
.btn--gold:hover { background: var(--gold-600); transform: translateY(-2px); }
.btn--lg { padding: 18px 34px; font-size: 17.5px; }
.btn--navy { background: var(--navy); color: #fff; }
.btn--navy:hover { background: var(--navy-700); transform: translateY(-2px); }
.btn--ghost-light { background: rgba(255,255,255,.08); color: #fff; border: 1px solid rgba(255,255,255,.22); backdrop-filter: blur(6px); }
.btn--ghost-light:hover { background: rgba(255,255,255,.16); }
.btn--outline { border: 1.5px solid var(--line); color: var(--navy); background: #fff; }
.btn--outline:hover { border-color: var(--navy); }

.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; color: var(--navy);
  transition: gap .25s var(--ease);
}
.link-arrow svg { width: 18px; height: 18px; transition: transform .25s var(--ease); }
.link-arrow:hover { gap: 12px; }
.section--navy .link-arrow { color: var(--gold); }

/* ---------- Pills / badges ---------- */
.pill {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 8px 16px; border-radius: 999px; font-size: 13.5px; font-weight: 700;
  letter-spacing: .01em;
}
.pill--gold { background: rgba(201,147,42,.16); color: var(--gold-600); }
.pill--glass { background: rgba(201,147,42,.16); color: #f0d49a; border: 1px solid rgba(201,147,42,.3); }
.pill--new { background: var(--gold); color: #fff; }
.pill .dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; }

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(13,30,59,.0);
  transition: background .3s var(--ease), box-shadow .3s var(--ease), backdrop-filter .3s;
}
.nav.scrolled {
  background: rgba(13,30,59,.92);
  backdrop-filter: saturate(1.4) blur(14px);
  box-shadow: 0 1px 0 rgba(255,255,255,.06), 0 8px 30px -10px rgba(0,0,0,.4);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.nav__logo img { height: 30px; width: auto; }
.nav__links { display: flex; align-items: center; gap: 34px; }
.nav__links a {
  color: rgba(255,255,255,.82); font-weight: 600; font-size: 15.5px; position: relative;
  transition: color .2s;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0; background: var(--gold);
  transition: width .25s var(--ease);
}
.nav__links a:hover { color: #fff; }
.nav__links a:hover::after { width: 100%; }
.nav__cta { display: flex; align-items: center; gap: 14px; }
.nav__burger { display: none; flex-direction: column; gap: 5px; padding: 10px; }
.nav__burger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: transform .3s var(--ease), opacity .2s; }
.nav.open .nav__burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.open .nav__burger span:nth-child(2) { opacity: 0; }
.nav.open .nav__burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  position: fixed; inset: 76px 0 auto 0; background: rgba(13,30,59,.98); backdrop-filter: blur(14px);
  padding: 24px; display: none; flex-direction: column; gap: 4px;
  border-top: 1px solid rgba(255,255,255,.08);
  transform: translateY(-12px); opacity: 0; transition: transform .3s var(--ease), opacity .3s;
}
.nav.open .nav__mobile { display: flex; transform: translateY(0); opacity: 1; }
.nav__mobile a { color: #fff; font-weight: 600; font-size: 18px; padding: 14px 10px; border-radius: 10px; }
.nav__mobile a:hover { background: rgba(255,255,255,.06); }
.nav__mobile .btn { margin-top: 12px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(165deg, var(--dark-start) 0%, var(--dark-end) 100%);
  color: #fff; padding: 150px 0 clamp(70px, 9vw, 120px);
}
.hero__mesh {
  position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image: radial-gradient(rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(120% 90% at 70% 0%, #000 40%, transparent 75%);
          mask-image: radial-gradient(120% 90% at 70% 0%, #000 40%, transparent 75%);
}
.hero__glow {
  position: absolute; width: 620px; height: 620px; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(201,147,42,.22), transparent 65%);
  top: -160px; right: -120px; filter: blur(10px);
}
.hero__inner {
  position: relative; display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(30px, 4vw, 64px);
  align-items: center;
}
.hero__copy { max-width: 600px; }
.hero h1 { font-size: clamp(34px, 4.6vw, 58px); line-height: 1.04; margin: 24px 0 0; font-weight: 800; }
.hero h1 .accent { color: var(--gold); }
.hero__sub { font-size: clamp(17px, 1.6vw, 20px); color: rgba(255,255,255,.82); margin-top: 22px; max-width: 540px; }
.hero__ctas { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin-top: 34px; }
.hero__ctas .link-arrow { color: #fff; }
.hero__ctas .link-arrow svg { transform: rotate(90deg); }
.hero__proof { display: flex; flex-wrap: wrap; gap: 18px 26px; margin-top: 30px; color: rgba(255,255,255,.72); font-size: 14.5px; font-weight: 500; }
.hero__proof span { display: inline-flex; align-items: center; gap: 8px; }
.hero__proof svg { width: 17px; height: 17px; color: var(--gold); }

/* Hero mockup */
.hero__visual { position: relative; }
.mock-window {
  background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  overflow: hidden; color: var(--ink); border: 1px solid rgba(255,255,255,.5);
}
.mock-bar { display: flex; align-items: center; gap: 7px; padding: 13px 16px; border-bottom: 1px solid var(--line-soft); background: #fbfaf7; }
.mock-bar i { width: 11px; height: 11px; border-radius: 50%; background: #e0ddd3; display: block; }
.mock-bar i:nth-child(1){ background:#f0c0bc;} .mock-bar i:nth-child(2){ background:#f3e1b4;} .mock-bar i:nth-child(3){ background:#bfe3c6;}
.mock-bar .mock-url { margin-left: 10px; font-size: 12px; color: var(--gray-400); font-family: var(--mono); }

.dash { padding: 18px; display: grid; grid-template-columns: 1.35fr 1fr; gap: 16px; }
.dash__cal { }
.dash__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.dash__head strong { font-size: 15px; }
.dash__head .nav-mini { display: flex; gap: 6px; color: var(--gray-400); }
.dash__head .nav-mini span { width: 22px; height: 22px; border-radius: 6px; background: var(--cream); display: grid; place-items: center; font-size: 12px; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 5px; }
.cal-grid .dow { font-size: 10px; font-weight: 700; color: var(--gray-400); text-align: center; padding-bottom: 2px; }
.cal-cell { aspect-ratio: 1; border-radius: 7px; display: grid; place-items: center; font-size: 11.5px; font-weight: 600; background: var(--cream); color: var(--gray); }
.cal-cell.is-green { background: rgba(22,163,74,.14); color: #137a39; }
.cal-cell.is-amber { background: rgba(217,119,6,.16); color: #a85d05; }
.cal-cell.is-red { background: rgba(220,38,38,.13); color: #b91c1c; }
.cal-cell.is-off { color: #c7cdd6; background: #f4f3ef; }
.cal-cell.is-sel { outline: 2px solid var(--navy); outline-offset: 1px; color: var(--navy); }

.dash__side { background: var(--cream); border-radius: 14px; padding: 14px; }
.dash__side h5 { font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: var(--gray-400); margin-bottom: 10px; font-weight: 700; }
.slot { display: flex; align-items: center; justify-content: space-between; background: #fff; border: 1px solid var(--line-soft); border-radius: 9px; padding: 9px 11px; margin-bottom: 8px; }
.slot small { font-weight: 700; font-size: 13px; }
.slot .tag { font-size: 10.5px; font-weight: 700; padding: 3px 8px; border-radius: 999px; }
.tag.g { background: rgba(22,163,74,.14); color: #137a39; }
.tag.a { background: rgba(217,119,6,.16); color: #a85d05; }
.tag.r { background: rgba(220,38,38,.12); color: #b91c1c; }
.dash__stat { margin-top: 4px; background: var(--navy); color: #fff; border-radius: 11px; padding: 12px; }
.dash__stat b { font-size: 22px; display: block; letter-spacing: -.02em; }
.dash__stat span { font-size: 11.5px; color: rgba(255,255,255,.7); }

.float-badge {
  position: absolute; left: -22px; bottom: 28px;
  display: flex; align-items: center; gap: 12px;
  background: rgba(13,26,54,.82); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.16); border-radius: 16px; padding: 13px 18px; color: #fff;
  box-shadow: var(--shadow-lg);
}
.float-badge .ico { width: 38px; height: 38px; border-radius: 11px; background: var(--gold); display: grid; place-items: center; }
.float-badge .ico svg { width: 21px; height: 21px; color: #fff; }
.float-badge b { display: block; font-size: 14.5px; }
.float-badge span { font-size: 12px; color: rgba(255,255,255,.72); }

.float-badge--tr {
  left: auto; right: -18px; top: 30px; bottom: auto;
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust { background: #fff; border-bottom: 1px solid var(--line-soft); padding: 30px 0; }
.trust__inner { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 14px 30px; }
.trust__label { font-size: 13.5px; font-weight: 700; color: var(--gray-400); }
.trust__logos { display: flex; align-items: center; flex-wrap: wrap; gap: 10px 26px; }
.brandmark { font-weight: 800; font-size: 19px; color: #9aa1ad; letter-spacing: -.02em; transition: color .2s; }
.brandmark:hover { color: var(--navy); }
.trust__sep { width: 1px; height: 22px; background: var(--line); }
.trust__note { text-align: center; color: var(--gray-400); font-size: 13.5px; margin-top: 16px; }

/* ============================================================
   PAIN POINTS
   ============================================================ */
.pain-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 980px; margin: 0 auto; }
.pain-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px;
  box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.pain-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.pain-card .ico {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 18px;
  background: rgba(220,38,38,.08); color: var(--red);
}
.pain-card .ico svg { width: 26px; height: 26px; }
.pain-card h3 { font-size: 19px; margin-bottom: 8px; }
.pain-card p { color: var(--gray); font-size: 15.5px; }
.pain-close {
  text-align: center; max-width: 720px; margin: clamp(36px,5vw,52px) auto 0;
}
.pain-close p { font-size: clamp(20px, 2.4vw, 27px); font-weight: 700; color: var(--navy); letter-spacing: -.02em; line-height: 1.3; }
.pain-close p .accent { color: var(--gold-600); }
.pain-close .link-arrow { margin-top: 22px; }

/* ============================================================
   FEATURE ROWS (showcase)
   ============================================================ */
.feature-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 80px); align-items: center;
  padding: clamp(36px, 5vw, 56px) 0;
}
.feature-row + .feature-row { border-top: 1px solid var(--line-soft); }
.feature-row.flip .feature-row__media { order: -1; }
.feature-row__copy h3 { font-size: clamp(24px, 2.8vw, 34px); margin: 16px 0 0; }
.feature-row__copy > p { color: var(--gray); margin-top: 14px; font-size: 17px; }
.feat-list { margin-top: 22px; display: grid; gap: 13px; }
.feat-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink); font-size: 15.5px; }
.feat-list .ck { flex: none; width: 22px; height: 22px; border-radius: 7px; background: rgba(27,52,97,.08); color: var(--navy); display: grid; place-items: center; margin-top: 1px; }
.feat-list .ck svg { width: 14px; height: 14px; }
.feature-row .pill { margin-bottom: 8px; }
.feature-row__copy .link-arrow { margin-top: 24px; }

/* ============================================================
   FEATURE CARDS (3-up: E, F, G)
   ============================================================ */
.fcards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 8px; }
.fcard {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px;
  box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.fcard:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.fcard .ico { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 18px; background: rgba(27,52,97,.07); color: var(--navy); }
.fcard .ico svg { width: 26px; height: 26px; }
.fcard h3 { font-size: 20px; margin-bottom: 10px; }
.fcard p { color: var(--gray); font-size: 15px; margin-bottom: 14px; }
.fcard ul { display: grid; gap: 8px; }
.fcard li { display: flex; gap: 9px; font-size: 14px; color: var(--ink); align-items: flex-start; }
.fcard li svg { flex: none; width: 16px; height: 16px; color: var(--gold-600); margin-top: 3px; }

/* ============================================================
   MOCKUPS (feature media)
   ============================================================ */
.media-frame { position: relative; }
.media-frame .glow-tag {
  position: absolute; z-index: 3; background: #fff; border-radius: 13px; box-shadow: var(--shadow-lg);
  padding: 11px 14px; display: flex; align-items: center; gap: 10px; border: 1px solid var(--line-soft);
}
.media-frame .glow-tag .ico { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; }
.media-frame .glow-tag svg { width: 18px; height: 18px; }
.media-frame .glow-tag b { font-size: 13.5px; white-space: nowrap; }
.media-frame .glow-tag span { font-size: 11px; color: var(--gray-400); display: block; }

/* phone mock */
.phone {
  width: 248px; background: #0D1E3B; border-radius: 34px; padding: 9px; box-shadow: var(--shadow-lg); margin: 0 auto;
}
.phone__screen { background: #fff; border-radius: 26px; overflow: hidden; }
.phone__notch { height: 22px; display: grid; place-items: center; }
.phone__notch::after { content:""; width: 70px; height: 6px; border-radius: 99px; background: rgba(255,255,255,.25); }
.rf-head { padding: 0 16px 14px; }
.rf-head .biz { display: flex; align-items: center; gap: 9px; }
.rf-head .biz .lg { width: 30px; height: 30px; border-radius: 8px; background: var(--navy); color:#fff; display:grid; place-items:center; font-weight:800; font-size:15px; }
.rf-head .biz > div { display: flex; flex-direction: column; line-height: 1.25; }
.rf-head .biz b { display: block; font-size: 14px; }
.rf-head .biz span { display: block; font-size: 11px; color: var(--gray-400); margin-top: 1px; }
.rf-body { padding: 4px 16px 18px; }
.rf-label { font-size: 11px; font-weight: 700; color: var(--gray-400); text-transform: uppercase; letter-spacing: .06em; margin: 12px 0 7px; }
.rf-field { border: 1px solid var(--line); border-radius: 10px; padding: 10px 12px; font-size: 13px; color: var(--ink); display: flex; align-items: center; justify-content: space-between; }
.rf-field.muted { color: var(--gray-400); }
.rf-chips { display: flex; gap: 7px; flex-wrap: wrap; }
.rf-chip { font-size: 12px; font-weight: 700; padding: 8px 12px; border-radius: 9px; border: 1px solid var(--line); color: var(--gray); }
.rf-chip.on { background: var(--navy); color: #fff; border-color: var(--navy); }
.rf-cta { margin-top: 14px; background: var(--gold); color: #fff; text-align: center; padding: 12px; border-radius: 11px; font-weight: 700; font-size: 14px; }

/* QR ticket */
.ticket {
  background: #fff; border-radius: 18px; box-shadow: var(--shadow); overflow: hidden; border: 1px solid var(--line-soft);
  max-width: 340px; margin: 0 auto;
}
.ticket__top { background: linear-gradient(150deg, var(--dark-start), var(--navy)); color: #fff; padding: 20px 22px; }
.ticket__top .pill { background: rgba(201,147,42,.2); color: #f0d49a; margin-bottom: 12px; }
.ticket__top h4 { font-size: 19px; }
.ticket__top span { font-size: 13px; color: rgba(255,255,255,.7); }
.ticket__body { padding: 22px; display: grid; grid-template-columns: auto 1fr; gap: 18px; align-items: center; }
.qr { width: 96px; height: 96px; border-radius: 12px; background:
  conic-gradient(#0D1E3B 0 0); padding: 8px; }
.qr svg { width: 100%; height: 100%; }
.ticket__meta div { margin-bottom: 9px; }
.ticket__meta small { font-size: 10.5px; text-transform: uppercase; letter-spacing: .06em; color: var(--gray-400); font-weight: 700; display:block; }
.ticket__meta b { font-size: 14px; }
.ticket__code { font-family: var(--mono); font-size: 12px; color: var(--navy); }
.ticket__perf { border-top: 2px dashed var(--line); position: relative; }
.ticket__valid { padding: 14px 22px; display: flex; align-items: center; gap: 10px; color: var(--green); font-weight: 700; font-size: 13.5px; background: rgba(22,163,74,.05); }
.ticket__valid svg { width: 20px; height: 20px; }

/* payments */
.pay-stack { display: grid; gap: 14px; max-width: 380px; }
.pay-card { display: flex; align-items: center; gap: 16px; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 16px 18px; box-shadow: var(--shadow-sm); }
.pay-card .pico { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; font-weight: 800; font-size: 14px; color: #fff; }
.pay-card b { font-size: 15.5px; }
.pay-card p { font-size: 13px; color: var(--gray); }
.pay-card .chk { margin-left: auto; color: var(--green); }
.pay-card .chk svg { width: 22px; height: 22px; }

/* ============================================================
   SECTORS (navy)
   ============================================================ */
.sector-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.sector-card {
  background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-lg);
  padding: 32px; transition: transform .3s var(--ease), background .3s, border-color .3s;
}
.sector-card:hover { transform: translateY(-5px); background: rgba(255,255,255,.07); border-color: rgba(201,147,42,.4); }
.sector-card .ico { width: 56px; height: 56px; border-radius: 15px; background: var(--gold); display: grid; place-items: center; margin-bottom: 20px; }
.sector-card .ico svg { width: 28px; height: 28px; color: #fff; }
.sector-card h3 { font-size: 21px; margin-bottom: 16px; }
.sector-card ul { display: grid; gap: 11px; }
.sector-card li { display: flex; gap: 11px; font-size: 15px; color: rgba(255,255,255,.82); align-items: flex-start; }
.sector-card li svg { flex: none; width: 18px; height: 18px; color: var(--gold); margin-top: 3px; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; position: relative; }
.step { position: relative; }
.step__num {
  font-size: 15px; font-weight: 800; color: var(--gold-600); letter-spacing: .1em;
  display: inline-flex; align-items: center; gap: 12px; margin-bottom: 18px;
}
.step__num .dotline { width: 42px; height: 1.5px; background: var(--line); }
.step .ico { width: 60px; height: 60px; border-radius: 16px; background: var(--cream); display: grid; place-items: center; margin-bottom: 18px; color: var(--navy); border: 1px solid var(--line-soft); }
.step .ico svg { width: 28px; height: 28px; }
.step h3 { font-size: 21px; margin-bottom: 10px; }
.step p { color: var(--gray); font-size: 15.5px; }
.how-cta { text-align: center; margin-top: clamp(40px,5vw,56px); }
.how-cta p { font-size: 21px; font-weight: 700; color: var(--navy); margin-bottom: 20px; }

/* ============================================================
   IA SECTION
   ============================================================ */
.ia { background: linear-gradient(180deg, var(--cream), #fff); position: relative; overflow: hidden; }
.ia__blob { position: absolute; pointer-events: none; border-radius: 50%; filter: blur(40px); opacity: .5; }
.ia__blob.b1 { width: 380px; height: 380px; background: radial-gradient(circle, rgba(27,52,97,.18), transparent 70%); top: -80px; left: -100px; }
.ia__blob.b2 { width: 420px; height: 420px; background: radial-gradient(circle, rgba(201,147,42,.18), transparent 70%); bottom: -120px; right: -120px; }
.ia__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; position: relative; }
.ia-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); }
.ia-card .ico { width: 50px; height: 50px; border-radius: 13px; display: grid; place-items: center; margin-bottom: 16px; background: var(--navy); color: #fff; }
.ia-card .ico svg { width: 25px; height: 25px; }
.ia-card h3 { font-size: 19px; margin-bottom: 10px; }
.ia-card p { color: var(--gray); font-size: 14.5px; margin-bottom: 14px; }
.ia-card ul { display: grid; gap: 9px; }
.ia-card li { display: flex; gap: 9px; font-size: 14px; align-items: flex-start; }
.ia-card li svg { flex: none; width: 16px; height: 16px; color: var(--gold-600); margin-top: 3px; }

/* mini chat + gauge inside ia cards */
.chat-mini { background: var(--cream); border-radius: 12px; padding: 12px; margin-bottom: 14px; display: grid; gap: 8px; }
.bubble { font-size: 12.5px; padding: 8px 11px; border-radius: 12px; max-width: 85%; line-height: 1.5; }
.bubble.user { background: var(--navy); color: #fff; margin-left: auto; border-bottom-right-radius: 4px; }
.bubble.bot { background: #fff; border: 1px solid var(--line-soft); border-bottom-left-radius: 4px; }
.nl-q { background: var(--cream); border-radius: 12px; padding: 14px; margin-bottom: 14px; }
.nl-q .q { font-size: 13px; font-style: italic; color: var(--navy); font-weight: 600; margin-bottom: 8px; }
.nl-q .a { font-size: 13px; color: var(--gray); }
.nl-q .a b { color: var(--ink); }
.gauge { display: flex; align-items: center; gap: 14px; background: var(--cream); border-radius: 12px; padding: 14px; margin-bottom: 14px; }
.gauge__ring { --val: 22; width: 64px; height: 64px; border-radius: 50%; flex: none;
  background: conic-gradient(var(--green) calc(var(--val)*1%), #e7ece6 0);
  display: grid; place-items: center; position: relative; }
.gauge__ring::after { content: ""; position: absolute; inset: 7px; background: var(--cream); border-radius: 50%; }
.gauge__ring b { position: relative; z-index: 1; font-size: 16px; color: var(--green); }
.gauge__txt b { font-size: 13.5px; display: block; }
.gauge__txt span { font-size: 12px; color: var(--gray); }
.ia__note { text-align: center; color: var(--gray); font-size: 14px; margin-top: 34px; position: relative; }
.ia__note .mono { font-family: var(--mono); font-size: 13px; color: var(--navy); }

/* ============================================================
   COMPARISON TABLE
   ============================================================ */
.compare-wrap { max-width: 880px; margin: 0 auto; }
.compare {
  width: 100%; border-collapse: separate; border-spacing: 0; background: #fff;
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line);
}
.compare th, .compare td { padding: 16px 20px; text-align: left; font-size: 15px; border-bottom: 1px solid var(--line-soft); }
.compare thead th { background: #fff; font-weight: 700; }
.compare thead th:nth-child(2), .compare thead th:nth-child(3) { text-align: center; }
.compare thead th:nth-child(3) { background: var(--navy); color: #fff; position: relative; }
.compare tbody td:nth-child(2), .compare td:nth-child(2), .compare td:nth-child(3) { text-align: center; }
.compare td:nth-child(3) { background: rgba(201,147,42,.05); }
.compare tr:last-child td { border-bottom: none; }
.compare .feat-name { font-weight: 600; color: var(--ink); }
.compare .yes { color: var(--green); }
.compare .no { color: #cbd0d8; }
.compare .partial { color: var(--amber); font-size: 13px; font-weight: 700; }
.compare svg { width: 22px; height: 22px; display: inline-block; vertical-align: middle; }
.compare .colhead-brand { display: inline-flex; align-items: center; gap: 7px; justify-content: center; font-weight: 800; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.tgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.tcard { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.tcard .stars { display: flex; gap: 3px; color: var(--gold); margin-bottom: 14px; }
.tcard .stars svg { width: 18px; height: 18px; }
.tcard blockquote { font-size: 16px; color: var(--ink); line-height: 1.6; flex: 1; }
.tcard .who { display: flex; align-items: center; gap: 13px; margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line-soft); }
.tcard .ava { width: 46px; height: 46px; border-radius: 50%; flex: none; background: var(--cream); display: grid; place-items: center; color: var(--navy); font-weight: 800; border: 1px solid var(--line); }
.tcard .who b { font-size: 14.5px; display: block; }
.tcard .who span { font-size: 13px; color: var(--gray); }
.t-note { text-align: center; font-size: 13px; color: var(--gray-400); margin-top: 26px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 4px; text-align: left; font-weight: 700; font-size: 17.5px; color: var(--ink); }
.faq-q .ico { flex: none; width: 28px; height: 28px; border-radius: 8px; background: var(--cream); display: grid; place-items: center; color: var(--navy); transition: transform .3s var(--ease), background .3s; }
.faq-q .ico svg { width: 18px; height: 18px; }
.faq-item.open .faq-q .ico { background: var(--gold); color: #fff; transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-a__inner { padding: 0 4px 24px; color: var(--gray); font-size: 16px; max-width: 680px; }

/* ============================================================
   FINAL CTA + FORM
   ============================================================ */
.final {
  background: linear-gradient(165deg, var(--dark-start), var(--dark-end));
  color: #fff; position: relative; overflow: hidden;
}
.final__mesh { position: absolute; inset: 0; opacity: .4; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,.07) 1px, transparent 1px); background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(100% 80% at 20% 0%, #000 30%, transparent 70%);
          mask-image: radial-gradient(100% 80% at 20% 0%, #000 30%, transparent 70%); }
.final__inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 70px); align-items: center; position: relative; }
.final__copy h2 { font-size: clamp(28px, 3.6vw, 42px); }
.final__copy p { color: rgba(255,255,255,.8); font-size: 18px; margin-top: 18px; max-width: 460px; }
.final__bullets { margin-top: 26px; display: grid; gap: 12px; }
.final__bullets li { display: flex; gap: 12px; align-items: center; color: rgba(255,255,255,.9); font-weight: 500; }
.final__bullets svg { width: 20px; height: 20px; color: var(--gold); flex: none; }

.form-card { background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: clamp(26px, 3vw, 38px); color: var(--ink); }
.form-card h3 { font-size: 22px; }
.form-card > p { color: var(--gray); font-size: 14.5px; margin-top: 6px; margin-bottom: 22px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13.5px; font-weight: 700; margin-bottom: 7px; color: var(--ink); }
.field input, .field select {
  width: 100%; font: inherit; font-size: 15px; padding: 13px 15px; border: 1.5px solid var(--line);
  border-radius: 11px; background: #fff; color: var(--ink); transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus { outline: none; border-color: var(--navy); box-shadow: 0 0 0 4px rgba(27,52,97,.1); }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%234B5563' stroke-width='2.2' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-card .btn { width: 100%; margin-top: 8px; }
.form-note { text-align: center; font-size: 12.5px; color: var(--gray-400); margin-top: 14px; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-error {
  display: none; margin-top: 14px; padding: 12px 14px; border-radius: 10px;
  background: rgba(220,38,38,.08); border: 1px solid rgba(220,38,38,.25);
  color: #b91c1c; font-size: 13.5px; font-weight: 600; text-align: center;
}
button[type="submit"]:disabled { opacity: .7; cursor: progress; }
.form-success { text-align: center; padding: 30px 10px; display: none; }
.form-success.show { display: block; }
.form-success .ico { width: 64px; height: 64px; border-radius: 50%; background: rgba(22,163,74,.12); color: var(--green); display: grid; place-items: center; margin: 0 auto 18px; }
.form-success .ico svg { width: 34px; height: 34px; }
.form-success h3 { margin-bottom: 8px; }
.form-success p { color: var(--gray); font-size: 15px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--dark-start); color: rgba(255,255,255,.7); padding: 64px 0 30px; }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer__brand img { height: 30px; margin-bottom: 16px; }
.footer__brand p { font-size: 14.5px; max-width: 280px; }
.footer__social { display: flex; gap: 10px; margin-top: 20px; }
.footer__social a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.07); display: grid; place-items: center; transition: background .2s; }
.footer__social a:hover { background: var(--gold); }
.footer__social svg { width: 18px; height: 18px; color: #fff; }
.footer__col h5 { color: #fff; font-size: 14px; font-weight: 700; margin-bottom: 16px; letter-spacing: .02em; }
.footer__col a { display: block; padding: 6px 0; font-size: 14.5px; transition: color .2s; }
.footer__col a:hover { color: var(--gold); }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; padding-top: 26px; font-size: 13.5px; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { max-width: 560px; margin-top: 8px; }
  .ia__cols, .sector-grid, .steps, .tgrid, .fcards { grid-template-columns: 1fr 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 30px; }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  .nav__links { display: none; }
  .nav__cta .btn { display: none; }
  .nav__burger { display: flex; }
  .hero { padding-top: 120px; }
  .pain-grid, .ia__cols, .sector-grid, .steps, .tgrid, .fcards { grid-template-columns: 1fr; }
  .feature-row { grid-template-columns: 1fr; gap: 30px; }
  .feature-row.flip .feature-row__media { order: 0; }
  .final__inner { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .float-badge { left: 8px; }
  .float-badge--tr { right: 8px; left: auto; }
  .compare-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .compare { min-width: 560px; }
}
@media (max-width: 460px) {
  .footer__top { grid-template-columns: 1fr; }
  .hero__visual .float-badge span { display: none; }
}
