/* ── Tokens ── */
:root {
  --sky:    #0ea5e9;
  --sky-d:  #0284c7;
  --night:  #07080f;
  --night2: #0d1528;
  --night3: #111e3d;
  --ink:    #0f172a;
  --ink-2:  #1e293b;
  --muted:  #64748b;
  --line:   #e2e8f0;
  --canvas: #f8fafc;
  --white:  #ffffff;
  --orange: #f97316;
  --green:  #10b981;
  --purple: #8b5cf6;
  --grad:   linear-gradient(135deg, #0ea5e9, #06b6d4);
  --r-sm:   12px;
  --r-md:   18px;
  --r-lg:   24px;
  --r-xl:   32px;
  --shadow-sm:  0 2px 8px rgba(15,23,42,.06);
  --shadow-md:  0 8px 32px rgba(15,23,42,.10);
  --shadow-lg:  0 24px 64px rgba(15,23,42,.14);
  --shadow-sky: 0 16px 48px rgba(14,165,233,.20);
}

/* ── Reset ── */
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { margin: 0; background: var(--white); color: var(--ink); font-family: "Plus Jakarta Sans", "Inter", system-ui, sans-serif; -webkit-font-smoothing: antialiased; }
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; cursor: pointer; }
h1,h2,h3,h4,p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

/* ── Shell ── */
.shell { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }

/* ── Reveal ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .24s; }
.delay-3 { transition-delay: .36s; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 26px; border-radius: 999px;
  font-size: 15px; font-weight: 700; border: 2px solid transparent;
  transition: background .15s, border-color .15s, color .15s, box-shadow .15s, transform .12s;
  white-space: nowrap; cursor: pointer;
}
.btn:active { transform: scale(.97); }
.btn-sky { background: var(--sky); color: #fff; }
.btn-sky:hover { background: var(--sky-d); box-shadow: var(--shadow-sky); }
.btn-outline { background: transparent; border-color: rgba(255,255,255,.28); color: #fff; }
.btn-outline:hover { background: rgba(255,255,255,.12); }
.btn-outline-dark { background: transparent; border-color: var(--line); color: var(--ink); }
.btn-outline-dark:hover { border-color: var(--sky); color: var(--sky); }
.w-full { width: 100%; }

/* ── Sec headings ── */
.sec-label { font-size: 11px; font-weight: 800; letter-spacing: .22em; text-transform: uppercase; color: var(--sky); margin-bottom: 14px; }
.sec-label.light { color: rgba(255,255,255,.5); }
.sec-head { margin-bottom: 56px; }
.sec-head h2 { font-size: clamp(34px, 5vw, 58px); font-weight: 900; letter-spacing: -.04em; line-height: .95; margin-bottom: 18px; color: var(--ink); }
.sec-head p { max-width: 560px; color: var(--muted); font-size: 17px; line-height: 1.72; }
.sec-head--light h2,.sec-head h2.light { color: #fff; }
.sec-head--light p,.sec-head p.light { color: rgba(255,255,255,.6); }

/* ══ NAV ══ */
.nav {
  position: fixed; top: 16px; left: 50%; z-index: 100;
  transform: translateX(-50%);
  width: min(1160px, calc(100% - 24px));
  transition: background .2s, box-shadow .2s;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: rgba(7,8,15,.86); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.10); border-radius: 999px;
  padding: 8px 10px 8px 16px; color: #fff;
}
.nav-brand { display: flex; align-items: center; gap: 11px; }
.nav-brand-text strong { display: block; font-size: 15px; font-weight: 800; letter-spacing: -.03em; line-height: 1.1; color: #fff; }
.nav-brand-text span { display: block; font-size: 10px; color: rgba(255,255,255,.42); letter-spacing: .08em; margin-top: 2px; }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a { padding: 9px 13px; border-radius: 999px; font-size: 14px; font-weight: 600; color: rgba(255,255,255,.72); transition: background .14s, color .14s; }
.nav-links a:hover { background: rgba(255,255,255,.09); color: #fff; }
.nav-cta { background: var(--sky) !important; color: #fff !important; font-weight: 700 !important; padding: 9px 20px !important; }
.nav-cta:hover { background: var(--sky-d) !important; }
.nav-burger { display: none; width: 40px; height: 40px; border: 0; border-radius: 999px; background: rgba(255,255,255,.10); flex-direction: column; align-items: center; justify-content: center; color: #fff; }

/* ══ HERO ══ */
.hero { background: var(--night); min-height: 100vh; padding: 100px 0 80px; position: relative; overflow: hidden; }
.hero::before {
  content: ""; pointer-events: none; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 8% 30%, rgba(14,165,233,.18) 0%, transparent 42%),
              radial-gradient(ellipse at 90% 10%, rgba(6,182,212,.12) 0%, transparent 36%);
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 60px;
  position: relative; min-height: calc(100vh - 180px);
}

/* hero copy */
.hero-pill {
  display: inline-flex; align-items: center; gap: 9px; margin-bottom: 28px;
  padding: 6px 16px; border-radius: 999px;
  background: rgba(14,165,233,.12); border: 1px solid rgba(14,165,233,.25);
  font-size: 12px; font-weight: 700; color: var(--sky); letter-spacing: .06em;
}
.pill-dot { width: 7px; height: 7px; border-radius: 999px; background: var(--sky); animation: pulse-dot 2s ease-in-out infinite; }
@keyframes pulse-dot { 0%,100%{opacity:1} 50%{opacity:.3} }
.hero-copy h1 { font-size: clamp(52px, 6.5vw, 92px); font-weight: 900; line-height: .88; letter-spacing: -.055em; color: #fff; margin-bottom: 28px; }
.hero-desc { font-size: 18px; line-height: 1.76; color: rgba(255,255,255,.65); max-width: 520px; margin-bottom: 36px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 44px; }
.hero-metrics { display: flex; align-items: center; gap: 0; }
.hm { padding: 0 20px; text-align: center; }
.hm:first-child { padding-left: 0; }
.hm strong { display: block; font-size: 28px; font-weight: 900; color: #fff; letter-spacing: -.04em; line-height: 1; }
.hm span { display: block; font-size: 11.5px; color: rgba(255,255,255,.45); margin-top: 4px; font-weight: 500; }
.hm-sep { width: 1px; height: 36px; background: rgba(255,255,255,.12); flex-shrink: 0; }

/* hero media */
.hero-media { position: relative; height: 600px; }
.hero-photo-wrap { position: absolute; inset: 0; border-radius: var(--r-xl); overflow: hidden; }
.hero-photo { width: 100%; height: 100%; object-fit: cover; }
.hero-photo-tint { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(7,8,15,.55) 0%, rgba(7,8,15,.2) 100%); }

/* floating panel */
.floating-panel {
  position: absolute; bottom: 24px; left: -32px;
  width: 340px; border-radius: var(--r-lg);
  background: var(--night2); border: 1px solid rgba(255,255,255,.09);
  box-shadow: 0 40px 100px rgba(0,0,0,.6);
  overflow: hidden; z-index: 2;
}
.fp-bar {
  display: flex; align-items: center; gap: 6px; padding: 10px 14px;
  background: rgba(255,255,255,.035); border-bottom: 1px solid rgba(255,255,255,.06);
}
.fp-dot { width: 10px; height: 10px; border-radius: 999px; flex-shrink: 0; }
.fp-dot.red { background: #ef4444; }
.fp-dot.amber { background: #f59e0b; }
.fp-dot.green { background: #22c55e; }
.fp-title { margin-left: 4px; font-size: 11.5px; font-weight: 700; color: rgba(255,255,255,.45); flex: 1; letter-spacing: .04em; }
.fp-live { display: flex; align-items: center; gap: 5px; font-size: 10.5px; font-weight: 700; color: #22c55e; }
.live-blink { width: 6px; height: 6px; border-radius: 999px; background: #22c55e; animation: pulse-dot 1.5s ease-in-out infinite; }
.fp-body { padding: 12px; display: flex; flex-direction: column; gap: 8px; }
.fp-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 6px; }
.fps { background: rgba(255,255,255,.04); border-radius: 8px; padding: 9px 10px; text-align: center; }
.fps strong { display: block; font-size: 17px; font-weight: 900; color: var(--sky); letter-spacing: -.04em; line-height: 1; }
.fps span { font-size: 9.5px; color: rgba(255,255,255,.4); margin-top: 3px; display: block; }
.fps.green strong { color: var(--green); }
.fp-order { background: var(--night3); border: 1px solid rgba(255,255,255,.07); border-radius: 10px; padding: 11px 13px; }
.fo-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.fo-id { font-size: 11px; font-weight: 800; color: var(--sky); }
.fo-badge { font-size: 9.5px; font-weight: 700; padding: 3px 8px; border-radius: 999px; }
.fo-badge--new { background: rgba(249,115,22,.15); color: var(--orange); }
.fo-badge--prep { background: rgba(245,158,11,.15); color: #f59e0b; }
.fo-items { font-size: 11.5px; color: rgba(255,255,255,.55); line-height: 1.6; }
.fo-foot { display: flex; justify-content: space-between; margin-top: 7px; padding-top: 7px; border-top: 1px solid rgba(255,255,255,.06); }
.fo-foot span { font-size: 11px; color: rgba(255,255,255,.7); font-weight: 600; }
.fo-foot span:last-child { color: rgba(255,255,255,.35); font-weight: 400; }
.fp-driver { display: flex; align-items: center; gap: 9px; background: rgba(14,165,233,.07); border: 1px solid rgba(14,165,233,.14); border-radius: 9px; padding: 9px 12px; }
.fd-av { width: 30px; height: 30px; border-radius: 999px; background: var(--grad); display: grid; place-items: center; font-size: 10.5px; font-weight: 800; color: #fff; flex-shrink: 0; }
.fd-info { flex: 1; min-width: 0; }
.fd-info strong { display: block; font-size: 11.5px; font-weight: 700; color: #fff; }
.fd-info span { font-size: 10px; color: rgba(255,255,255,.4); display: block; margin-top: 2px; }
.fd-eta { font-size: 12px; font-weight: 800; color: var(--green); white-space: nowrap; }

/* ══ PROOF STRIP ══ */
.proof-strip { background: var(--canvas); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 28px 0; }
.proof-inner { display: flex; flex-wrap: wrap; align-items: center; gap: 16px 28px; justify-content: center; text-align: center; flex-direction: column; }
.proof-label { font-size: 13px; color: var(--muted); font-weight: 500; margin: 0; }
.proof-cities { display: flex; flex-wrap: wrap; gap: 8px 12px; justify-content: center; }
.proof-cities span { font-size: 14px; font-weight: 700; color: var(--ink-2); }
.proof-types { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.proof-types span { padding: 4px 14px; border-radius: 999px; background: #fff; border: 1px solid var(--line); font-size: 12px; font-weight: 700; color: var(--muted); }

/* ══ FLOW ══ */
.flow-section { padding: 100px 0; background: var(--white); }
.flow-steps { display: flex; flex-direction: column; gap: 0; }
.flow-step {
  display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 60px;
  padding: 60px 0;
  border-top: 1px solid var(--line);
}
.flow-step:nth-child(3) { grid-template-columns: 1fr 1fr; }
.flow-step:nth-child(3) .flow-photo-wrap { order: 2; }
.flow-step:nth-child(3) .flow-text { order: 1; }
.flow-step:nth-child(5) .flow-photo-wrap { order: 0; }

.flow-photo-wrap { position: relative; border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 4/3; }
.flow-photo-wrap img { width: 100%; height: 100%; object-fit: cover; }
.flow-num-badge {
  position: absolute; top: 20px; left: 20px;
  width: 48px; height: 48px; border-radius: 999px;
  background: var(--grad); color: #fff;
  display: grid; place-items: center;
  font-size: 20px; font-weight: 900; box-shadow: 0 8px 24px rgba(14,165,233,.4);
}
.flow-arrow { display: flex; justify-content: center; padding: 0; }
.flow-arrow svg { width: 24px; height: 60px; color: var(--line); }
.flow-text h3 { font-size: clamp(26px, 3.2vw, 38px); font-weight: 900; letter-spacing: -.035em; margin-bottom: 16px; line-height: 1.05; color: var(--ink); }
.flow-text p { font-size: 16px; line-height: 1.75; color: var(--muted); margin-bottom: 24px; }
.check-list { display: flex; flex-direction: column; gap: 10px; }
.check-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14.5px; color: var(--ink-2); font-weight: 600; line-height: 1.4;
}
.check-list li::before { content: ""; width: 18px; height: 18px; border-radius: 999px; background: rgba(14,165,233,.12); flex-shrink: 0; margin-top: 1px;
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='9' cy='9' r='9' fill='%230ea5e9' fill-opacity='0.12'/%3E%3Cpath d='M5 9.5L7.5 12L13 6.5' stroke='%230ea5e9' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-size: contain;
}

/* ══ MODULES ══ */
.modules-section { padding: 100px 0; background: var(--night); }
.modules-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.module-card {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-lg); padding: 32px 28px;
  display: flex; flex-direction: column; gap: 0;
  transition: background .18s, border-color .18s, transform .18s;
  position: relative;
}
.module-card:hover { background: rgba(255,255,255,.07); transform: translateY(-3px); }
.module-card--featured { background: rgba(14,165,233,.07); border-color: rgba(14,165,233,.3); }
.module-card--featured:hover { background: rgba(14,165,233,.1); }
.module-icon { width: 52px; height: 52px; border-radius: 14px; background: rgba(14,165,233,.12); display: grid; place-items: center; color: var(--sky); margin-bottom: 20px; }
.module-card--featured .module-icon { background: rgba(14,165,233,.2); }
.module-badge-top { position: absolute; top: 20px; right: 20px; background: var(--sky); color: #fff; font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; padding: 4px 12px; border-radius: 999px; }
.module-tag { display: inline-block; font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; padding: 4px 10px; border-radius: 999px; margin-bottom: 10px; background: rgba(14,165,233,.14); color: var(--sky); }
.module-tag--ent { background: rgba(139,92,246,.14); color: #a78bfa; }
.module-card h3 { font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 4px; letter-spacing: -.03em; }
.module-sub { font-size: 13px; color: rgba(255,255,255,.45); margin-bottom: 22px; font-weight: 500; }
.module-list { flex: 1; display: flex; flex-direction: column; gap: 9px; margin-bottom: 28px; }
.module-list li { font-size: 13.5px; color: rgba(255,255,255,.72); font-weight: 500; padding-left: 16px; position: relative; line-height: 1.45; }
.module-list li::before { content: "·"; position: absolute; left: 4px; color: var(--sky); font-weight: 900; }
.module-cta { display: inline-flex; align-items: center; gap: 4px; font-size: 13px; font-weight: 700; color: var(--sky); margin-top: auto; transition: opacity .15s; }
.module-cta:hover { opacity: .7; }

/* ══ HARDWARE ══ */
.hw-section { padding: 100px 0; background: var(--canvas); }
.hw-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.hw-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-sm); }
.hw-card--feat { border-color: var(--sky); box-shadow: var(--shadow-sky); }
.hw-photo-wrap { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.hw-photo-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hw-pkg-label { position: absolute; top: 16px; left: 16px; background: rgba(15,23,42,.75); color: #fff; font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; padding: 5px 14px; border-radius: 999px; backdrop-filter: blur(8px); }
.hw-pkg-label--feat { background: var(--sky); }
.hw-info { padding: 28px 28px 32px; }
.hw-info h3 { font-size: 26px; font-weight: 900; letter-spacing: -.04em; color: var(--ink); margin-bottom: 4px; }
.hw-subtitle { font-size: 14px; color: var(--muted); font-weight: 500; margin-bottom: 12px; }
.hw-desc { font-size: 14px; color: var(--muted); line-height: 1.65; margin-bottom: 20px; }
.hw-specs { margin: 0 0 24px; display: flex; flex-direction: column; gap: 0; }
.spec-row { display: grid; grid-template-columns: 96px 1fr; gap: 12px; padding: 9px 0; border-bottom: 1px solid var(--line); }
.spec-row:first-child { border-top: 1px solid var(--line); }
.spec-row dt { font-size: 12px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; padding-top: 1px; }
.spec-row dd { font-size: 13px; color: var(--ink-2); line-height: 1.5; margin: 0; }
.hw-price-row { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.hw-price { font-size: 30px; font-weight: 900; color: var(--ink); letter-spacing: -.04em; }
.hw-price span { font-size: 13px; font-weight: 500; color: var(--muted); }
.hw-note { text-align: center; font-size: 13px; color: var(--muted); margin-top: 32px; max-width: 640px; margin-inline: auto; line-height: 1.7; }

/* ══ INTEGRATIONS ══ */
.integrations-section { padding: 80px 0; background: var(--white); }
.integrations-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 16px; margin-top: 48px; }
.int-card { display: flex; flex-direction: column; align-items: center; gap: 10px; padding: 24px 16px; border-radius: var(--r-md); border: 1px solid var(--line); background: var(--white); transition: box-shadow .18s, transform .18s; cursor: default; }
.int-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.int-logo { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; font-size: 13px; font-weight: 900; color: #fff; letter-spacing: -.02em; }
.int-logo--mp     { background: linear-gradient(135deg, #009ee3, #0066cc); }
.int-logo--stripe { background: linear-gradient(135deg, #6772e5, #4f46e5); }
.int-logo--wa     { background: #25d366; }
.int-logo--sat    { background: linear-gradient(135deg, #c0392b, #96281b); font-size: 12px; }
.int-logo--rappi  { background: linear-gradient(135deg, #ff441f, #cc2200); }
.int-logo--uber   { background: linear-gradient(135deg, #06c167, #059142); font-size: 11px; }
.int-card span { font-size: 12px; font-weight: 700; color: var(--muted); text-align: center; line-height: 1.3; }

/* ══ TESTIMONIALS ══ */
.testimonials-section { padding: 100px 0; background: var(--canvas); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.tcard { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 32px; box-shadow: var(--shadow-sm); }
.tcard-stars { display: flex; gap: 3px; margin-bottom: 18px; }
.tcard blockquote { font-size: 15.5px; line-height: 1.76; color: var(--ink-2); margin: 0 0 24px; font-style: italic; }
.tcard-author { display: flex; align-items: center; gap: 12px; }
.tcard-av { width: 42px; height: 42px; border-radius: 999px; display: grid; place-items: center; font-size: 13px; font-weight: 800; color: #fff; flex-shrink: 0; }
.tcard-author strong { display: block; font-size: 14px; font-weight: 700; color: var(--ink); }
.tcard-author span { display: block; font-size: 12px; color: var(--muted); margin-top: 2px; }

/* ══ PLANS ══ */
.plans-section { padding: 100px 0; background: var(--white); }
.plans-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.plan-card { background: var(--canvas); border: 1.5px solid var(--line); border-radius: var(--r-xl); padding: 36px 30px; position: relative; }
.plan-card--featured { background: var(--night); border-color: var(--sky); color: #fff; }
.plan-badge-top { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--sky); color: #fff; font-size: 10px; font-weight: 800; letter-spacing: .10em; text-transform: uppercase; padding: 4px 16px; border-radius: 999px; white-space: nowrap; }
.plan-name { font-size: 11px; font-weight: 800; letter-spacing: .20em; text-transform: uppercase; color: var(--sky); margin-bottom: 14px; }
.plan-card--featured .plan-name { color: rgba(255,255,255,.5); }
.plan-price-row { display: flex; align-items: baseline; gap: 6px; margin-bottom: 6px; }
.plan-price { font-size: 44px; font-weight: 900; letter-spacing: -.05em; line-height: 1; color: var(--ink); }
.plan-card--featured .plan-price { color: #fff; }
.plan-price--custom { font-size: 32px; }
.plan-period { font-size: 13px; color: var(--muted); }
.plan-card--featured .plan-period { color: rgba(255,255,255,.45); }
.plan-desc { font-size: 13px; color: var(--muted); margin-bottom: 24px; }
.plan-card--featured .plan-desc { color: rgba(255,255,255,.4); }
.plan-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.plan-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--muted); line-height: 1.45; }
.plan-card--featured .plan-features li { color: rgba(255,255,255,.72); }
.plan-features li::before {
  content: ""; width: 18px; height: 18px; border-radius: 999px; flex-shrink: 0; margin-top: 1px;
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='9' cy='9' r='9' fill='%230ea5e9' fill-opacity='0.12'/%3E%3Cpath d='M5 9.5L7.5 12L13 6.5' stroke='%230ea5e9' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-size: contain;
}
.plan-card--featured .plan-features li::before {
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='9' cy='9' r='9' fill='%230ea5e9' fill-opacity='0.25'/%3E%3Cpath d='M5 9.5L7.5 12L13 6.5' stroke='%230ea5e9' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.plans-note { text-align: center; margin-top: 28px; font-size: 14px; color: var(--muted); }
.plans-note a { color: var(--sky); font-weight: 700; }

/* ══ FAQ ══ */
.faq-section { padding: 100px 0; background: var(--canvas); }
.faq-inner { display: grid; grid-template-columns: 380px 1fr; gap: 80px; align-items: start; }
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-of-type { border-top: 1px solid var(--line); }
.faq-item summary {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  padding: 20px 4px; font-size: 15.5px; font-weight: 700; color: var(--ink);
  cursor: pointer; list-style: none; transition: color .15s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; flex-shrink: 0; width: 28px; height: 28px; border-radius: 999px;
  background: var(--line); display: grid; place-items: center;
  font-size: 18px; font-weight: 400; color: var(--muted); transition: transform .2s, background .15s;
}
.faq-item[open] summary::after { content: "−"; transform: rotate(0deg); background: var(--sky); color: #fff; }
.faq-item summary:hover { color: var(--sky); }
.faq-item p { font-size: 14.5px; color: var(--muted); line-height: 1.75; padding: 0 4px 20px; margin: 0; }

/* ══ CTA ══ */
.cta-section { padding: 100px 0; background: var(--night); position: relative; overflow: hidden; }
.cta-section::before {
  content: ""; pointer-events: none; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(14,165,233,.15) 0%, transparent 55%),
              radial-gradient(ellipse at 80% 20%, rgba(6,182,212,.10) 0%, transparent 40%);
}
.cta-inner { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.cta-copy h2 { font-size: clamp(38px, 4.8vw, 62px); font-weight: 900; line-height: .92; letter-spacing: -.045em; color: #fff; margin-bottom: 18px; }
.cta-copy p { font-size: 17px; color: rgba(255,255,255,.6); line-height: 1.72; margin-bottom: 32px; }
.cta-trust { display: flex; flex-direction: column; gap: 10px; }
.ctrust-item { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; color: rgba(255,255,255,.72); }
.ctrust-item svg { color: var(--sky); flex-shrink: 0; }
.cta-form-wrap { display: flex; flex-direction: column; gap: 0; }
.cta-wa-btn {
  display: flex; align-items: center; justify-content: center; gap: 11px;
  background: #25d366; color: #fff;
  padding: 17px 28px; border-radius: 14px;
  font-size: 16px; font-weight: 800;
  transition: background .14s, transform .12s, box-shadow .14s;
  margin-bottom: 16px;
}
.cta-wa-btn:hover { background: #1ebe59; transform: translateY(-2px); box-shadow: 0 12px 36px rgba(37,211,102,.35); }
.cta-divider { text-align: center; position: relative; margin-bottom: 16px; }
.cta-divider::before { content: ""; position: absolute; top: 50%; left: 0; right: 0; height: 1px; background: rgba(255,255,255,.10); }
.cta-divider span { position: relative; padding: 0 14px; background: var(--night); font-size: 12px; color: rgba(255,255,255,.3); font-weight: 500; letter-spacing: .08em; text-transform: uppercase; }
.cta-form { display: flex; gap: 10px; flex-wrap: wrap; }
.cta-input { flex: 1; min-width: 180px; padding: 14px 18px; border-radius: 10px; border: 1.5px solid rgba(255,255,255,.14); background: rgba(255,255,255,.06); color: #fff; font-size: 15px; transition: border-color .15s; }
.cta-input::placeholder { color: rgba(255,255,255,.3); }
.cta-input:focus { outline: none; border-color: var(--sky); }
.cta-fine { font-size: 12px; color: rgba(255,255,255,.28); margin-top: 12px; text-align: center; }

/* ══ FOOTER ══ */
.site-footer { background: var(--night); border-top: 1px solid rgba(255,255,255,.07); padding: 32px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand strong { display: block; font-size: 15px; font-weight: 800; color: #fff; letter-spacing: -.02em; }
.footer-brand span { display: block; font-size: 11px; color: rgba(255,255,255,.35); margin-top: 2px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 4px; }
.footer-links a { padding: 6px 12px; border-radius: 999px; font-size: 13px; color: rgba(255,255,255,.42); font-weight: 600; transition: color .14s; }
.footer-links a:hover { color: rgba(255,255,255,.85); }
.footer-copy { font-size: 12px; color: rgba(255,255,255,.25); }

/* ══ WA FAB ══ */
.wa-fab {
  position: fixed; bottom: 24px; right: 24px; z-index: 90;
  width: 60px; height: 60px; border-radius: 999px;
  background: #25d366; color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 8px 32px rgba(37,211,102,.4);
  transition: background .14s, transform .14s, box-shadow .14s;
}
.wa-fab:hover { background: #1ebe59; transform: translateY(-3px); box-shadow: 0 14px 44px rgba(37,211,102,.5); }

/* ══ RESPONSIVE ══ */
@media (max-width: 1100px) {
  .integrations-grid { grid-template-columns: repeat(3,1fr); }
  .faq-inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; min-height: unset; padding-top: 80px; }
  .hero-media { height: 420px; }
  .floating-panel { left: 0; width: 100%; max-width: 340px; }
  .modules-grid { grid-template-columns: 1fr; }
  .hw-grid { grid-template-columns: 1fr; }
  .plans-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .cta-inner { grid-template-columns: 1fr; gap: 48px; }
  .flow-step { grid-template-columns: 1fr !important; gap: 32px; }
  .flow-step:nth-child(3) .flow-photo-wrap,.flow-step:nth-child(3) .flow-text { order: unset; }
  .nav-links { display: none; position: fixed; inset: 0; top: 70px; background: rgba(7,8,15,.97); backdrop-filter: blur(20px); flex-direction: column; align-items: flex-start; gap: 0; padding: 16px; z-index: 99; }
  body.nav-open .nav-links { display: flex; }
  .nav-links a { padding: 14px 16px; font-size: 18px; width: 100%; }
  .nav-burger { display: flex; }
}

@media (max-width: 640px) {
  .integrations-grid { grid-template-columns: repeat(2,1fr); }
  .hero-media { height: 300px; }
  .floating-panel { display: none; }
  .hero-metrics { gap: 0; }
  .hm strong { font-size: 22px; }
  .wa-fab { bottom: 16px; right: 16px; width: 54px; height: 54px; }
  .cta-form { flex-direction: column; }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  .pill-dot, .live-blink { animation: none; }
  * { transition-duration: .01ms !important; }
}
