/* ═══════════════════════════════════════════════════════════════════════
   AISP Shield — Enterprise Design System
   Palantir × Salesforce × Microsoft Security × Gartner
   Navy · Gold · White · Enterprise Premium
   ═══════════════════════════════════════════════════════════════════════ */

/* ── CSS Custom Properties ─────────────────────────────────────────── */
:root {
  /* Brand colors */
  --navy:          #0B1F3A;
  --navy-mid:      #0d2347;
  --navy-light:    #162f52;
  --navy-card:     #0e2441;
  --navy-deep:     #070F1E;
  --gold:          #C9A84C;
  --gold-light:    #E0C068;
  --gold-dark:     #A07830;
  --gold-glow:     rgba(201,168,76,0.12);
  --gold-border:   rgba(201,168,76,0.30);
  --gold-hover:    rgba(201,168,76,0.90);
  /* Neutral */
  --white:         #FFFFFF;
  --off-white:     #F7F9FC;
  --gray-100:      #F1F5F9;
  --gray-200:      #E2E8F0;
  --gray-400:      #94A3B8;
  --gray-600:      #5A6B82;
  --gray-800:      #1A2B42;
  /* Text */
  --text-main:     #1A2B42;
  --text-muted:    #5A6B82;
  --text-light:    rgba(255,255,255,0.72);
  --text-faint:    rgba(255,255,255,0.38);
  /* Status */
  --red:           #C0392B;
  --red-mid:       #E74C3C;
  --amber:         #F39C12;
  --green:         #27AE60;
  --teal:          #10B981;
  /* Borders */
  --border-dark:   rgba(255,255,255,0.09);
  --border-light:  #E2E8F0;
  --border-gold:   rgba(201,168,76,0.28);
  /* Shadows */
  --shadow-sm:     0 1px 4px rgba(0,0,0,0.07);
  --shadow-md:     0 4px 20px rgba(0,0,0,0.11);
  --shadow-lg:     0 8px 40px rgba(0,0,0,0.16);
  --shadow-xl:     0 20px 60px rgba(0,0,0,0.22);
  /* Radii */
  --r-sm:          6px;
  --r-md:          12px;
  --r-lg:          20px;
  --r-xl:          28px;
  /* Transitions */
  --t-fast:        0.15s ease;
  --t-base:        0.22s ease;
  --t-slow:        0.38s ease;
}

/* ── Reset & Base ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--white);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,h2,h3,h4,h5,h6 { font-weight: 700; line-height: 1.2; }
p { line-height: 1.75; }
img { max-width: 100%; display: block; }
a { text-decoration: none; transition: color var(--t-base); }
button { font-family: inherit; }
ul, ol { list-style: none; }

/* ── Layout Containers ──────────────────────────────────────────────── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }
.section--light  { background: var(--off-white); }
.section--dark   { background: var(--navy); color: var(--white); }
.section--navy-mid { background: var(--navy-mid); color: var(--white); }
.section--form   { background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 60%, var(--navy-mid) 100%); color: var(--white); }
.section--cta    { background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 50%, #0a1a30 100%); color: var(--white); }

/* ── Section Headers ────────────────────────────────────────────────── */
.section-header { margin-bottom: 60px; }
.section-header--center { text-align: center; }
.section-header--center .section-subtitle { margin: 0 auto; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.70rem;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  width: 22px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  flex-shrink: 0;
}

.section-title {
  font-size: clamp(1.9rem, 3.5vw, 2.7rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--text-main);
  margin-bottom: 18px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 640px;
  line-height: 1.8;
}

/* ── Scroll Animation ───────────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
/* Hero elements always visible (above the fold) */
#hero .fade-up {
  opacity: 1;
  transform: translateY(0);
}

/* ── Buttons ────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: none;
  border-radius: var(--r-sm);
  padding: 13px 26px;
  cursor: pointer;
  transition: all var(--t-base);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 4px 18px rgba(201,168,76,0.35);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,168,76,0.50);
  color: var(--navy);
}
.btn-primary:active { transform: translateY(0); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.30);
}
.btn-outline-white:hover {
  border-color: rgba(255,255,255,0.65);
  background: rgba(255,255,255,0.07);
  color: var(--white);
}

.btn-ghost-gold {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid rgba(201,168,76,0.45);
  padding: 12px 24px;
}
.btn-ghost-gold:hover {
  background: var(--gold-glow);
  border-color: var(--gold);
  color: var(--gold-light);
}

.btn-secondary {
  background: transparent;
  color: var(--text-main);
  border: 1.5px solid var(--border-light);
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold-dark); }
.section--dark .btn-secondary { color: var(--white); border-color: var(--border-dark); }
.section--dark .btn-secondary:hover { border-color: var(--gold); color: var(--gold); }

.btn-lg  { padding: 16px 34px; font-size: 0.93rem; border-radius: 9px; }
.btn-xl  { padding: 18px 40px; font-size: 0.97rem; border-radius: 10px; }

/* ══════════════════════════════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════════════════════════════ */
#shield-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  background: rgba(11,31,58,0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201,168,76,0.14);
  transition: background var(--t-base), box-shadow var(--t-base);
}
#shield-nav.scrolled {
  background: rgba(7,15,30,0.98);
  box-shadow: 0 4px 24px rgba(0,0,0,0.40);
}
.shield-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 66px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}
.shield-nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.shield-nav-brand img { height: 36px; width: 36px; object-fit: contain; }
.shield-nav-brand-name {
  font-size: 1.0rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.01em;
}
.shield-nav-brand-sub {
  font-size: 0.60rem;
  font-weight: 500;
  color: rgba(201,168,76,0.75);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  display: block;
  line-height: 1;
}
.shield-nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.shield-nav-link {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  padding: 6px 12px;
  border-radius: 6px;
  transition: color var(--t-fast), background var(--t-fast);
}
.shield-nav-link:hover { color: var(--white); background: rgba(255,255,255,0.06); }
.nav-menu-toggle {
  display: none;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.20);
  border-radius: 8px;
  color: var(--white);
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  cursor: pointer;
  transition: background var(--t-fast);
}
.nav-menu-toggle:hover { background: rgba(255,255,255,0.10); }
.shield-nav-mobile {
  display: none;
  flex-direction: column;
  background: rgba(7,15,30,0.99);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 8px 0 12px;
}
.shield-nav-mobile.open { display: flex; }
.shield-nav-mobile-link {
  font-size: 0.90rem;
  font-weight: 500;
  color: rgba(255,255,255,0.72);
  padding: 13px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.shield-nav-mobile-link:hover { color: var(--white); background: rgba(255,255,255,0.05); }
.shield-nav-mobile-link.gold { color: var(--gold); font-weight: 700; }

/* ══════════════════════════════════════════════════════════════════════
   HERO SECTION
══════════════════════════════════════════════════════════════════════ */
#hero {
  min-height: 100vh;
  background: var(--navy);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black 40%, transparent 100%);
}

.hero-glow {
  position: absolute;
  width: 700px; height: 700px;
  top: -150px; left: -180px;
  background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Hero Content */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.10);
  border: 1px solid rgba(201,168,76,0.28);
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(201,168,76,0.90);
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity:1; transform: scale(1); }
  50%      { opacity:0.5; transform: scale(0.7); }
}

.hero-headline {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin-bottom: 22px;
}
.hero-accent {
  color: var(--gold);
  display: inline-block;
  position: relative;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.80;
  margin-bottom: 32px;
  max-width: 560px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 18px 24px;
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(8px);
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0 20px;
}
.hero-stat:first-child { padding-left: 0; }
.hero-stat-num {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
}
.hero-stat-unit { font-size: 1rem; font-weight: 600; opacity: 0.7; }
.hero-stat-label { font-size: 0.68rem; color: rgba(255,255,255,0.40); text-transform: uppercase; letter-spacing: 0.08em; }
.hero-stat-div {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.10);
  margin: 0 4px;
}

/* Hero Visual — Dashboard */
.hero-visual { position: relative; z-index: 1; }

.hero-dashboard {
  background: rgba(13,36,64,0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(201,168,76,0.22);
  border-radius: 18px;
  overflow: hidden;
  box-shadow:
    0 2px 0 rgba(201,168,76,0.20) inset,
    0 24px 60px rgba(0,0,0,0.55),
    0 0 0 1px rgba(255,255,255,0.04) inset;
}

.db-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  background: rgba(0,0,0,0.20);
}
.db-header-left { display: flex; gap: 6px; align-items: center; }
.db-header-dot { width: 11px; height: 11px; border-radius: 50%; }
.dot-red    { background: #FF5F57; }
.dot-amber  { background: #FFBD2E; }
.dot-green  { background: #28C840; }
.db-title { font-size: 0.72rem; font-weight: 600; color: rgba(255,255,255,0.50); letter-spacing: 0.06em; }
.db-live { display: flex; align-items: center; gap: 5px; font-size: 0.66rem; color: var(--teal); font-weight: 600; }
.db-live-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--teal); animation: pulse-dot 1.6s ease-in-out infinite; }

.db-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.db-metric-card {
  background: rgba(11,31,58,0.60);
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.db-metric-label { font-size: 0.64rem; color: rgba(255,255,255,0.38); text-transform: uppercase; letter-spacing: 0.10em; }
.db-metric-value { font-size: 1.55rem; font-weight: 900; line-height: 1.1; letter-spacing: -0.03em; }
.db-metric-value.gold  { color: var(--gold); }
.db-metric-value.red   { color: var(--red-mid); }
.db-metric-value.green { color: var(--teal); }
.db-metric-denom { font-size: 0.75rem; opacity: 0.5; font-weight: 500; }
.db-metric-trend { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.03em; }
.db-metric-trend.down   { color: var(--red-mid); }
.db-metric-trend.up     { color: var(--teal); }
.db-metric-trend.neutral { color: rgba(255,255,255,0.35); }

.db-ibc-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.db-ibc-gauge { width: 56px; height: 56px; flex-shrink: 0; }
.db-ibc-gauge svg { width: 100%; height: 100%; }
.db-ibc-label { font-size: 0.62rem; color: rgba(255,255,255,0.38); text-transform: uppercase; letter-spacing: 0.10em; }
.db-ibc-score { font-size: 1.05rem; font-weight: 800; color: var(--gold); line-height: 1.1; }
.db-ibc-class { font-size: 0.62rem; color: rgba(255,255,255,0.45); }
.db-benchmark-pill {
  margin-left: auto;
  font-size: 0.60rem;
  font-weight: 700;
  color: rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 50px;
  padding: 4px 10px;
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.db-bars {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.db-bar-row { display: flex; align-items: center; gap: 8px; }
.db-bar-label { font-size: 0.64rem; color: rgba(255,255,255,0.40); width: 62px; flex-shrink: 0; }
.db-bar-track { flex: 1; height: 4px; background: rgba(255,255,255,0.07); border-radius: 2px; overflow: hidden; }
.db-bar-fill { height: 100%; width: var(--w); border-radius: 2px; transition: width 1.4s cubic-bezier(0.4,0,0.2,1); }
.db-bar-fill.level-critical { background: var(--red); }
.db-bar-fill.level-high     { background: var(--amber); }
.db-bar-fill.level-medium   { background: var(--gold); }
.db-bar-fill.level-good     { background: var(--teal); }
.db-bar-pct { font-size: 0.62rem; font-weight: 700; color: rgba(255,255,255,0.40); width: 28px; text-align: right; }

.db-ai-strip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  font-size: 0.66rem;
  color: rgba(201,168,76,0.60);
  background: rgba(201,168,76,0.04);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero-scroll-icon {
  width: 24px; height: 38px;
  border: 2px solid rgba(255,255,255,0.20);
  border-radius: 12px;
  position: relative;
}
.hero-scroll-icon::after {
  content: '';
  position: absolute;
  top: 6px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 8px;
  background: rgba(255,255,255,0.40);
  border-radius: 2px;
  animation: scroll-hint 2s ease-in-out infinite;
}
@keyframes scroll-hint {
  0%   { opacity: 1; transform: translateX(-50%) translateY(0); }
  75%  { opacity: 0; transform: translateX(-50%) translateY(10px); }
  100% { opacity: 0; transform: translateX(-50%) translateY(0); }
}

/* ══════════════════════════════════════════════════════════════════════
   SECTION 2 — RISK CARDS
══════════════════════════════════════════════════════════════════════ */
.risk-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.risk-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--r-md);
  padding: 26px 22px;
  transition: box-shadow var(--t-base), border-color var(--t-base), transform var(--t-base);
  position: relative;
  overflow: hidden;
}
.risk-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--red-mid));
  opacity: 0;
  transition: opacity var(--t-base);
}
.risk-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(192,57,43,0.25);
  transform: translateY(-3px);
}
.risk-card:hover::before { opacity: 1; }

.risk-card-icon-wrap {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(192,57,43,0.08);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.risk-icon { font-size: 1.1rem; color: var(--red); }
.risk-card-title { font-size: 0.92rem; font-weight: 700; color: var(--text-main); margin-bottom: 8px; }
.risk-card-desc { font-size: 0.80rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 14px; }
.risk-card-alert {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--red);
  background: rgba(192,57,43,0.07);
  border-radius: 4px;
  padding: 3px 8px;
}

.warning-strip {
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(135deg, rgba(192,57,43,0.06) 0%, rgba(231,76,60,0.04) 100%);
  border: 1px solid rgba(192,57,43,0.18);
  border-radius: var(--r-md);
  padding: 22px 28px;
  flex-wrap: wrap;
}
.warning-strip-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(192,57,43,0.10);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--red); font-size: 1.2rem;
}
.warning-strip-text {
  flex: 1;
  min-width: 200px;
  font-size: 0.90rem;
  color: var(--text-main);
  line-height: 1.65;
}
.warning-strip-text strong { color: var(--red); }

/* ══════════════════════════════════════════════════════════════════════
   SECTION 3 — TIMELINE
══════════════════════════════════════════════════════════════════════ */
.steps-timeline {
  max-width: 820px;
  margin: 0 auto;
}

.step-item {
  display: flex;
  gap: 28px;
  position: relative;
}
.step-item + .step-item { margin-top: 8px; }

.step-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.step-num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--navy);
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(201,168,76,0.15), 0 4px 12px rgba(201,168,76,0.30);
}

.step-connector {
  width: 2px;
  flex: 1;
  min-height: 24px;
  background: linear-gradient(to bottom, rgba(201,168,76,0.40), rgba(201,168,76,0.10));
  margin: 6px 0;
}

.step-body {
  padding: 4px 0 52px;
  flex: 1;
}

.step-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(201,168,76,0.10);
  color: var(--gold);
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.step-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}

.step-desc {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 14px;
}

.step-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.step-tag {
  font-size: 0.70rem;
  font-weight: 600;
  color: var(--gold);
  background: rgba(201,168,76,0.10);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 50px;
  padding: 3px 11px;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  vertical-align: middle;
}
.step-tag img {
  height: 14px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
  border-radius: 2px;
  max-width: 80px;
  object-fit: contain;
}

/* ══════════════════════════════════════════════════════════════════════
   SECTION 4 — IBC GAUGE
══════════════════════════════════════════════════════════════════════ */
.ibc-section-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.ibc-section-left .section-subtitle { margin-bottom: 36px; }

.ibc-bands {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ibc-band {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 10px 14px;
  transition: background var(--t-base);
}
.ibc-band:hover { background: rgba(255,255,255,0.06); }
.ibc-band-bar {
  width: 4px; height: 36px;
  border-radius: 2px;
  flex-shrink: 0;
}
.ibc-band-info { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.ibc-band-range { font-size: 0.72rem; font-weight: 700; color: rgba(255,255,255,0.35); width: 38px; flex-shrink: 0; }
.ibc-band-name  { font-size: 0.88rem; font-weight: 700; }
.ibc-band-desc  { font-size: 0.72rem; color: rgba(255,255,255,0.35); }

.ibc-section-right {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ibc-gauge-wrap {
  position: relative;
  width: 100%;
  max-width: 360px;
}
#ibc-gauge-svg { width: 100%; display: block; }

.ibc-gauge-center-display {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}
.ibc-gauge-num { font-size: 2.2rem; font-weight: 900; color: var(--white); line-height: 1; }
.ibc-gauge-label { font-size: 0.72rem; font-weight: 700; color: var(--gold); letter-spacing: 0.10em; text-transform: uppercase; margin-top: 4px; }
.ibc-gauge-sub { font-size: 0.64rem; color: rgba(255,255,255,0.35); margin-top: 2px; }

/* ══════════════════════════════════════════════════════════════════════
   SECTION 5 — DELIVERABLES
══════════════════════════════════════════════════════════════════════ */
.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.deliverable-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-md);
  padding: 28px 24px;
  transition: border-color var(--t-base), background var(--t-base), transform var(--t-base);
  position: relative;
}
.deliverable-card:hover {
  border-color: rgba(201,168,76,0.35);
  background: rgba(201,168,76,0.04);
  transform: translateY(-2px);
}
.deliverable-card--highlight {
  border-color: rgba(201,168,76,0.30);
  background: rgba(201,168,76,0.06);
}

.deliverable-icon {
  width: 46px; height: 46px;
  background: rgba(201,168,76,0.12);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem;
  color: var(--gold);
  margin-bottom: 16px;
}
.deliverable-title { font-size: 0.95rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.deliverable-desc  { font-size: 0.80rem; color: var(--text-light); line-height: 1.65; margin-bottom: 14px; }
.deliverable-badge {
  display: inline-block;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 4px;
  padding: 3px 8px;
}
.deliverable-badge--gold { color: var(--gold); background: rgba(201,168,76,0.10); border-color: rgba(201,168,76,0.25); }

/* ══════════════════════════════════════════════════════════════════════
   SECTION 6 — FORM
══════════════════════════════════════════════════════════════════════ */
.form-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.form-trust-intro {
  font-size: 0.93rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  margin-bottom: 32px;
}

.form-trust-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}
.form-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.form-trust-icon {
  width: 36px; height: 36px;
  background: rgba(201,168,76,0.12);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.form-trust-item strong { display: block; font-size: 0.88rem; color: var(--white); margin-bottom: 2px; }
.form-trust-item span  { font-size: 0.80rem; color: rgba(255,255,255,0.48); line-height: 1.55; }

.form-trust-logos { display: flex; flex-wrap: wrap; gap: 8px; }
.form-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.68rem;
  font-weight: 700;
  color: rgba(201,168,76,0.80);
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.18);
  border-radius: 50px;
  padding: 5px 12px;
}

/* Form Card */
.form-card {
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: 0 24px 64px rgba(0,0,0,0.40), 0 0 0 1px rgba(255,255,255,0.06);
  overflow: hidden;
}
.form-card-header {
  background: var(--navy);
  padding: 26px 28px 20px;
  border-bottom: 1px solid var(--border-light);
}
.form-card-title { font-size: 1.05rem; font-weight: 800; color: var(--white); margin-bottom: 4px; }
.form-card-sub   { font-size: 0.78rem; color: rgba(255,255,255,0.50); line-height: 1.5; }

.lead-form { padding: 24px 28px 28px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.form-group { display: flex; flex-direction: column; gap: 5px; margin-bottom: 0; }
.form-group:not(.form-row .form-group) { margin-bottom: 14px; }

.form-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}
.form-label span { color: var(--red); }

.form-input,
.form-select {
  width: 100%;
  padding: 10px 13px;
  border: 1.5px solid var(--border-light);
  border-radius: var(--r-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.86rem;
  color: var(--text-main);
  background: var(--white);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  appearance: none;
  -webkit-appearance: none;
}
.form-input::placeholder { color: var(--gray-400); }
.form-input:focus,
.form-select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}
.form-input.error,
.form-select.error {
  border-color: var(--red-mid);
  box-shadow: 0 0 0 3px rgba(231,76,60,0.10);
}
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%235A6B82' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
  cursor: pointer;
}

.form-checkbox-wrap {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}
.form-checkbox {
  width: 17px; height: 17px;
  margin-top: 2px;
  accent-color: var(--gold);
  flex-shrink: 0;
  cursor: pointer;
}
.form-checkbox-label {
  font-size: 0.76rem;
  color: var(--text-muted);
  line-height: 1.6;
  cursor: pointer;
}
.form-checkbox-label a { color: var(--gold-dark); text-decoration: underline; }
.form-checkbox-label a:hover { color: var(--gold); }

.form-submit-btn {
  width: 100%;
  justify-content: center;
  font-size: 0.95rem;
  padding: 15px 28px;
  border-radius: 9px;
}

.form-error {
  font-size: 0.78rem;
  color: var(--red-mid);
  text-align: center;
  margin-top: 10px;
  padding: 8px 12px;
  background: rgba(231,76,60,0.06);
  border-radius: 6px;
  border: 1px solid rgba(231,76,60,0.15);
}

/* ══════════════════════════════════════════════════════════════════════
   CTA FINAL
══════════════════════════════════════════════════════════════════════ */
.cta-inner {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
.cta-badge {
  width: 64px; height: 64px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 20px;
}
.cta-headline { color: var(--white); font-size: clamp(2rem, 4vw, 3rem); }
.cta-sub { margin: 0 auto 36px; color: var(--text-light); max-width: 520px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 24px; }
.cta-guarantee {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

/* ══════════════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════════════ */
.shield-footer {
  background: var(--navy-deep);
  border-top: 1px solid rgba(201,168,76,0.12);
  padding: 56px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand { display: flex; align-items: flex-start; gap: 12px; }
.footer-logo  { height: 40px; width: 40px; object-fit: contain; flex-shrink: 0; }
.footer-brand-name { font-size: 1.0rem; font-weight: 800; color: var(--white); }
.footer-reg    { font-size: 0.65rem; vertical-align: super; }
.footer-brand-sub { font-size: 0.78rem; color: rgba(255,255,255,0.50); margin-top: 3px; }
.footer-brand-by  { font-size: 0.68rem; color: rgba(201,168,76,0.60); margin-top: 4px; letter-spacing: 0.05em; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-link {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.50);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color var(--t-fast);
}
.footer-link:hover { color: var(--gold); }
.footer-link-icon { font-size: 0.55rem; opacity: 0.5; }
.footer-social-label {
  font-size: 0.68rem;
  font-weight: 700;
  color: rgba(255,255,255,0.28);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.footer-socials { display: flex; gap: 8px; }
.footer-social-link {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
  transition: all var(--t-fast);
}
.footer-social-link:hover {
  background: rgba(201,168,76,0.12);
  border-color: rgba(201,168,76,0.30);
  color: var(--gold);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  flex-wrap: wrap;
}
.footer-copy { font-size: 0.72rem; color: rgba(255,255,255,0.25); }
.footer-bottom-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.68rem;
  font-weight: 600;
  color: rgba(201,168,76,0.45);
  letter-spacing: 0.08em;
}

/* ══════════════════════════════════════════════════════════════════════
   MODAL — DIAGNOSTIC OVERLAY
══════════════════════════════════════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(5,12,24,0.90);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 32px 16px;
  overflow-y: auto;
}
.modal-overlay.active { display: flex; }

.modal-panel {
  background: var(--navy);
  border: 1px solid rgba(201,168,76,0.20);
  border-radius: 20px;
  width: 100%;
  max-width: 740px;
  position: relative;
  padding: 40px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.60);
  margin: auto;
}

.modal-close-btn {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 8px;
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--t-fast);
  z-index: 2;
}
.modal-close-btn:hover {
  background: rgba(231,76,60,0.15);
  border-color: rgba(231,76,60,0.30);
  color: var(--red-mid);
}

/* ── Diagnostic Quiz UI ─────────────────────────────────────────────── */
.diag-progress-wrap { margin-bottom: 28px; }
.diag-progress-info {
  display: flex;
  justify-content: space-between;
  font-size: 0.76rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 7px;
  font-weight: 500;
}
.diag-progress-track {
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
}
.diag-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  border-radius: 2px;
  transition: width 0.5s ease;
}

.diag-area-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.70rem;
  font-weight: 700;
  color: var(--gold);
  background: rgba(201,168,76,0.10);
  border: 1px solid rgba(201,168,76,0.22);
  border-radius: 50px;
  padding: 4px 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.diag-question-num {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.30);
  text-transform: uppercase;
  letter-spacing: 0.10em;
  font-weight: 600;
  margin-bottom: 10px;
}

.diag-question-text {
  font-size: 1.10rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.55;
  margin-bottom: 28px;
}

.diag-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.diag-option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border: 1.5px solid rgba(255,255,255,0.10);
  border-radius: 10px;
  cursor: pointer;
  transition: border-color var(--t-fast), background var(--t-fast);
  background: rgba(255,255,255,0.03);
}
.diag-option:hover {
  border-color: rgba(201,168,76,0.40);
  background: rgba(201,168,76,0.05);
}
.diag-option.selected {
  border-color: var(--gold);
  background: rgba(201,168,76,0.08);
}

.diag-option-indicator {
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.25);
  flex-shrink: 0;
  transition: all var(--t-fast);
}
.diag-option.selected .diag-option-indicator {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.20);
}

.diag-option-text {
  font-size: 0.94rem;
  font-weight: 600;
  color: rgba(255,255,255,0.80);
  flex: 1;
}
.diag-option.selected .diag-option-text { color: var(--white); }

.diag-option-badge {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 3px 9px;
  border-radius: 4px;
}
.badge-sim     { background: rgba(39,174,96,0.15);  color: var(--green); }
.badge-parcial { background: rgba(243,156,18,0.15); color: var(--amber); }
.badge-nao     { background: rgba(231,76,60,0.15);  color: var(--red-mid); }

.diag-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.diag-nav-hint { font-size: 0.72rem; color: rgba(255,255,255,0.28); }

/* ── Results UI ─────────────────────────────────────────────────────── */
.result-header { text-align: center; margin-bottom: 32px; }
.result-score-label { font-size: 0.72rem; font-weight: 700; color: rgba(255,255,255,0.40); text-transform: uppercase; letter-spacing: 0.14em; margin-bottom: 8px; }
.result-score-num {
  font-size: 4.5rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.04em;
}
.result-score-class {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 5px 18px;
  border-radius: 50px;
  letter-spacing: 0.04em;
  margin-top: 10px;
}
.result-sub {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

/* Benchmark Block */
.benchmark-block {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-md);
  padding: 22px 24px;
  margin-bottom: 28px;
}
.benchmark-title {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.10em;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.benchmark-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.benchmark-label { font-size: 0.75rem; color: rgba(255,255,255,0.45); width: 120px; flex-shrink: 0; }
.benchmark-track { flex: 1; height: 8px; background: rgba(255,255,255,0.07); border-radius: 4px; overflow: hidden; }
.benchmark-fill { height: 100%; border-radius: 4px; transition: width 1.2s cubic-bezier(0.4,0,0.2,1); }
.user-bar { background: linear-gradient(90deg, var(--gold-dark), var(--gold-light)); }
.avg-bar  { background: rgba(255,255,255,0.25); }
.benchmark-val { font-size: 0.78rem; font-weight: 700; width: 28px; text-align: right; }
.benchmark-note { font-size: 0.70rem; color: rgba(255,255,255,0.28); line-height: 1.6; margin-top: 12px !important; font-style: italic; }

/* Charts */
.result-charts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 24px;
}
.result-chart-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r-md);
  padding: 18px;
}
.result-chart-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.10em;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}
#radar-canvas { display: block; margin: 0 auto; }

/* Top Risks */
.top-risks {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r-md);
  padding: 20px 22px;
  margin-bottom: 24px;
}
.top-risks-title {
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.10em;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.risk-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.risk-item:last-child { border-bottom: none; padding-bottom: 0; }
.risk-item-rank {
  width: 24px; height: 24px;
  border-radius: 6px;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
  color: rgba(255,255,255,0.45);
  flex-shrink: 0;
}
.risk-item-name { flex: 1; font-size: 0.85rem; color: rgba(255,255,255,0.80); font-weight: 600; }
.risk-item-score {
  font-size: 0.75rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
}
.score-critical { background: rgba(192,57,43,0.15); color: var(--red); }
.score-high     { background: rgba(231,76,60,0.15);  color: var(--red-mid); }
.score-medium   { background: rgba(243,156,18,0.15); color: var(--amber); }

/* Result CTA */
.result-cta-block {
  background: linear-gradient(135deg, rgba(201,168,76,0.08) 0%, rgba(201,168,76,0.04) 100%);
  border: 1px solid rgba(201,168,76,0.22);
  border-radius: var(--r-md);
  padding: 24px;
  text-align: center;
  margin-top: 24px;
}
.result-cta-title { font-size: 1.0rem; font-weight: 800; color: var(--white); margin-bottom: 6px; }
.result-cta-desc  { font-size: 0.83rem; color: rgba(255,255,255,0.55); margin-bottom: 18px; line-height: 1.65; }
.result-cta-btns  { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

/* ── Report UI ──────────────────────────────────────────────────────── */
.report-section {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 22px 24px;
  margin-bottom: 16px;
  border: 1px solid var(--border-light);
}
.report-section-title {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}
.report-text { font-size: 0.88rem; color: var(--text-muted); line-height: 1.80; }

.report-rec-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.report-rec-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.86rem;
  color: var(--text-main);
  line-height: 1.65;
}
.report-rec-num {
  width: 24px; height: 24px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 1px;
}

.report-final-msg {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.75;
  border-left: 3px solid var(--gold);
  padding-left: 16px;
}

/* ══════════════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { max-width: 520px; margin: 0 auto; }
  .ibc-section-layout { grid-template-columns: 1fr; gap: 48px; }
  .form-layout { grid-template-columns: 1fr; gap: 40px; }
  .risk-grid { grid-template-columns: repeat(2, 1fr); }
  .deliverables-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }
  #hero { padding: 100px 0 64px; min-height: auto; }
  .hero-headline { font-size: clamp(1.8rem, 6vw, 2.6rem); }
  .hero-sub { font-size: 0.95rem; }
  .hero-stats { padding: 14px 16px; gap: 0; }
  .hero-stat { padding: 0 12px; }
  .hero-stat-num { font-size: 1.3rem; }
  .shield-nav-links { display: none; }
  .nav-menu-toggle { display: flex; }
  #shield-nav .btn { display: none; }
  .db-metrics { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 640px) {
  .container { padding: 0 16px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .hero-stats { flex-wrap: wrap; gap: 12px; border: none; padding: 0; background: none; }
  .hero-stat-div { display: none; }
  .risk-grid { grid-template-columns: 1fr; }
  .deliverables-grid { grid-template-columns: 1fr; }
  .result-charts { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .modal-panel { padding: 24px 18px; border-radius: 16px; }
  .steps-timeline { padding: 0 4px; }
  .step-body { padding-bottom: 36px; }
  .warning-strip { flex-direction: column; align-items: flex-start; }
  .cta-btns { flex-direction: column; align-items: center; }
  .cta-btns .btn { width: 100%; justify-content: center; max-width: 320px; }
}

@media (max-width: 380px) {
  .hero-headline { font-size: 1.7rem; }
  .result-score-num { font-size: 3.5rem; }
}
