/* ───── RESET ───── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', system-ui, sans-serif; font-size: 16px; line-height: 1.6; color: #0F172A; background: #fff; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

/* ───── TOKENS ───── */
:root {
  --blue: #0F2D6B;
  --blue-mid: #1E3A8A;
  --blue-light: #EFF6FF;
  --orange: #F97316;
  --orange-dark: #EA580C;
  --orange-light: #FFF7ED;
  --white: #fff;
  --bg: #F8FAFC;
  --border: #E2E8F0;
  --text: #0F172A;
  --text-2: #64748B;
  --text-3: #94A3B8;
  --r: 12px;
  --r-lg: 18px;
  --shadow: 0 1px 3px rgba(0,0,0,.06), 0 8px 24px rgba(0,0,0,.06);
  --shadow-md: 0 4px 24px rgba(0,0,0,.1);
  --shadow-lg: 0 12px 48px rgba(0,0,0,.14);
}

/* ───── UTILS ───── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.tag {
  display: inline-block; font-size: 12px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--orange); background: var(--orange-light);
  border: 1px solid #FED7AA; padding: 4px 12px;
  border-radius: 100px; margin-bottom: 16px;
}
.section-intro { margin-bottom: 56px; }
.section-intro.split-intro { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.s-heading {
  font-family: 'Inter Tight', 'Inter', sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800; line-height: 1.15;
  color: var(--text); margin-bottom: 12px;
}
.s-sub { font-size: 16px; color: var(--text-2); max-width: 560px; }

/* ───── BUTTONS ───── */
.cta-orange {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--orange); color: #fff;
  font-size: 15px; font-weight: 600;
  padding: 12px 24px; border-radius: 10px;
  transition: all .2s; box-shadow: 0 4px 16px rgba(249,115,22,.25);
}
.cta-orange:hover { background: var(--orange-dark); transform: translateY(-1px); box-shadow: 0 6px 24px rgba(249,115,22,.35); }

.cta-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--text-2); font-size: 15px; font-weight: 500;
  padding: 12px 20px; border-radius: 10px;
  border: 1.5px solid var(--border); background: #fff;
  transition: all .2s;
}
.cta-ghost:hover { border-color: var(--blue-mid); color: var(--blue); }
.play-icon { width: 28px; height: 28px; background: var(--blue-light); color: var(--blue); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 10px; }

.cta-white { display: inline-flex; align-items: center; gap: 6px; background: #fff; color: var(--blue); font-size: 15px; font-weight: 700; padding: 14px 28px; border-radius: 10px; transition: all .2s; }
.cta-white:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.cta-outline-white { display: inline-flex; align-items: center; gap: 6px; background: transparent; color: rgba(255,255,255,.85); font-size: 15px; font-weight: 600; padding: 14px 28px; border-radius: 10px; border: 1.5px solid rgba(255,255,255,.3); transition: all .2s; }
.cta-outline-white:hover { border-color: #fff; background: rgba(255,255,255,.1); }

/* ───── NAVBAR ───── */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(226,232,240,.8);
  transition: box-shadow .3s;
}
.navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.08); }
.nav-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; height: 60px; gap: 8px; }

.logo { display: flex; align-items: center; gap: 8px; font-size: 17px; font-weight: 800; color: var(--text); letter-spacing: -.02em; flex-shrink: 0; }
.logo-icon { display: flex; align-items: center; justify-content: center; }

.nav-center { display: flex; align-items: center; gap: 2px; margin: 0 auto; }
.nav-item {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 14px; font-weight: 500; color: var(--text-2);
  padding: 8px 12px; border-radius: 8px; transition: all .15s;
}
.nav-item:hover { color: var(--text); background: var(--bg); }
button.nav-item { cursor: pointer; }

.nav-dropdown { position: relative; }
.nav-dropdown:hover .drop-panel { opacity: 1; pointer-events: all; transform: translateY(0); }
.drop-panel {
  position: absolute; top: calc(100% + 10px); left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-lg); box-shadow: var(--shadow-lg);
  padding: 8px; min-width: 340px;
  opacity: 0; pointer-events: none; transition: all .2s;
}
.drop-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
.drop-link { display: flex; align-items: flex-start; gap: 10px; padding: 10px; border-radius: var(--r); transition: background .15s; }
.drop-link:hover { background: var(--bg); }
.drop-icon { width: 32px; height: 32px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 15px; flex-shrink: 0; }
.dl-name { font-size: 13px; font-weight: 600; color: var(--text); display: flex; align-items: center; gap: 6px; }
.dl-new { font-size: 10px; font-weight: 700; color: var(--orange); background: var(--orange-light); padding: 1px 6px; border-radius: 4px; }
.dl-desc { font-size: 12px; color: var(--text-2); margin-top: 1px; }

.nav-right { display: flex; align-items: center; gap: 8px; margin-left: 16px; }
.nav-ghost { font-size: 14px; font-weight: 500; color: var(--text-2); padding: 8px 14px; border-radius: 8px; transition: all .15s; }
.nav-ghost:hover { color: var(--text); background: var(--bg); }
.nav-cta { display: inline-flex; align-items: center; gap: 4px; background: var(--blue); color: #fff; font-size: 14px; font-weight: 600; padding: 8px 18px; border-radius: 8px; transition: all .2s; }
.nav-cta:hover { background: var(--orange); }
.cta-arrow { font-size: 16px; }

.hamburger { display: none; padding: 6px; color: var(--text); border-radius: 6px; transition: background .15s; }
.hamburger:hover { background: var(--bg); }
.mobile-nav { display: none; flex-direction: column; gap: 4px; padding: 12px 24px 20px; border-top: 1px solid var(--border); }
.mobile-nav a { font-size: 15px; font-weight: 500; color: var(--text-2); padding: 10px 0; border-bottom: 1px solid var(--border); }
.mobile-nav.open { display: flex; }

/* ───── DEMO FORM BAR ───── */
.demo-form-bar {
  background: var(--blue);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.dfb-inner {
  max-width: 1200px; margin: 0 auto; padding: 32px 24px;
  display: grid; grid-template-columns: 280px 1fr; gap: 40px; align-items: center;
}
.dfb-label {
  display: inline-block; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--orange); background: rgba(249,115,22,.12);
  border: 1px solid rgba(249,115,22,.25);
  padding: 3px 10px; border-radius: 100px; margin-bottom: 10px;
}
.dfb-text p { font-size: 14px; color: rgba(255,255,255,.55); line-height: 1.6; }

.dfb-form { display: flex; flex-direction: column; gap: 12px; }
.dfb-row { display: flex; gap: 12px; align-items: flex-end; flex-wrap: wrap; }

.dfb-field { display: flex; flex-direction: column; gap: 5px; flex: 1; min-width: 140px; }
.dfb-field-wide { flex: 2.5; }
.dfb-field label { font-size: 11px; font-weight: 600; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .06em; }

.dfb-field input,
.dfb-field select {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 14px;
  color: #fff;
  font-family: inherit;
  outline: none;
  transition: border-color .2s, background .2s;
  width: 100%;
}
.dfb-field input::placeholder { color: rgba(255,255,255,.3); }
.dfb-field select option { background: #0F2D6B; color: #fff; }
.dfb-field input:focus,
.dfb-field select:focus {
  border-color: var(--orange);
  background: rgba(255,255,255,.1);
}

.dfb-submit {
  flex-shrink: 0;
  background: var(--orange); color: #fff;
  font-size: 14px; font-weight: 700;
  padding: 11px 24px; border-radius: 8px;
  cursor: pointer; border: none;
  font-family: inherit;
  transition: all .2s;
  white-space: nowrap;
  align-self: flex-end;
  box-shadow: 0 4px 16px rgba(249,115,22,.3);
}
.dfb-submit:hover { background: var(--orange-dark); transform: translateY(-1px); }
.dfb-submit:disabled { opacity: .6; cursor: not-allowed; transform: none; }

.dfb-success {
  display: none; font-size: 14px; font-weight: 600;
  color: #4ADE80; background: rgba(74,222,128,.08);
  border: 1px solid rgba(74,222,128,.2);
  padding: 10px 16px; border-radius: 8px;
}
.dfb-success.show { display: block; }

@media (max-width: 900px) {
  .dfb-inner { grid-template-columns: 1fr; gap: 24px; }
  .dfb-row { flex-direction: column; }
  .dfb-field, .dfb-field-wide { min-width: 100%; }
  .dfb-submit { width: 100%; justify-content: center; }
}

/* ───── HERO ───── */
.hero { position: relative; overflow: hidden; background: #fff; }

.mesh-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 70% 60% at 10% 20%, rgba(15,45,107,.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 90% 10%, rgba(249,115,22,.07) 0%, transparent 55%),
    radial-gradient(ellipse 60% 70% at 50% 100%, rgba(30,58,138,.05) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 80% 70%, rgba(249,115,22,.04) 0%, transparent 50%);
}

.hero-body { position: relative; max-width: 1200px; margin: 0 auto; padding: 80px 24px 0; display: flex; flex-direction: column; align-items: center; text-align: center; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 500; color: var(--blue);
  background: var(--blue-light); border: 1px solid rgba(30,58,138,.15);
  padding: 6px 14px; border-radius: 100px; margin-bottom: 28px;
  transition: all .2s;
}
.hero-badge:hover { background: #DBEAFE; }
.badge-pulse { width: 7px; height: 7px; background: var(--orange); border-radius: 50%; animation: pulse 2s infinite; flex-shrink: 0; }
@keyframes pulse { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:.5; transform:scale(1.3); } }
.badge-arrow { color: var(--orange); font-weight: 700; }

.hero-h1 {
  font-family: 'Inter Tight', 'Inter', sans-serif;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900; line-height: 1.08;
  letter-spacing: -.03em; color: var(--text);
  margin-bottom: 20px;
}
.h1-highlight {
  background: linear-gradient(135deg, var(--blue) 0%, #2563EB 45%, var(--orange) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.hero-p { font-size: 18px; color: var(--text-2); max-width: 480px; margin-bottom: 36px; }

.hero-actions { display: flex; align-items: center; gap: 12px; margin-bottom: 56px; flex-wrap: wrap; justify-content: center; }

/* floating glass card */
.hero-card {
  width: 100%; max-width: 700px;
  background: rgba(255,255,255,.7);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(226,232,240,.8);
  border-radius: 20px;
  box-shadow: 0 8px 48px rgba(15,45,107,.1), 0 1px 2px rgba(0,0,0,.04);
  overflow: hidden; margin-bottom: 0;
}
.hc-header {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 16px; background: rgba(248,250,252,.8);
  border-bottom: 1px solid rgba(226,232,240,.6);
}
.hc-dots { display: flex; gap: 5px; }
.hc-dots span { width: 10px; height: 10px; border-radius: 50%; }
.hc-dots span:nth-child(1) { background: #FF5F57; }
.hc-dots span:nth-child(2) { background: #FEBC2E; }
.hc-dots span:nth-child(3) { background: #28C840; }
.hc-title { font-size: 12px; color: var(--text-3); margin: 0 auto; font-family: monospace; }
.hc-status { display: flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 600; color: #16A34A; }
.status-dot { width: 7px; height: 7px; background: #22C55E; border-radius: 50%; animation: pulse 2s infinite; }

.hc-body { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0; }
.hc-prompt { padding: 16px 20px; border-right: 1px solid var(--border); }
.hc-prompt-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--text-3); margin-bottom: 8px; }
.hc-prompt p { font-size: 13px; color: var(--text-2); line-height: 1.5; }

.hc-pipeline { padding: 16px 20px; border-right: 1px solid var(--border); display: flex; flex-direction: column; gap: 8px; }
.hc-step { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--text-3); }
.hc-step.done { color: #16A34A; }
.hc-step.active { color: var(--orange); }
.hs-icon { font-size: 13px; width: 16px; text-align: center; }
.hs-icon.spin { animation: spin 1.5s linear infinite; display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }

.hc-metrics { padding: 16px 20px; display: flex; flex-direction: column; justify-content: center; gap: 10px; }
.hc-metric { display: flex; flex-direction: column; gap: 1px; }
.hm-val { font-size: 18px; font-weight: 800; color: var(--blue); }
.hm-val.orange { color: var(--orange); }
.hm-lbl { font-size: 11px; color: var(--text-3); }

/* clients strip */
.clients-strip { padding: 32px 24px 0; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.cs-label { font-size: 12px; font-weight: 500; color: var(--text-3); letter-spacing: .04em; }
.cs-divider { width: 1px; background: var(--border); height: 1px; width: 100%; max-width: 800px; }

.marquee-wrap { width: 100%; max-width: 900px; overflow: hidden; -webkit-mask: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%); mask: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%); padding-bottom: 32px; }
.marquee-inner { display: flex; align-items: center; gap: 48px; animation: scroll 24s linear infinite; width: max-content; }
.marquee-inner img { height: 24px; width: auto; opacity: .45; filter: grayscale(100%); flex-shrink: 0; transition: all .2s; }
.marquee-inner img:hover { opacity: .85; filter: grayscale(0%); }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ───── STATS STRIP ───── */
.stats-strip { background: var(--blue); padding: 40px 0; }
.stats-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-around; flex-wrap: wrap; gap: 32px; }
.stat-item { text-align: center; display: flex; flex-direction: column; gap: 4px; }
.stat-n { font-family: 'Inter Tight', 'Inter', sans-serif; font-size: 40px; font-weight: 800; color: #fff; line-height: 1; }
.stat-accent { color: var(--orange); }
.stat-l { font-size: 13px; color: rgba(255,255,255,.55); font-weight: 500; }
.stat-div { width: 1px; height: 48px; background: rgba(255,255,255,.1); }

/* ───── BENTO ───── */
.bento { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: auto; gap: 16px; }
.bento-card { border-radius: var(--r-lg); padding: 28px; position: relative; overflow: hidden; transition: transform .2s, box-shadow .2s; }
.bento-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.bento-lg { grid-column: span 2; grid-row: span 2; }
.bento-wide { grid-column: span 2; }

.bc-tag { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--blue); background: var(--blue-light); display: inline-block; padding: 3px 10px; border-radius: 6px; margin-bottom: 14px; }
.bc-tag.light { color: rgba(255,255,255,.8); background: rgba(255,255,255,.12); }
.bc-tag.orange-tag { color: var(--orange-dark); background: var(--orange-light); }
.bc-h { font-family: 'Inter Tight', 'Inter', sans-serif; font-size: 20px; font-weight: 700; color: var(--text); margin-bottom: 10px; line-height: 1.2; }
.bc-h.white { color: #fff; }
.bc-p { font-size: 14px; color: var(--text-2); margin-bottom: 16px; line-height: 1.6; }
.bc-p.light-p { color: rgba(255,255,255,.65); }
.bc-link { font-size: 14px; font-weight: 600; color: var(--orange); display: inline-flex; align-items: center; gap: 4px; transition: gap .15s; }
.bc-link:hover { gap: 8px; }
.bc-link.orange { color: #FBA65A; }

.bc-terminal { margin-top: 20px; background: rgba(0,0,0,.3); border-radius: var(--r); padding: 14px 16px; font-family: monospace; }
.bct-line { font-size: 13px; color: rgba(255,255,255,.7); margin-bottom: 10px; }
.bct-prompt { color: var(--orange); margin-right: 6px; }
.bct-text { color: #93C5FD; }
.bct-step { font-size: 12px; color: rgba(255,255,255,.4); padding: 4px 0; }
.bct-step.done { color: #4ADE80; }
.bct-step.active { color: var(--orange); }

.int-mini-grid { display: grid; grid-template-columns: repeat(4, 32px); gap: 8px; margin-top: 16px; }
.int-mini-grid img { width: 32px; height: 32px; border-radius: 8px; object-fit: contain; border: 1px solid var(--border); padding: 4px; background: #fff; }

.compliance-badges { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 12px; }
.compliance-badges span { font-size: 11px; font-weight: 700; color: var(--orange-dark); background: #fff; border: 1px solid #FED7AA; padding: 4px 10px; border-radius: 6px; }

.lang-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.lang-row span { font-size: 13px; font-weight: 500; color: var(--text-2); background: #fff; border: 1px solid var(--border); padding: 4px 12px; border-radius: 8px; }

.uptime-pill { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 600; color: #16A34A; background: #F0FDF4; border: 1px solid #BBF7D0; padding: 6px 14px; border-radius: 100px; margin-top: 12px; }
.up-dot { width: 8px; height: 8px; background: #22C55E; border-radius: 50%; animation: pulse 2s infinite; }

/* ───── CASE STUDIES ───── */
.scroll-cards-wrapper { position: relative; margin-top: 40px; }
.scroll-cards { display: flex; gap: 20px; overflow-x: auto; padding: 0 24px 40px; scrollbar-width: none; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
.scroll-cards::-webkit-scrollbar { display: none; }
.sc-card {
  flex-shrink: 0; width: 360px;
  background: #fff; border: 1px solid var(--border);
  border-radius: 20px; padding: 28px;
  scroll-snap-align: start; transition: all .2s;
}
.sc-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); border-color: transparent; }
.sc-industry { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--orange); background: var(--orange-light); display: inline-block; padding: 3px 10px; border-radius: 6px; margin-bottom: 14px; }
.sc-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; line-height: 1.3; }
.sc-card p { font-size: 14px; color: var(--text-2); margin-bottom: 20px; line-height: 1.6; }
.sc-stats { display: flex; gap: 12px; border-top: 1px solid var(--border); padding-top: 16px; }
.sc-stat { display: flex; flex-direction: column; gap: 2px; }
.sc-stat span { font-size: 22px; font-weight: 800; color: var(--blue); }
.sc-stat.orange span { color: var(--orange); }
.sc-stat { font-size: 11px; color: var(--text-3); }

.scroll-fade-right { position: absolute; right: 0; top: 0; bottom: 40px; width: 80px; background: linear-gradient(90deg, transparent, #F8FAFC); pointer-events: none; }
.scroll-nav { display: flex; justify-content: center; gap: 12px; padding: 0 24px 40px; }
.scroll-btn { width: 40px; height: 40px; border-radius: 50%; border: 1.5px solid var(--border); background: #fff; font-size: 16px; color: var(--text-2); display: flex; align-items: center; justify-content: center; transition: all .2s; cursor: pointer; }
.scroll-btn:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-light); }

/* ───── BEFORE/AFTER ───── */
.ba-grid { display: flex; flex-direction: column; border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; }
.ba-row { display: grid; grid-template-columns: 160px 1fr 48px 1fr; align-items: center; border-bottom: 1px solid var(--border); transition: background .15s; }
.ba-row:last-child { border-bottom: none; }
.ba-row:hover { background: #FAFAFA; }
.ba-label-col { font-size: 13px; font-weight: 700; color: var(--text-2); padding: 20px 20px; background: var(--bg); border-right: 1px solid var(--border); }
.ba-before-col { font-size: 13px; color: var(--text-3); padding: 20px 20px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.ba-arrow-col { display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--text-3); }
.ba-after-col { font-size: 13px; color: var(--text-2); font-weight: 500; padding: 20px 20px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.ba-time-badge { font-size: 12px; font-weight: 700; color: var(--text-3); background: var(--bg); border: 1px solid var(--border); padding: 2px 8px; border-radius: 6px; white-space: nowrap; flex-shrink: 0; }
.ba-time-badge.good { color: var(--orange-dark); background: var(--orange-light); border-color: #FED7AA; }

/* ───── HOW IT WORKS ───── */
.how-section { background: #fff; }
.how-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.how-steps { display: flex; flex-direction: column; gap: 4px; }
.how-step { display: flex; gap: 16px; padding: 20px; border-radius: var(--r); cursor: pointer; transition: all .2s; }
.how-step:hover { background: var(--bg); }
.how-step.active { background: var(--blue-light); }
.hs-num { font-family: 'Inter Tight', 'Inter', sans-serif; font-size: 13px; font-weight: 800; color: var(--text-3); min-width: 28px; margin-top: 2px; }
.how-step.active .hs-num { color: var(--blue); }
.hs-content h3 { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.how-step.active .hs-content h3 { color: var(--blue); }
.hs-content p { font-size: 14px; color: var(--text-2); line-height: 1.6; }

.how-visual { position: sticky; top: 80px; }
.how-panel { background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 28px; min-height: 280px; }
.how-panel.hidden { display: none; }
.hp-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--text-3); margin-bottom: 20px; }
.hp-chips { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.chip { font-size: 12px; font-weight: 600; padding: 4px 12px; border-radius: 100px; }
.chip.blue { background: var(--blue-light); color: var(--blue); }
.chip.orange { background: var(--orange-light); color: var(--orange-dark); }
.chip:not(.blue):not(.orange) { background: var(--bg); color: var(--text-2); border: 1px solid var(--border); }

.hp-diagram { display: flex; align-items: center; gap: 16px; }
.hpd-center { display: flex; flex-direction: column; align-items: center; gap: 6px; background: var(--blue); color: #fff; padding: 16px; border-radius: var(--r); min-width: 90px; font-size: 13px; font-weight: 600; }
.hpd-spokes { display: flex; flex-direction: column; gap: 8px; }
.hpd-spoke { font-size: 12px; color: var(--text-2); background: #fff; border: 1px solid var(--border); padding: 6px 12px; border-radius: 8px; }

.hp-code { background: #0F172A; border-radius: var(--r); padding: 16px; font-family: monospace; }
.hpc-line { font-size: 13px; color: #94A3B8; padding: 3px 0; }
.kw { color: #60A5FA; }
.str { color: #34D399; }
.hpc-out { font-size: 12px; color: #94A3B8; padding: 8px 0 0; border-top: 1px solid rgba(255,255,255,.05); margin-top: 8px; }
.ok { color: #4ADE80; }

.action-list { display: flex; flex-direction: column; gap: 10px; }
.action-item { font-size: 13px; color: var(--text-3); padding: 10px 14px; border-radius: 8px; border: 1px solid var(--border); }
.action-item.done { color: #16A34A; background: #F0FDF4; border-color: #BBF7D0; }
.action-item.active { color: var(--orange); background: var(--orange-light); border-color: #FED7AA; }

.gov-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.gov-item { display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 20px; background: #fff; border: 1px solid var(--border); border-radius: var(--r); font-size: 13px; font-weight: 600; color: var(--text-2); }
.gov-icon { font-size: 24px; }

/* ───── DUAL MARQUEE ───── */
.dual-marquee { overflow: hidden; -webkit-mask: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%); mask: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%); margin-bottom: 0; }
.dm-row { overflow: hidden; padding: 8px 0; }
.dm-track { display: flex; align-items: center; gap: 12px; animation: scroll 30s linear infinite; width: max-content; }
.dm-row.reverse .dm-track { animation-direction: reverse; }
.dm-item { display: flex; align-items: center; gap: 8px; background: #fff; border: 1px solid var(--border); border-radius: var(--r); padding: 10px 16px; white-space: nowrap; }
.dm-item img { width: 24px; height: 24px; object-fit: contain; }
.dm-item span { font-size: 13px; font-weight: 500; color: var(--text-2); }

/* ───── PRICING ───── */
.pricing-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 900px; margin: 0 auto; }
.pricing-typical { border: 1px solid var(--border); border-radius: var(--r-lg); padding: 32px; }
.pt-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--text-3); margin-bottom: 10px; }
.pt-price { font-size: 30px; font-weight: 800; color: var(--text-3); text-decoration: line-through; margin-bottom: 10px; }
.pt-desc { font-size: 14px; color: var(--text-2); margin-bottom: 20px; }
.pt-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.pt-list li { font-size: 14px; color: var(--text-3); display: flex; align-items: center; gap: 8px; }
.pt-list li::before { content: '✕'; color: #FCA5A5; font-weight: 700; }

.pricing-featured { border: 2px solid var(--orange); border-radius: var(--r-lg); padding: 32px; background: linear-gradient(135deg, #FFF7ED 0%, #fff 60%); position: relative; }
.pf-badge { position: absolute; top: -12px; left: 24px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; background: var(--orange); color: #fff; padding: 4px 12px; border-radius: 100px; }
.pf-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--orange-dark); margin-bottom: 10px; }
.pf-price { font-size: 36px; font-weight: 900; color: var(--blue); margin-bottom: 10px; }
.pf-price span { font-size: 20px; font-weight: 600; color: var(--text-2); }
.pf-desc { font-size: 14px; color: var(--text-2); margin-bottom: 20px; }
.pf-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.pf-list li { font-size: 14px; color: var(--text); display: flex; align-items: center; gap: 8px; }

/* ───── CTA SECTION ───── */
.cta-section { position: relative; overflow: hidden; background: var(--blue); padding: 96px 24px; text-align: center; }
.cta-mesh { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse 60% 80% at 20% 50%, rgba(249,115,22,.15) 0%, transparent 60%), radial-gradient(ellipse 50% 60% at 80% 30%, rgba(37,99,235,.2) 0%, transparent 55%); }
.cta-content { position: relative; max-width: 700px; margin: 0 auto; }
.cta-content h2 { font-family: 'Inter Tight', 'Inter', sans-serif; font-size: clamp(28px, 4vw, 48px); font-weight: 800; color: #fff; margin-bottom: 14px; line-height: 1.2; }
.cta-content p { font-size: 16px; color: rgba(255,255,255,.65); margin-bottom: 36px; }
.cta-btns { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* ───── FOOTER ───── */
.footer { background: #0A1628; }
.footer-top { padding: 64px 0; }
.ft-inner { display: flex; align-items: flex-start; }
.ft-brand p { font-size: 14px; color: rgba(255,255,255,.4); margin-top: 10px; margin-bottom: 20px; max-width: 220px; }
.ft-social { display: flex; gap: 10px; }
.ft-social a { width: 34px; height: 34px; background: rgba(255,255,255,.06); color: rgba(255,255,255,.5); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; transition: all .2s; }
.ft-social a:hover { background: var(--orange); color: #fff; }
.ft-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.ft-col { display: flex; flex-direction: column; gap: 10px; }
.ft-col h4 { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.3); margin-bottom: 6px; }
.ft-col a { font-size: 14px; color: rgba(255,255,255,.55); transition: color .15s; }
.ft-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.06); padding: 20px 0; }
.fb-inner { display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: rgba(255,255,255,.3); flex-wrap: wrap; gap: 8px; }

/* ───── RESPONSIVE ───── */
@media (max-width: 1024px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento-lg { grid-column: span 2; }
  .bento-wide { grid-column: span 2; }
  .how-grid { grid-template-columns: 1fr; }
  .how-visual { position: static; }
}
@media (max-width: 768px) {
  .nav-center, .nav-right { display: none; }
  .hamburger { display: flex; }
  .hero-body { padding: 56px 24px 0; }
  .hero-card { display: none; }
  .hc-body { grid-template-columns: 1fr; }
  .stats-inner { gap: 20px; }
  .stat-div { display: none; }
  .bento { grid-template-columns: 1fr; }
  .bento-lg, .bento-wide { grid-column: span 1; }
  .ba-grid { overflow: hidden; }
  .ba-row { grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; gap: 8px; padding: 16px; }
  .ba-label-col { grid-column: span 2; background: none; border: none; padding: 0; }
  .ba-before-col, .ba-after-col { padding: 0; font-size: 12px; }
  .ba-arrow-col { display: none; }
  .pricing-row { grid-template-columns: 1fr; }
  .ft-inner { grid-template-columns: 1fr; gap: 40px; }
  .ft-cols { grid-template-columns: repeat(2, 1fr); }
  .section-intro.split-intro { flex-direction: column; }
  .section-intro.split-intro p { text-align: left; }
}
@media (max-width: 480px) {
  .hero-h1 { font-size: 36px; }
  .s-heading { font-size: 26px; }
  .ft-cols { grid-template-columns: 1fr; }
  .sc-card { width: 300px; }
}
