/* CatchingConsent — Shared Styles v4.0
   Modern, dynamic, engaging. Motion + depth + contrast. */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&display=swap');

:root {
  --bg: #ffffff;
  --bg-alt: #f5f7fa;
  --bg-panel: #ffffff;
  --teal: #0094A8;
  --teal-dark: #007283;
  --teal-darker: #003D4A;
  --teal-light: #e0f7fa;
  --amber: #E89211;
  --amber-dark: #B86F00;
  --amber-light: #fef0dd;
  --green: #2D9B5C;
  --green-light: #e6f7ee;
  --red: #D7263D;
  --red-light: #fdf0f2;
  --text: #0A0E14;
  --text-2: #1C2330;
  --body: #3D4654;
  --muted: #6B7689;
  --rule: #D6DBE3;
  --rule-light: #E8EBF1;
  --shadow: 0 2px 8px rgba(0,0,0,.04), 0 1px 3px rgba(0,0,0,.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.04);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.10), 0 4px 12px rgba(0,0,0,.06);
  --shadow-glow: 0 0 24px rgba(0,148,168,.15);
  --radius: 16px;
  --radius-sm: 10px;
  --max: 1140px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: var(--teal); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 28px; }

/* ========== SCROLL ANIMATIONS ========== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ========== HEADER ========== */
header.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border-bottom: 1px solid var(--rule);
  transition: box-shadow .3s;
}
header.site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.06); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 18px; color: var(--text);
  text-decoration: none;
}
.logo svg { flex-shrink: 0; }
.logo img { flex-shrink: 0; height: 40px; width: auto; }
.logo span { color: var(--muted); font-weight: 600; }
.nav-links {
  display: flex; gap: 28px; align-items: center; font-size: 14px; font-weight: 600;
}
.nav-links a {
  color: var(--text-2); text-decoration: none; transition: color .15s; position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--teal); }
.nav-links a:not(.nav-cta)::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
  background: var(--teal); transition: width .2s ease;
}
.nav-links a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: #fff !important;
  padding: 11px 22px; border-radius: var(--radius-sm); font-weight: 700; font-size: 14px;
  text-decoration: none; transition: all .2s;
  box-shadow: 0 2px 8px rgba(0,148,168,.25);
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(0,148,168,.35); text-decoration: none; }
.mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; color: var(--text); }

/* ========== HERO ========== */
.hero { padding: 96px 0 80px; background: var(--bg); position: relative; overflow: hidden; }
.hero .wrap { position: relative; z-index: 1; }
/* hero::before removed — was covering text */
/* hero::after removed — was covering text */
.hero-grid {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 56px; align-items: center;
  position: relative; z-index: 1;
}
@media (max-width: 860px) { .hero-grid { grid-template-columns: 1fr; gap: 36px; } }
.eyebrow {
  display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 20px;
  padding: 7px 16px; background: var(--teal-light); border-radius: 20px;
  border: 1px solid rgba(0,148,168,.15);
}
h1 {
  font-size: clamp(36px, 5.2vw, 56px); line-height: 1.08; letter-spacing: -.025em;
  color: var(--text); font-weight: 800;
}
h1 .amber {
  background: linear-gradient(135deg, var(--amber) 0%, #FF6B35 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-sub {
  margin-top: 24px; font-size: 19px; color: var(--body); max-width: 560px; line-height: 1.65;
}
.cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 32px; border-radius: var(--radius-sm); font-weight: 700; font-size: 16px;
  cursor: pointer; border: 2px solid transparent; transition: all .2s;
  font-family: inherit; text-decoration: none; position: relative; overflow: hidden;
}
.btn-primary {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: #fff; border-color: transparent;
  box-shadow: 0 4px 14px rgba(0,148,168,.3);
}
.btn-primary:hover {
  box-shadow: 0 8px 28px rgba(0,148,168,.4); text-decoration: none; transform: translateY(-2px);
}
.btn-primary::after {
  content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.2), transparent);
  transition: left .5s;
}
.btn-primary:hover::after { left: 100%; }
.btn-ghost {
  background: rgba(255,255,255,.5); border-color: var(--rule); color: var(--text);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover { border-color: var(--teal); color: var(--teal); text-decoration: none; background: #fff; }

.hero-foot { margin-top: 40px; display: flex; gap: 32px; flex-wrap: wrap; font-size: 13px; color: var(--muted); font-weight: 500; }
.hero-foot span { display: flex; align-items: center; gap: 7px; }
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--teal); }

/* ========== SECTIONS ========== */
section { padding: 84px 0; }
.section-alt { background: var(--bg-alt); }
.section-teal { background: linear-gradient(135deg, var(--teal-darker) 0%, var(--teal) 100%); color: #fff; }
.section-teal h2, .section-teal .kicker { color: #fff; }
.kicker {
  font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 14px;
}
h2 {
  font-size: clamp(28px, 4vw, 40px); line-height: 1.15; letter-spacing: -.022em;
  color: var(--text); font-weight: 800; max-width: 740px;
}
.lede { margin-top: 20px; max-width: 660px; font-size: 18px; color: var(--body); line-height: 1.65; overflow-wrap: break-word; word-break: break-word; }

/* ========== CARDS ========== */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
@media (max-width: 860px) { .card-grid { grid-template-columns: 1fr; } }
.card {
  background: var(--bg-panel); border: 1px solid var(--rule); border-radius: var(--radius);
  padding: 30px; box-shadow: var(--shadow); transition: all .25s ease;
  position: relative; overflow: hidden;
}
.card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal-dark));
  transform: scaleX(0); transform-origin: left; transition: transform .3s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--teal); }
.card:hover::before { transform: scaleX(1); }
.card .icon-wrap {
  width: 48px; height: 48px; border-radius: 12px; background: var(--teal-light);
  display: grid; place-items: center; margin-bottom: 18px;
  transition: transform .2s;
}
.card:hover .icon-wrap { transform: scale(1.1) rotate(-3deg); }
.card h3 { color: var(--text); font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.card p { font-size: 14.5px; color: var(--body); }

/* ========== MODULE CARDS ========== */
.module-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 40px; }
@media (max-width: 860px) { .module-grid { grid-template-columns: 1fr; } }
.module-card {
  background: #fff; border: 1px solid var(--rule); border-radius: var(--radius);
  padding: 26px; display: flex; flex-direction: column; transition: all .2s;
}
.module-card:hover { border-color: var(--teal); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.badge-row { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.tag {
  font-size: 10px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 4px;
}
.tag-live { background: var(--green-light); color: var(--green); }
.tag-dev { background: var(--amber-light); color: var(--amber-dark); }
.cat { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.module-card h3 { font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.vendor { font-size: 12px; color: var(--teal); font-weight: 700; margin-bottom: 10px; }
.module-card p { font-size: 14px; color: var(--body); }

/* ========== VENDOR STRIP ========== */
.vendor-strip {
  display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; align-items: center;
}
.vendor-chip {
  font-size: 14px; font-weight: 600; color: var(--text-2); background: #fff;
  border: 1px solid var(--rule); padding: 10px 18px; border-radius: var(--radius-sm);
  box-shadow: var(--shadow); transition: all .2s;
}
.vendor-chip:hover { transform: translateY(-2px); border-color: var(--teal); box-shadow: var(--shadow-md); }

/* ========== STANCE GRID ========== */
.stance-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  margin-top: 40px; border: 1px solid var(--rule); border-radius: var(--radius); overflow: hidden;
}
@media (max-width: 860px) { .stance-grid { grid-template-columns: 1fr; } }
.stance-col { padding: 36px; }
.stance-col + .stance-col { border-left: 1px solid var(--rule); }
@media (max-width: 860px) { .stance-col + .stance-col { border-left: none; border-top: 1px solid var(--rule); } }
.stance-col h3 { font-size: 16px; font-weight: 700; margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.stance-col.do h3 { color: var(--green); }
.stance-col.do h3::before { content: "+"; font-weight: 800; }
.stance-col.dont h3 { color: var(--red); }
.stance-col.dont h3::before { content: "\2014"; }
.stance-col ul { list-style: none; }
.stance-col li { font-size: 14px; padding: 6px 0; color: var(--body); }

/* ========== FORM ========== */
.form-card {
  background: #fff; border: 1px solid var(--rule); border-radius: var(--radius);
  padding: 40px; box-shadow: var(--shadow-lg); max-width: 600px;
}
.form-group { margin-bottom: 22px; }
.form-group label { display: block; font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 13px 16px; border: 1px solid var(--rule); border-radius: var(--radius-sm);
  font-size: 15px; font-family: inherit; color: var(--text); background: var(--bg);
  transition: border-color .15s, box-shadow .15s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(0,148,168,.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 12px; color: var(--muted); margin-top: 16px; line-height: 1.6; }

/* ========== CTA SECTION ========== */
.cta-section { padding: 88px 0; text-align: center; background: var(--bg-alt); }
.cta-section h2 { margin: 0 auto; }
.cta-section .cta-row { justify-content: center; margin-top: 36px; }

/* ========== CTA BANNER ========== */
.cta-banner {
  background: linear-gradient(135deg, var(--teal-darker) 0%, var(--teal) 50%, var(--teal-dark) 100%);
  color: #fff; padding: 0; position: relative; overflow: hidden;
}
/* cta-banner::before removed */

/* ========== FOOTER ========== */
footer {
  background: #0A0E14; color: #8893a4; padding: 64px 0 40px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 36px; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; gap: 28px; } }
footer h4 { color: #fff; font-size: 13px; font-weight: 700; margin-bottom: 14px; text-transform: uppercase; letter-spacing: .05em; }
footer p { margin-bottom: 8px; line-height: 1.6; font-size: 13px; }
footer a { color: var(--teal); }
.footer-legal {
  border-top: 1px solid #1C2330; padding-top: 28px;
  font-size: 12px; line-height: 1.7;
}
.footer-legal strong { color: #c0c5d0; }

/* ========== SVG CONTAINERS ========== */
.svg-wrap { margin: 32px 0; display: flex; justify-content: center; }
.svg-wrap svg { max-width: 100%; height: auto; }

/* ========== PROCESS STEPS ========== */
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
@media (max-width: 860px) { .process-grid { grid-template-columns: 1fr; } }
.process-step {
  background: #fff; border: 1px solid var(--rule); border-radius: var(--radius);
  padding: 36px 30px; text-align: center; position: relative; transition: all .25s;
}
.process-step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.process-step .step-num {
  width: 52px; height: 52px; border-radius: 50%; background: linear-gradient(135deg, var(--teal), var(--teal-dark)); color: #fff;
  display: grid; place-items: center; font-weight: 800; font-size: 20px; margin: 0 auto 20px;
  box-shadow: 0 4px 14px rgba(0,148,168,.25);
}
.process-step h3 { font-size: 18px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.process-step p { font-size: 14.5px; color: var(--body); }

/* ========== STATS ========== */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 40px; }
@media (max-width: 760px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
.stat-item { text-align: center; position: relative; }
.stat-num { font-size: 42px; font-weight: 800; color: #fff; }
.stat-label { font-size: 13px; color: rgba(255,255,255,.6); margin-top: 4px; }

/* ========== VENDOR CARDS ========== */
.vendor-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
@media (max-width: 860px) { .vendor-grid { grid-template-columns: 1fr; } }
.vendor-card {
  background: #fff; border: 1px solid var(--rule); border-radius: var(--radius);
  padding: 30px; box-shadow: var(--shadow); transition: all .25s;
}
.vendor-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.vendor-card .vendor-icon {
  width: 48px; height: 48px; border-radius: 12px; background: var(--teal-light);
  display: grid; place-items: center; margin-bottom: 18px;
  transition: transform .2s;
}
.vendor-card:hover .vendor-icon { transform: scale(1.1) rotate(-3deg); }
.vendor-card h3 { font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.vendor-card .vendor-role { font-size: 12px; color: var(--teal); font-weight: 600; margin-bottom: 12px; text-transform: uppercase; letter-spacing: .05em; }
.vendor-card p { font-size: 14px; color: var(--body); }

/* ========== CALCULATOR ========== */
.calc-section { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%); padding: 84px 0; position: relative; }
.calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
@media (max-width: 860px) { .calc-grid { grid-template-columns: 1fr; gap: 32px; } }
.calc-inputs { background: #fff; border: 1px solid var(--rule); border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow-md); }
.calc-input-group { margin-bottom: 28px; }
.calc-input-group:last-child { margin-bottom: 0; }
.calc-input-group label { display: block; font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.calc-input-group .hint { font-size: 12px; color: var(--muted); margin-top: 6px; }
.calc-slider-wrap { display: flex; align-items: center; gap: 14px; }
.calc-slider { flex: 1; -webkit-appearance: none; appearance: none; height: 8px; border-radius: 4px; background: var(--rule-light); outline: none; }
.calc-slider::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 24px; height: 24px; border-radius: 50%; background: linear-gradient(135deg, var(--teal), var(--teal-dark)); cursor: pointer; border: 3px solid #fff; box-shadow: 0 2px 8px rgba(0,148,168,.35); transition: transform .15s; }
.calc-slider::-webkit-slider-thumb:hover { transform: scale(1.2); }
.calc-slider::-moz-range-thumb { width: 24px; height: 24px; border-radius: 50%; background: var(--teal); cursor: pointer; border: 3px solid #fff; box-shadow: 0 2px 8px rgba(0,148,168,.35); }
.calc-value { font-size: 22px; font-weight: 800; color: var(--teal); min-width: 90px; text-align: right; font-variant-numeric: tabular-nums; }
.calc-results { background: linear-gradient(135deg, #0A0E14 0%, #162028 50%, #0A0E14 100%); border-radius: var(--radius); padding: 44px; color: #fff; box-shadow: var(--shadow-lg); position: relative; overflow: hidden; }
/* calc-results::before removed */
/* calc-results::after removed */
.calc-result-label { font-size: 13px; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .08em; font-weight: 600; }
.calc-big-number { font-size: 52px; font-weight: 800; color: #fff; margin: 8px 0 4px; font-variant-numeric: tabular-nums; line-height: 1.1; }
.calc-big-number .currency { background: linear-gradient(135deg, var(--amber) 0%, #FF6B35 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.calc-breakdown { margin-top: 32px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); display: grid; gap: 14px; }
.calc-breakdown-row { display: flex; justify-content: space-between; align-items: center; font-size: 14px; }
.calc-breakdown-row .label { color: rgba(255,255,255,.7); display: flex; align-items: center; gap: 8px; }
.calc-breakdown-row .amount { font-weight: 700; color: #fff; font-variant-numeric: tabular-nums; }
.calc-breakdown-row .amount.danger { color: #FF6B7A; }
.calc-breakdown-row .dot-sm { width: 8px; height: 8px; border-radius: 50%; }
.calc-cta { margin-top: 28px; background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%); color: #fff; border: none; padding: 16px 28px; border-radius: var(--radius-sm); font-weight: 700; font-size: 16px; cursor: pointer; width: 100%; transition: all .2s; font-family: inherit; text-align: center; box-shadow: 0 4px 14px rgba(0,148,168,.3); }
.calc-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,148,168,.4); }
.calc-disclaimer { font-size: 11px; color: rgba(255,255,255,.4); margin-top: 16px; line-height: 1.5; }

/* ========== STORY SECTION ========== */
.story-section { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%); padding: 100px 0; }
.story-wrap { max-width: 760px; margin: 0 auto; }
.story-label { font-size: 13px; font-weight: 700; color: var(--teal); text-transform: uppercase; letter-spacing: .12em; margin-bottom: 28px; display: inline-block; padding: 6px 16px; background: var(--teal-light); border-radius: 20px; border: 1px solid rgba(0,148,168,.15); }
.story-wrap p { font-size: 20px; line-height: 1.75; color: var(--body); margin-bottom: 24px; }
.story-wrap p strong { color: var(--text); }
.story-wrap p em { color: var(--teal); font-style: normal; font-weight: 600; }
.story-divider { width: 56px; height: 4px; background: linear-gradient(90deg, var(--teal), var(--teal-dark)); border-radius: 2px; margin: 40px 0; }
.story-quote {
  font-size: 26px; font-weight: 800; color: var(--text); line-height: 1.45;
  margin: 48px 0; padding-left: 28px; border-left: 5px solid;
  border-image: linear-gradient(180deg, var(--amber), #FF6B35) 1;
}
.story-cta { margin-top: 48px; }
.story-cta .btn { padding: 18px 36px; font-size: 17px; }

/* ========== BEFORE/AFTER GRID ========== */
.ba-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
@media (max-width: 860px) { .ba-grid { grid-template-columns: 1fr !important; } }

/* ========== GROWTH GRID ========== */
.growth-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 32px; }
@media (max-width: 860px) { .growth-grid { grid-template-columns: 1fr !important; } }

/* ========== STAT BAR ========== */
.stat-bar {
  display: flex;
  justify-content: center;
  gap: 0;
  background: #0A0E14;
  padding: 18px 0;
  border-bottom: 3px solid var(--teal);
}
.stat-bar-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  max-width: var(--max);
  width: 100%;
  padding: 0 28px;
}
.stat-bar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 28px;
  border-right: 1px solid rgba(255,255,255,.1);
}
.stat-bar-item:last-child { border-right: none; }
@media (max-width: 760px) {
  .stat-bar-item { padding: 8px 16px; border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .stat-bar-item:last-child { border-bottom: none; }
}
.stat-bar-num {
  font-size: 22px;
  font-weight: 800;
  color: var(--teal);
  font-variant-numeric: tabular-nums;
}
.stat-bar-label {
  font-size: 12px;
  color: #8893a4;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* ========== BY THE NUMBERS SECTION ========== */
.numbers-section {
  background: #0A0E14;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
/* numbers-section::before removed */
/* numbers-section::after removed */
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 48px;
  position: relative;
  z-index: 1;
}
@media (max-width: 860px) { .numbers-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; } }
@media (max-width: 480px) { .numbers-grid { grid-template-columns: 1fr; } }
.number-card {
  text-align: center;
  position: relative;
}
.number-card .big-num {
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, var(--teal) 0%, #4FC3D3 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-variant-numeric: tabular-nums;
}
.number-card .big-num.amber {
  background: linear-gradient(135deg, var(--amber) 0%, #FF6B35 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.number-card .num-label {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  margin-top: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* ========== URGENCY BADGE ========== */
.urgency-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,146,17,.12);
  border: 1px solid rgba(232,146,17,.3);
  color: var(--amber);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 16px;
}
.urgency-badge .pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--amber);
  animation: pulse-amber 2s ease-in-out infinite;
}
@keyframes pulse-amber {
  0%, 100% { opacity: .5; }
  50% { opacity: 1; }
}

/* ========== FRAUD DETECTION TOP BAR ========== */
.fraud-detection-bar {
  background: #0A0E14;
  border-bottom: 1px solid rgba(0,148,168,.2);
  position: relative;
  z-index: 99;
}
.fraud-detection-bar .wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  padding: 9px 28px;
}
.fd-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #4FC3D3;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .02em;
}
.fd-divider {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,.15);
  flex-shrink: 0;
}
.fd-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2D9B5C;
  animation: fd-pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes fd-pulse {
  0%, 100% { opacity: .5; }
  50% { opacity: 1; }
}

/* ========== PRICING SECTION ========== */
.pricing-section { padding: 84px 0; background: var(--bg-alt); }
.pricing-header { text-align: center; margin-bottom: 56px; }
.pricing-header .kicker {
  display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 14px;
  padding: 7px 16px; background: var(--teal-light); border-radius: 20px;
  border: 1px solid rgba(0,148,168,.15);
}
.pricing-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px; max-width: 820px; margin: 0 auto;
}
@media (max-width: 760px) { .pricing-grid { grid-template-columns: 1fr; } }
.pricing-card {
  background: #fff; border: 1px solid var(--rule); border-radius: var(--radius);
  padding: 40px 36px; position: relative; overflow: hidden;
  transition: all .3s cubic-bezier(.32,.72,0,1);
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pricing-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  transform: scaleX(0); transform-origin: left; transition: transform .3s ease;
}
.pricing-card-base::before { background: linear-gradient(90deg, var(--teal), var(--teal-dark)); }
.pricing-card-usage::before { background: linear-gradient(90deg, var(--amber), #FF6B35); }
.pricing-card:hover::before { transform: scaleX(1); }
.pricing-card-tag {
  font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 10px;
}
.pricing-amount {
  font-size: 52px; font-weight: 800; color: var(--text); line-height: 1;
  letter-spacing: -.03em; margin-bottom: 6px; font-variant-numeric: tabular-nums;
}
.pricing-amount .currency { font-size: 26px; vertical-align: top; margin-right: 2px; font-weight: 600; color: var(--muted); }
.pricing-amount .per { font-size: 18px; font-weight: 600; color: var(--muted); margin-left: 4px; }
.pricing-card-name {
  font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 24px;
  padding-bottom: 20px; border-bottom: 1px solid var(--rule-light);
}
.pricing-features { list-style: none; }
.pricing-features li {
  font-size: 14.5px; color: var(--body); padding: 8px 0; padding-left: 26px;
  position: relative;
}
.pricing-features li::before {
  content: ''; position: absolute; left: 0; top: 13px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--teal-light);
}
.pricing-features li::after {
  content: ''; position: absolute; left: 5px; top: 17px;
  width: 6px; height: 3px; border-left: 2px solid var(--teal);
  border-bottom: 2px solid var(--teal); transform: rotate(-45deg);
}
.pricing-card-usage .pricing-features li::before { background: var(--amber-light); }
.pricing-card-usage .pricing-features li::after {
  border-color: var(--amber);
}
.pricing-note {
  text-align: center; margin-top: 36px; font-size: 14px; color: var(--muted); font-weight: 600;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: #fff; padding: 20px; border-bottom: 1px solid var(--rule); box-shadow: var(--shadow-lg); z-index: 102; }
  .nav-links.open a { padding: 12px 0; }
  .nav-links.open .nav-cta { margin-top: 8px; text-align: center; }
  .mobile-toggle { display: block; }
  .hero { padding: 56px 0 48px; }
  section { padding: 64px 0; }
  .story-section { padding: 64px 0; }
  .story-wrap p { font-size: 18px; }
  .story-quote { font-size: 22px; }
}
/* Contact page responsive grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
}
