/* ================================================================
   USX CYBER — CMMC 2.0 PAGE
   Dynamic Defense | CMMC 2.0 Compliance & Certification
   ================================================================ */

/* ── Design Tokens ─────────────────────────────────────────────── */
:root {
  --cida:      #44d7b6;
  --principle: #4fabbd;
  --deep:      #006e7b;
  --alert:     #f1754a;
  --bg:        #07080B;
  --bg2:       #0C0F14;
  --bg3:       #111620;
  --surface:   #161D2A;
  --text:      #EEF2F8;
  --muted:     #9BB8CC;
  --faint:     rgba(255,255,255,.04);
  --border:    rgba(68,215,182,0.13);
  --font-d:    'Outfit',  sans-serif;
  --font-b:    'DM Sans', sans-serif;
  --max-w:     1200px;
  --nav-h:     68px;
  --r:         6px;
  --ease:      cubic-bezier(.4, 0, .2, 1);
  --tr:        all .2s var(--ease);
}

/* ── Reset ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-b);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  background-image: radial-gradient(rgba(68,215,182,.05) 1px, transparent 1px);
  background-size: 32px 32px;
}
img { max-width: 100%; height: auto; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }
strong { color: var(--text); font-weight: 600; }

/* ── Container ──────────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 36px; }

/* ── Headings ───────────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-d);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.02em;
}
.sec-h { font-size: clamp(32px,5vw,56px); margin-bottom: 20px; letter-spacing: -.025em; }

/* ── Eyebrow ─────────────────────────────────────────────────────── */
.eyebrow {
  display: inline-block; font-family: var(--font-d);
  font-size: 11px; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--cida); margin-bottom: 20px;
}

/* ── Buttons ─────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-d); font-size: 14px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 14px 30px; border-radius: var(--r);
  transition: var(--tr); cursor: pointer; border: none;
}
.btn-cta { background: var(--principle); color: #fff; font-size: 16px; padding: 16px 36px; }
.btn-cta:hover { background: #5cbece; box-shadow: 0 0 32px rgba(79,171,189,.45); transform: translateY(-2px); }
.btn-cida { background: var(--cida); color: #000; }
.btn-cida:hover { background: #5ce8c7; box-shadow: 0 0 28px rgba(68,215,182,.35); transform: translateY(-2px); }
.btn-outline {
  background: transparent; color: var(--text);
  border: 1px solid rgba(255,255,255,.18); font-size: 16px; padding: 16px 36px;
}
.btn-outline:hover { border-color: var(--cida); color: var(--cida); background: rgba(68,215,182,.04); }
.btn-block { width: 100%; justify-content: center; }
.btn-sm { font-size: 12px; padding: 10px 20px; }
.btn-lg { font-size: 17px; padding: 20px 48px; }

/* ── Scroll-reveal ───────────────────────────────────────────────── */
[data-reveal] {
  opacity: 0; transform: translateY(22px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}
[data-reveal-right] {
  opacity: 0; transform: translateX(22px);
  transition: opacity .65s var(--ease) .12s, transform .65s var(--ease) .12s;
}
.revealed { opacity: 1 !important; transform: translate(0,0) !important; }
[data-reveal-stagger] > * {
  opacity: 0; transform: translateY(18px);
  transition: opacity .55s var(--ease), transform .55s var(--ease);
}
[data-reveal-stagger].revealed > *:nth-child(1) { transition-delay: 0s;   opacity: 1; transform: none; }
[data-reveal-stagger].revealed > *:nth-child(2) { transition-delay: .1s;  opacity: 1; transform: none; }
[data-reveal-stagger].revealed > *:nth-child(3) { transition-delay: .2s;  opacity: 1; transform: none; }
[data-reveal-stagger].revealed > *:nth-child(4) { transition-delay: .3s;  opacity: 1; transform: none; }
[data-reveal-stagger].revealed > *:nth-child(5) { transition-delay: .4s;  opacity: 1; transform: none; }
[data-reveal-stagger].revealed > *:nth-child(6) { transition-delay: .5s;  opacity: 1; transform: none; }
[data-reveal-stagger].revealed > *:nth-child(7) { transition-delay: .55s; opacity: 1; transform: none; }
[data-reveal-stagger].revealed > *:nth-child(8) { transition-delay: .6s;  opacity: 1; transform: none; }


/* ================================================================
   ANIMATIONS
   ================================================================ */
@keyframes orbDrift {
  0%, 100% { transform: translate(0, 0); }
  33%       { transform: translate(30px, -20px); }
  66%       { transform: translate(-20px, 30px); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeLeft {
  from { opacity: 0; transform: translateX(28px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes frameGlow {
  0%,100% { box-shadow: 0 0 0 1px rgba(68,215,182,.06), 0 0 50px rgba(68,215,182,.07), 0 30px 80px rgba(0,0,0,.65); }
  50%      { box-shadow: 0 0 0 1px rgba(68,215,182,.16), 0 0 90px rgba(68,215,182,.14), 0 30px 80px rgba(0,0,0,.65); }
}
@keyframes badgeFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-9px); }
}
@keyframes sbShimmer {
  from { transform: translateX(-100%); }
  to   { transform: translateX(100%); }
}


/* ================================================================
   NAVIGATION
   ================================================================ */
.nav-wrap {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: var(--nav-h);
  background: rgba(7,8,11,.65);
  backdrop-filter: blur(22px); -webkit-backdrop-filter: blur(22px);
  border-bottom: 1px solid rgba(68,215,182,.06); transition: var(--tr);
}
.nav-wrap.scrolled {
  background: rgba(7,8,11,.96); border-bottom-color: var(--border);
  box-shadow: 0 4px 32px rgba(0,0,0,.55);
}
.nav-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 36px; height: 100%;
  display: flex; align-items: center;
}
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo img { height: 42px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 26px; margin-left: 44px; }
.nav-links a { font-size: 13px; font-weight: 500; color: var(--muted); letter-spacing: .02em; transition: color .15s; }
.nav-links a:hover { color: var(--text); }
.nav-links a.active { color: var(--cida); }
.nav-mobile-cta { display: none; }
.nav-right { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.nav-login { font-size: 13px; font-weight: 500; color: var(--muted); padding: 8px 14px; transition: color .15s; }
.nav-login:hover { color: var(--text); }
.nav-cta {
  font-family: var(--font-d); font-size: 13px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 10px 22px; border-radius: var(--r);
  background: var(--principle); color: #fff; transition: all .17s; white-space: nowrap;
}
.nav-cta:hover { background: #5cbece; box-shadow: 0 0 20px rgba(79,171,189,.35); }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px; margin-left: 16px;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--tr); }
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }


/* ================================================================
   HERO
   ================================================================ */
.hero {
  min-height: 100vh; display: flex; flex-direction: column;
  position: relative; overflow: hidden;
}
.hero-orb { position: absolute; border-radius: 50%; pointer-events: none; z-index: 0; }
.hero-orb-1 {
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(68,215,182,.07) 0%, transparent 60%);
  top: -250px; right: -180px; animation: orbDrift 12s ease-in-out infinite;
}
.hero-orb-2 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0,110,123,.09) 0%, transparent 60%);
  bottom: -150px; left: -180px; animation: orbDrift 14s ease-in-out infinite reverse;
}
.hero-orb-3 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(79,171,189,.05) 0%, transparent 60%);
  top: 30%; left: 30%; animation: orbDrift 10s ease-in-out infinite 2s;
}

.hero-body {
  position: relative; z-index: 1; flex: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 64px;
  padding-top: calc(var(--nav-h) + 88px);
  padding-bottom: 60px;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-d); font-size: 11px; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--cida); margin-bottom: 32px;
  animation: fadeUp .5s ease both .05s;
}
.eyebrow-line { width: 28px; height: 1px; background: var(--cida); flex-shrink: 0; }
.hero-text h1 {
  font-size: clamp(40px, 5.8vw, 76px);
  letter-spacing: -.03em; line-height: 1.0; margin-bottom: 28px;
  animation: fadeUp .55s ease both .15s;
}
.h1-white { display: block; color: var(--text); }
.h1-cida  { display: block; color: var(--cida); }
.h1-blue  { display: block; color: var(--principle); }
.hero-lede {
  font-size: clamp(15px, 1.6vw, 18px); color: var(--muted);
  line-height: 1.78; max-width: 520px; margin-bottom: 40px;
  animation: fadeUp .5s ease both .25s;
}
.hero-ctas {
  display: flex; gap: 14px; flex-wrap: wrap;
  animation: fadeUp .5s ease both .35s;
}
.hero-visual { position: relative; animation: fadeLeft .65s ease both .2s; }

/* Compliance hero stats panel — shared class */
.compliance-hero-panel {
  background: var(--bg2); border: 1px solid var(--border); border-radius: 10px;
  overflow: hidden; animation: frameGlow 5s ease-in-out infinite;
}
.chp-header {
  padding: 18px 24px; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 12px;
}
.chp-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--cida); }
.chp-title { font-family: var(--font-d); font-size: 11px; font-weight: 700; letter-spacing: .1em; color: var(--muted); }
.chp-body { padding: 28px 24px; display: flex; flex-direction: column; gap: 14px; }
.chp-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 16px; background: var(--bg3); border-radius: 6px;
  border-left: 2px solid transparent; transition: border-color .2s;
}
.chp-row:hover { border-left-color: var(--cida); }
.chp-fw { font-family: var(--font-d); font-size: 13px; font-weight: 700; color: var(--text); }
.chp-status { display: flex; align-items: center; gap: 8px; }
.chp-bar { width: 80px; height: 4px; background: var(--bg); border-radius: 2px; overflow: hidden; }
.chp-fill { height: 100%; border-radius: 2px; background: linear-gradient(90deg, var(--cida), var(--principle)); }
.chp-pct { font-family: var(--font-d); font-size: 12px; font-weight: 700; color: var(--cida); min-width: 34px; text-align: right; }

/* Floating badges */
.float-badge {
  position: absolute;
  background: rgba(11,14,20,.95); border: 1px solid var(--border);
  border-radius: var(--r); padding: 12px 18px; backdrop-filter: blur(14px);
}
.float-badge-tl { bottom: -22px; left: -32px; animation: badgeFloat 4.5s ease-in-out infinite; }
.float-badge-br { top: 36px; right: -32px; animation: badgeFloat 4.5s ease-in-out infinite 2.2s; }
.fb-num {
  display: block; font-family: var(--font-d); font-size: 22px; font-weight: 800;
  color: var(--cida); line-height: 1; margin-bottom: 3px;
}
.fb-label { display: block; font-size: 11px; color: var(--muted); white-space: nowrap; }


/* ================================================================
   SECTION — SHARED
   ================================================================ */
section { padding: 108px 0; }
.sec-intro { max-width: 660px; margin-bottom: 52px; }
.sec-intro.center { margin-inline: auto; text-align: center; }
.sec-intro.center p { margin-inline: auto; }
.sec-intro h2 { font-size: clamp(28px, 3.5vw, 48px); margin-bottom: 16px; }
.sec-intro p  { font-size: 16px; color: var(--muted); line-height: 1.75; max-width: 580px; }


/* ================================================================
   STATEMENT BAR
   ================================================================ */
.statement-bar { background: var(--cida); position: relative; z-index: 1; overflow: hidden; }
.statement-bar::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(100deg, transparent 20%, rgba(255,255,255,.18) 50%, transparent 80%);
  animation: sbShimmer 3.5s ease infinite;
}
.sb-inner { display: flex; align-items: stretch; position: relative; }
.sb-text {
  flex: 1; padding: 26px 0;
  font-family: var(--font-d); font-size: clamp(16px, 2.1vw, 22px); font-weight: 700;
  color: #000; line-height: 1.2; letter-spacing: -.01em;
}
.sb-link {
  background: #000; padding: 26px 44px;
  display: flex; align-items: center; font-family: var(--font-d); font-size: 12px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--cida); white-space: nowrap; transition: background .15s; flex-shrink: 0;
}
.sb-link:hover { background: #111; }


/* ================================================================
   WHAT IS CMMC 2.0 — Background info
   ================================================================ */
.section-what { background: var(--bg2); }

.what-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}
.what-left h2 { font-size: clamp(28px, 3.2vw, 44px); margin-bottom: 24px; }
.what-left p  { font-size: 15px; color: var(--muted); line-height: 1.8; }
.what-left p + p { margin-top: 14px; }

.what-stats { display: flex; flex-direction: column; gap: 16px; }
.stat-card {
  background: var(--bg3); border: 1px solid var(--border); border-radius: 8px;
  padding: 28px 28px; border-left: 3px solid var(--cida);
  transition: transform .2s, box-shadow .2s;
}
.stat-card:hover { transform: translateY(-3px); box-shadow: 0 16px 44px rgba(0,0,0,.4); }
.stat-num {
  font-family: var(--font-d); font-size: clamp(32px, 4vw, 48px); font-weight: 900;
  color: var(--cida); line-height: 1; margin-bottom: 6px;
}
.stat-label { font-size: 13px; color: var(--muted); line-height: 1.5; }


/* ================================================================
   THE 3 CMMC LEVELS
   ================================================================ */
.section-levels { background: var(--bg); }

.levels-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.level-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 10px; padding: 40px 32px;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.level-card:hover { transform: translateY(-5px); box-shadow: 0 24px 60px rgba(0,0,0,.4); }
.level-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
}
.level-1::before { background: var(--muted); }
.level-2::before { background: linear-gradient(90deg, var(--cida), var(--principle)); }
.level-3::before { background: var(--principle); }

.level-card.level-2 {
  background: var(--surface); border-color: rgba(68,215,182,.3);
}
.level-card.level-2:hover { border-color: rgba(68,215,182,.55); }

.level-badge {
  font-family: var(--font-d); font-size: 9px; font-weight: 800;
  letter-spacing: .2em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px; border-radius: 3px; margin-bottom: 18px; align-self: flex-start;
}
.level-1 .level-badge { background: rgba(155,184,204,.1); color: var(--muted); }
.level-2 .level-badge { background: rgba(68,215,182,.15); color: var(--cida); }
.level-3 .level-badge { background: rgba(79,171,189,.15); color: var(--principle); }

.level-recommended {
  background: rgba(68,215,182,.1); border: 1px solid rgba(68,215,182,.25);
  border-radius: 3px; padding: 3px 10px;
  font-family: var(--font-d); font-size: 9px; font-weight: 700;
  letter-spacing: .15em; color: var(--cida);
}

.level-card h3 {
  font-family: var(--font-d); font-size: 22px; font-weight: 800;
  color: var(--text); margin-bottom: 8px;
}
.level-subtitle {
  font-size: 12px; color: var(--principle); font-weight: 600;
  letter-spacing: .02em; margin-bottom: 20px; padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.level-practices {
  font-family: var(--font-d); font-size: 28px; font-weight: 900;
  color: var(--cida); margin-bottom: 4px;
}
.level-practices-label {
  font-size: 11px; color: var(--muted); margin-bottom: 18px;
}
.level-list { display: flex; flex-direction: column; gap: 10px; }
.level-list li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 13px; color: var(--muted); line-height: 1.5;
}
.level-list li::before { content: '→'; color: var(--cida); font-weight: 700; flex-shrink: 0; font-size: 10px; margin-top: 2px; }
.level-note {
  margin-top: 20px; padding: 14px 16px;
  background: rgba(68,215,182,.08); border-left: 2px solid var(--cida);
  border-radius: 0 4px 4px 0;
  font-size: 12px; color: var(--cida); font-style: italic; line-height: 1.5;
}


/* ================================================================
   GUARDIENT MAPS TO CMMC
   ================================================================ */
.section-platform { background: var(--bg2); }

.platform-split {
  display: grid; grid-template-columns: 5fr 7fr; gap: 80px; align-items: start;
}
.platform-left h2 { font-size: clamp(28px, 3.2vw, 44px); margin-bottom: 16px; }
.platform-left p  { font-size: 15px; color: var(--muted); line-height: 1.8; }

.diff-list { display: flex; flex-direction: column; gap: 0; }
.diff-item {
  display: grid; grid-template-columns: 52px 1fr; gap: 24px;
  padding: 32px 0; border-bottom: 1px solid rgba(255,255,255,.05);
  align-items: flex-start; transition: opacity .2s;
}
.diff-item:last-child { border-bottom: none; }
.diff-item:hover .diff-num { color: rgba(68,215,182,.45); }
.diff-num {
  font-family: var(--font-d); font-size: 44px; font-weight: 900;
  color: rgba(68,215,182,.13); line-height: 1; transition: color .2s;
}
.diff-body h3 {
  font-family: var(--font-d); font-size: 17px; font-weight: 700;
  color: var(--text); margin-bottom: 8px; padding-top: 5px;
}
.diff-body p { font-size: 13.5px; color: var(--muted); line-height: 1.75; }


/* ================================================================
   ASSESSMENT PROCESS — TIMELINE
   ================================================================ */
.section-process { background: var(--bg); }

.process-steps { display: flex; flex-direction: column; gap: 0; position: relative; }
.process-steps::before {
  content: ''; position: absolute; left: 28px; top: 0; bottom: 0;
  width: 1px; background: linear-gradient(to bottom, var(--cida), transparent);
  opacity: .2;
}
.process-step {
  display: grid; grid-template-columns: 60px 1fr; gap: 32px;
  padding: 36px 0; align-items: flex-start;
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: opacity .2s;
}
.process-step:last-child { border-bottom: none; }
.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--bg2); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-d); font-size: 18px; font-weight: 900;
  color: var(--cida); flex-shrink: 0; position: relative; z-index: 1;
  transition: background .2s, border-color .2s;
}
.process-step:hover .step-num {
  background: rgba(68,215,182,.1); border-color: var(--cida);
}
.step-body { padding-top: 10px; }
.step-body h3 {
  font-family: var(--font-d); font-size: 19px; font-weight: 700;
  color: var(--text); margin-bottom: 8px;
}
.step-body p { font-size: 14px; color: var(--muted); line-height: 1.8; }
.step-callout {
  display: inline-block; margin-top: 12px;
  background: rgba(68,215,182,.08); border-left: 2px solid var(--cida);
  padding: 8px 14px; border-radius: 0 4px 4px 0;
  font-size: 12px; color: var(--cida); font-style: italic;
}


/* ================================================================
   WHAT'S INCLUDED — ENGAGEMENT OPTIONS
   ================================================================ */
.section-packages { background: var(--bg2); }

.packages-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.package-card {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: 10px; padding: 44px 36px;
  display: flex; flex-direction: column; position: relative; overflow: hidden;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.package-card:hover { transform: translateY(-5px); box-shadow: 0 24px 60px rgba(0,0,0,.4); }
.package-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
}
.package-readiness::before { background: var(--principle); }
.package-full::before      { background: linear-gradient(90deg, var(--cida), var(--principle)); }

.package-full {
  background: var(--surface); border-color: rgba(68,215,182,.28);
}
.package-full:hover { border-color: rgba(68,215,182,.5); }

.package-tag {
  font-family: var(--font-d); font-size: 9px; font-weight: 800;
  letter-spacing: .2em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px; border-radius: 3px; margin-bottom: 18px; align-self: flex-start;
}
.package-readiness .package-tag { background: rgba(79,171,189,.15); color: var(--principle); }
.package-full .package-tag      { background: rgba(68,215,182,.15); color: var(--cida); }

.package-most-complete {
  background: rgba(68,215,182,.1); border: 1px solid rgba(68,215,182,.25);
  border-radius: 3px; padding: 3px 10px;
  font-family: var(--font-d); font-size: 9px; font-weight: 700;
  letter-spacing: .15em; color: var(--cida);
}

.package-card h3 {
  font-family: var(--font-d); font-size: 24px; font-weight: 800;
  color: var(--text); margin-bottom: 10px;
}
.package-subtitle {
  font-size: 12px; color: var(--principle); font-weight: 600;
  letter-spacing: .02em; margin-bottom: 24px; padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.package-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; flex: 1; }
.package-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; color: var(--muted); line-height: 1.5;
}
.package-list li::before { content: '✓'; color: var(--cida); font-weight: 700; flex-shrink: 0; }
.package-price {
  font-size: 13px; color: var(--muted); padding: 14px 16px;
  background: rgba(255,255,255,.04); border-radius: 4px; line-height: 1.5;
  border-left: 2px solid rgba(68,215,182,.3);
}


/* ================================================================
   FAQ
   ================================================================ */
.section-faq { background: var(--bg); }

.faq-list { display: flex; flex-direction: column; gap: 20px; }
.faq-item {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 8px; padding: 32px 36px;
  border-left: 3px solid var(--cida);
  transition: transform .2s, box-shadow .2s;
}
.faq-item:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(0,0,0,.3); }
.faq-q {
  font-family: var(--font-d); font-size: 17px; font-weight: 700;
  color: var(--text); margin-bottom: 14px; line-height: 1.3;
}
.faq-a { font-size: 14px; color: var(--muted); line-height: 1.8; }


/* ================================================================
   DEMO CTA
   ================================================================ */
.section-demo { background: var(--bg2); }
.demo-cta-inner {
  max-width: 760px; margin: 0 auto; text-align: center;
}
.demo-cta-inner h2 { font-size: clamp(30px, 4vw, 52px); margin-bottom: 18px; }
.demo-cta-inner p  { font-size: 16px; color: var(--muted); line-height: 1.8; margin-bottom: 40px; }
.demo-cta-inner .btn-lg { margin: 0 auto; }


/* ================================================================
   FOOTER
   ================================================================ */
.site-footer { background: #000; border-top: 1px solid rgba(68,215,182,.07); padding: 64px 0 32px; }
.ft-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 56px; margin-bottom: 48px; }
.ft-logo    { height: 44px; width: auto; margin-bottom: 14px; }
.ft-tagline {
  font-family: var(--font-d); font-size: 10px; font-weight: 700;
  letter-spacing: .24em; text-transform: uppercase; color: var(--cida); margin-bottom: 10px;
}
.ft-desc { font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.75; max-width: 260px; }
.ft-addr { font-size: 12px; color: rgba(255,255,255,.55); line-height: 1.75; margin-top: 14px; }
.ft-col h4 {
  font-family: var(--font-d); font-size: 10px; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,.28); margin-bottom: 18px;
}
.ft-col ul { display: flex; flex-direction: column; gap: 10px; }
.ft-col a  { font-size: 13px; color: rgba(255,255,255,.65); transition: color .15s; }
.ft-col a:hover { color: var(--cida); }
.ft-bottom {
  border-top: 1px solid rgba(255,255,255,.05); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
}
.ft-bottom p { font-size: 12px; color: rgba(255,255,255,.55); }
.ft-awards { display: flex; gap: 12px; align-items: center; }
.ft-awards img {
  height: 56px; width: auto; object-fit: contain;
  opacity: .9; filter: none; transition: opacity .2s;
}
.ft-awards img:hover { opacity: 1; }


/* ================================================================
   RESPONSIVE — TABLET  (≤ 1024px)
   ================================================================ */
@media (max-width: 1024px) {
  :root { --nav-h: 64px; }
  section { padding: 88px 0; }
  .container { padding: 0 28px; }

  .nav-links { display: none; }
  .nav-right  { display: none; }
  .nav-toggle { display: flex; margin-left: auto; }

  .hero-body {
    grid-template-columns: 1fr; gap: 48px;
    padding-top: calc(var(--nav-h) + 64px);
    padding-bottom: 40px; text-align: center;
  }
  .hero-visual  { order: -1; }
  .hero-ctas    { justify-content: center; }
  .hero-lede    { max-width: 100%; margin-inline: auto; }
  .float-badge  { display: none; }

  .what-split       { grid-template-columns: 1fr; gap: 48px; }
  .platform-split   { grid-template-columns: 1fr; gap: 48px; }
  .levels-grid      { grid-template-columns: 1fr; }
  .packages-grid    { grid-template-columns: 1fr; }
  .ft-top           { grid-template-columns: 1fr 1fr; gap: 40px; }
}

/* Mobile nav overlay */
.nav-links.open {
  display: flex !important; flex-direction: column;
  position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: rgba(7,8,11,.97); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  padding: 36px 36px; gap: 0; z-index: 9999; overflow-y: auto;
}
.nav-links.open li { border-bottom: 1px solid rgba(255,255,255,.06); }
.nav-links.open a  {
  display: block; padding: 18px 0; font-size: 1.25rem; font-weight: 600;
  color: var(--text); letter-spacing: -.01em;
}
.nav-links.open a:hover { color: var(--cida); }
.nav-links.open .nav-mobile-cta { display: block; border-bottom: none; padding-top: 28px; }
.nav-links.open .nav-mobile-cta .btn { width: 100%; justify-content: center; font-size: 15px; padding: 15px 28px; }


/* ================================================================
   RESPONSIVE — MOBILE  (≤ 640px)
   ================================================================ */
@media (max-width: 640px) {
  .container { padding: 0 20px; }
  section { padding: 72px 0; }

  .hero-text h1   { font-size: clamp(36px, 10vw, 54px); }
  .hero-ctas      { flex-direction: column; align-items: center; }
  .hero-ctas .btn { width: 100%; justify-content: center; }

  .process-steps::before { display: none; }
  .process-step { grid-template-columns: 1fr; gap: 16px; }
  .ft-top     { grid-template-columns: 1fr; }
  .sb-link    { display: none; }
  .demo-cta-inner .btn-lg { width: 100%; justify-content: center; }
}

@media (max-width: 400px) {
  :root { --nav-h: 60px; }
  .nav-logo img { height: 34px; }
}
