/* ═══════════════════════════════════════════
   TOKENS & RESET
═══════════════════════════════════════════ */
:root {
  --red:       #e8002d;
  --red-dim:   rgba(232,0,45,0.15);
  --red-glow:  rgba(232,0,45,0.5);
  --bg:        #080808;
  --surface:   #0f0f0f;
  --surface2:  #151515;
  --border:    rgba(255,255,255,0.07);
  --border-red: rgba(232,0,45,0.3);
  --text:      #e8e8e8;
  --text-dim:  rgba(232,232,232,0.5);
  --text-muted: rgba(232,232,232,0.35);
  --mono: 'DM Mono', monospace;
  --sans: 'Syne', sans-serif;
  --display: 'Bebas Neue', sans-serif;
  --prose: 'Barlow', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* Hex grid side panels */
body::before, body::after {
  content: '';
  position: fixed;
  top: 0;
  width: 260px;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='25' viewBox='0 0 14 25'%3E%3Cg fill='none' stroke='%23e8002d' stroke-width='0.4' opacity='0.5'%3E%3Cpolygon points='7,0.5 13.5,4 13.5,11 7,14.5 0.5,11 0.5,4'/%3E%3Cpolygon points='7,11 13.5,14.5 13.5,21.5 7,25 0.5,21.5 0.5,14.5'/%3E%3Cpolygon points='0,5.5 6.5,2 6.5,9 0,12.5 -6.5,9 -6.5,2'/%3E%3Cpolygon points='14,5.5 20.5,2 20.5,9 14,12.5 7.5,9 7.5,2'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat;
  z-index: -1;
  pointer-events: none;
}
body::before {
  left: 0;
  mask-image: linear-gradient(to right, rgba(0,0,0,0.85), transparent);
  -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,0.85), transparent);
}
body::after {
  right: 0;
  mask-image: linear-gradient(to left, rgba(0,0,0,0.85), transparent);
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,0.85), transparent);
}
@media (max-width: 768px) {
  body::before, body::after { width: 80px; opacity: 0.5; }
}

/* ═══════════════════════════════════════════
   UTILITY
═══════════════════════════════════════════ */
.mono { font-family: var(--mono); }
.display { font-family: var(--display); }

.section-pad { padding: 96px 0; }
@media (max-width: 768px) { .section-pad { padding: 60px 0; } }

.red { color: var(--red); }
.dim { color: var(--text-dim); }
.muted { color: var(--text-muted); }

.tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  border: 1px solid var(--border-red);
  padding: 4px 10px;
  border-radius: 2px;
  margin-bottom: 16px;
}

/* ═══════════════════════════════════════════
   DIVIDER
═══════════════════════════════════════════ */
.divider {
  width: 60%;
  margin: 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  box-shadow: 0 0 12px var(--red-glow), 0 0 24px var(--red-dim);
  border: 0;
  display: block;
}

/* ═══════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════ */
.navbar {
  background: rgba(8,8,8,0.96) !important;
  border-bottom: 1px solid var(--border-red);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 14px 0;
}
.navbar-brand {
  font-family: var(--display);
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  color: var(--text) !important;
  display: flex;
  align-items: center;
  gap: 10px;
}
.navbar-brand img { height: 18px; filter: drop-shadow(0 0 6px rgba(232,0,45,0.5)); }

.navbar-nav .nav-link {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim) !important;
  padding: 8px 16px !important;
  transition: color 0.2s;
}
.navbar-nav .nav-link:hover { color: var(--text) !important; }

.nav-cta {
  font-family: var(--mono) !important;
  font-size: 0.75rem !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase;
  border: 1px solid var(--red) !important;
  color: var(--red) !important;
  background: rgba(232,0,45,0.1) !important;
  padding: 8px 20px !important;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s !important;
}
.nav-cta:hover {
  background: var(--red) !important;
  color: #fff !important;
  box-shadow: 0 0 18px var(--red-glow);
}

.navbar-toggler {
  border: 1px solid rgba(232,0,45,0.5) !important;
  border-radius: 2px;
  box-shadow: none !important;
  outline: none !important;
}
.navbar-toggler:focus { box-shadow: 0 0 0 2px rgba(232,0,45,0.4) !important; }
.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(232,0,45,0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  position: relative;
  padding: 110px 0 80px;
  text-align: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 55% at 50% 0%, rgba(232,0,45,0.13), transparent 65%);
  pointer-events: none;
}

.hero-eyebrow {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--display);
  font-size: clamp(3.5rem, 8vw, 7.5rem);
  line-height: 0.92;
  letter-spacing: 0.06em;
  color: #fff;
  text-shadow: 0 0 60px rgba(232,0,45,0.12);
}

.hero-sub {
  font-family: var(--sans);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 500;
  color: var(--text-dim);
  max-width: 640px;
  margin: 24px auto 0;
  line-height: 1.5;
}

/* BIG OPENING STATEMENT */
.hero-statement {
  font-family: var(--sans);
  font-size: clamp(1.8rem, 4.2vw, 3.1rem);
  font-weight: 700;
  line-height: 1.25;
  max-width: 820px;
  margin: 0 auto;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}
.hero-stmt-white { color: #ffffff; }
.hero-stmt-red   { color: var(--red); text-shadow: 0 0 40px rgba(232,0,45,0.35); }

.hero-img {
  max-height: 280px;
  max-width: 480px;
  width: 70%;
  margin: 32px auto;
  display: block;
  filter: drop-shadow(0 0 30px rgba(232,0,45,0.2));
}

.hero-tagline {
  font-family: var(--sans);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 28px;
}

/* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */
.btn-primary-red {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: var(--red);
  border: 1px solid var(--red);
  padding: 14px 32px;
  border-radius: 2px;
  text-decoration: none;
  transition: box-shadow 0.2s, transform 0.2s;
  cursor: pointer;
}
.btn-primary-red:hover {
  box-shadow: 0 0 28px var(--red-glow);
  transform: translateY(-2px);
  color: #fff;
}

.btn-ghost-red {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  background: transparent;
  border: 1px solid var(--red);
  padding: 14px 32px;
  border-radius: 2px;
  text-decoration: none;
  transition: box-shadow 0.2s, transform 0.2s, background 0.2s, color 0.2s;
  cursor: pointer;
}
.btn-ghost-red:hover {
  background: var(--red);
  color: #fff;
  box-shadow: 0 0 20px var(--red-glow);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════
   VALUE PROP STRIP
═══════════════════════════════════════════ */
.value-strip {
  padding: 64px 0;
  text-align: center;
}
.value-strip h2 {
  font-family: var(--sans);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}
.value-strip p {
  font-family: var(--prose);
  color: var(--text-dim);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 8px;
}
.value-strip .quality-note {
  font-family: var(--mono);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  color: var(--red);
}

/* ═══════════════════════════════════════════
   SECTION HEADINGS
═══════════════════════════════════════════ */
.section-heading {
  font-family: var(--display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1;
  letter-spacing: 0.03em;
  color: #fff;
  margin-bottom: 12px;
}
.section-sub {
  font-family: var(--prose);
  font-size: 1rem;
  color: var(--text-dim);
  max-width: 560px;
}

/* ═══════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════ */
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 40px;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.service-card:hover {
  border-color: var(--border-red);
  box-shadow: 0 0 40px rgba(232,0,45,0.08);
}

.service-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
}

.service-headline {
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: #fff;
  margin-bottom: 20px;
}

.service-img {
  max-width: 45%;
  opacity: 0.6;
  display: block;
  margin: 28px auto;
  filter: drop-shadow(0 0 20px rgba(232,0,45,0.15));
}
@media (max-width: 768px) { .service-img { max-width: 75%; } }

.in-brief {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
  margin: 28px 0;
}
.in-brief-label {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: 12px;
}
.in-brief p {
  font-family: var(--prose);
  color: var(--text-dim);
  font-size: 1rem;
  line-height: 1.75;
  text-align: justify;
}

/* ═══════════════════════════════════════════
   ACCORDION
═══════════════════════════════════════════ */
.acc-item {
  border: 1px solid var(--border);
  border-radius: 3px;
  margin-bottom: 8px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.acc-item.is-open { border-color: var(--border-red); }

.acc-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surface2);
  border: 0;
  padding: 16px 20px;
  cursor: pointer;
  text-align: left;
  font-family: var(--mono);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color 0.2s, background 0.2s;
}
.acc-btn:hover { color: var(--text); background: rgba(255,255,255,0.03); }
.acc-btn.is-open {
  color: var(--text);
  background: rgba(232,0,45,0.06);
  box-shadow: 0 0 12px rgba(232,0,45,0.15);
}
.acc-btn .acc-icon {
  color: var(--red);
  font-size: 0.8rem;
  flex-shrink: 0;
}
.acc-btn .acc-label { font-weight: 500; color: var(--red); margin-right: 4px; }
.acc-chevron {
  margin-left: auto;
  font-size: 0.7rem;
  transition: transform 0.3s;
  color: var(--text-muted);
  flex-shrink: 0;
}
.acc-btn.is-open .acc-chevron { transform: rotate(180deg); }

.acc-body {
  display: none;
  background: #0a0a0a;
  border-top: 1px solid var(--border-red);
  padding: 24px 24px;
}
.acc-body.is-open { display: block; }
.acc-body p, .acc-body li { font-family: var(--prose); color: var(--text-dim); font-size: 0.95rem; line-height: 1.75; text-align: justify; }
.acc-body a { color: var(--red); }
.acc-body a:hover { text-decoration: underline; }

/* ═══════════════════════════════════════════
   BULLET POINTS (red dots)
═══════════════════════════════════════════ */
.dot-list { list-style: none; padding: 0; margin: 0; }
.dot-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  color: var(--text-dim);
  font-size: 0.95rem;
}
.dot-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 8px var(--red-glow);
}

/* ═══════════════════════════════════════════
   PRICING BLOCK
═══════════════════════════════════════════ */
.pricing-block {
  background: linear-gradient(135deg, rgba(232,0,45,0.06), transparent 60%);
  border: 1px solid var(--border-red);
  border-radius: 4px;
  padding: 28px 32px;
  margin-top: 28px;
}
.pricing-label {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: 8px;
}
.pricing-amount {
  font-family: var(--display);
  font-size: 2.8rem;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}
.pricing-note { font-size: 0.85rem; color: var(--text-muted); }

/* ═══════════════════════════════════════════
   DELIVERABLES
═══════════════════════════════════════════ */
.deliverable-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
}
@media (max-width: 900px) { .deliverable-grid { grid-template-columns: 1fr; } }

.report-copy h3 {
  font-family: var(--sans);
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.report-copy p { font-family: var(--prose); color: var(--text-dim); font-size: 0.95rem; margin-bottom: 20px; }

.report-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }

.report-visual {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border-red);
  border-radius: 12px;
  padding: 20px;
  cursor: pointer;
  transition: box-shadow 0.3s, transform 0.2s;
}
.report-visual:hover { box-shadow: 0 0 40px rgba(232,0,45,0.18); transform: translateY(-3px); }

.report-window {
  border: 1px solid rgba(232,0,45,0.22);
  border-radius: 10px;
  overflow: hidden;
  background: #0a0a0a;
}
.report-topbar {
  display: flex;
  gap: 7px;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(232,0,45,0.12);
}
.report-topbar span {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 8px var(--red-glow);
}
.report-page { padding: 20px; min-height: 300px; }
.rline {
  height: 12px;
  border-radius: 6px;
  background: rgba(232,0,45,0.1);
  border: 1px solid rgba(232,0,45,0.1);
  margin-bottom: 12px;
}
.rl-lg { width: 72%; }
.rl-md { width: 52%; }
.rl-sm { width: 36%; }
.rgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 16px 0; }
.rbox { height: 100px; border-radius: 8px; background: rgba(232,0,45,0.08); border: 1px solid rgba(232,0,45,0.1); }
.report-badge {
  position: absolute;
  right: 14px; bottom: 14px;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(180,0,40,0.8);
  border: 1px solid rgba(232,0,45,0.3);
  padding: 6px 12px;
  border-radius: 999px;
  box-shadow: 0 0 12px var(--red-glow);
}

/* Pills */
.pills-img {
  display: block;
  max-width: 36rem;
  width: 100%;
  margin: 40px auto 0;
}

/* ═══════════════════════════════════════════
   NUMBERS
═══════════════════════════════════════════ */
.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 36px 28px;
  text-align: center;
  transition: border-color 0.3s;
}
.stat-card:hover { border-color: var(--border-red); }
.stat-num {
  font-family: var(--display);
  font-size: 3.5rem;
  color: var(--red);
  line-height: 1;
  display: block;
}
.stat-label { font-family: var(--prose); color: var(--text-dim); font-size: 0.9rem; margin-top: 8px; }
.get-dont-grid li { font-family: var(--prose); }

/* ═══════════════════════════════════════════
   CERTIFICATIONS
═══════════════════════════════════════════ */
.cert-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 16px; margin-top: 32px; }
@media (max-width: 576px) { .cert-grid { grid-template-columns: repeat(2, 1fr); } }

.cert-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 20px 16px;
  text-align: center;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.cert-card:hover { border-color: var(--border-red); box-shadow: 0 0 20px rgba(232,0,45,0.06); }
.cert-card img { max-height: 100px; width: auto; max-width: 100%; display: block; margin: 0 auto 12px; }
.cert-card span { font-family: var(--prose); font-size: 0.78rem; color: var(--text-dim); line-height: 1.4; display: block; }

/* ═══════════════════════════════════════════
   ACKNOWLEDGMENTS (CVEs)
═══════════════════════════════════════════ */
.ack-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 12px; margin-top: 28px; }
@media (max-width: 576px) { .ack-grid { grid-template-columns: repeat(2, 1fr); } }

.ack-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 18px 14px;
  text-align: center;
  transition: border-color 0.3s;
}
.ack-card:hover { border-color: var(--border-red); }
.ack-cve {
  font-family: var(--mono);
  font-size: 0.9rem;
  color: #fff;
  display: block;
  margin-bottom: 6px;
  text-decoration: none;
}
.ack-cve:hover { color: var(--red); }
.ack-desc { font-family: var(--prose); font-size: 0.78rem; color: var(--text-muted); line-height: 1.4; display: block; }

/* ═══════════════════════════════════════════
   REVIEWS
═══════════════════════════════════════════ */
.review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 28px 28px 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: border-color 0.3s;
}
.review-card:hover { border-color: var(--border-red); }
.review-quote {
  font-size: 1.5rem;
  color: var(--red);
  font-family: serif;
  line-height: 1;
  margin-bottom: 12px;
  display: block;
}
.review-text { font-family: var(--prose); color: var(--text-dim); font-size: 0.95rem; line-height: 1.65; flex: 1; }
.review-author {
  margin-top: 16px;
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  text-transform: uppercase;
}
.review-author i { color: var(--red); margin-right: 6px; }

/* ═══════════════════════════════════════════
   BLOG
═══════════════════════════════════════════ */
.blog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 28px;
  height: 100%;
  transition: border-color 0.3s, transform 0.2s;
}
.blog-card:hover { border-color: var(--border-red); transform: translateY(-3px); }
.blog-icon { color: var(--red); margin-right: 8px; }
.blog-title { font-family: var(--sans); font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.blog-excerpt { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }

/* ═══════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════ */
.about-text {
  font-family: var(--prose);
  font-size: 1.05rem;
  color: var(--text-dim);
  line-height: 1.8;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

/* ═══════════════════════════════════════════
   CTA BAND
═══════════════════════════════════════════ */
.cta-band {
  text-align: center;
  padding: 80px 0;
  position: relative;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(232,0,45,0.07), transparent 70%);
  pointer-events: none;
}
.cta-band h2 {
  font-family: var(--sans);
  font-size: clamp(1.4rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--text);
  max-width: 600px;
  margin: 0 auto 28px;
  line-height: 1.3;
}

/* ═══════════════════════════════════════════
   MODAL
═══════════════════════════════════════════ */
.report-modal { position: fixed; inset: 0; z-index: 9999; display: none; }
.report-modal.is-open { display: block; }
.report-modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.82); backdrop-filter: blur(8px); }
.report-modal-panel {
  position: relative;
  width: min(1100px, calc(100vw - 32px));
  height: min(85vh, 900px);
  margin: 5vh auto 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-red);
  background: #120606;
  box-shadow: 0 0 60px rgba(232,0,45,0.2);
  display: flex;
  flex-direction: column;
}
.report-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-red);
  font-family: var(--mono);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--text);
}
.report-close {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(232,0,45,0.3);
  background: transparent;
  color: var(--text);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.report-close:hover { background: rgba(232,0,45,0.1); }
.report-modal-body { flex: 1; overflow: hidden; min-height: 0; }
.report-modal-body iframe { width: 100%; height: 100%; border: 0; background: #111; }
.report-modal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-top: 1px solid var(--border-red);
  background: rgba(18,6,6,0.98);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border-red);
  padding: 32px 0;
}
.footer-brand {
  font-family: var(--display);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-brand img { height: 14px; }
.footer-tagline { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.06em; color: var(--text-muted); margin-top: 6px; }
.footer-legal { font-family: var(--mono); font-size: 0.72rem; color: var(--text-muted); }
.footer-legal a { color: var(--red); text-decoration: none; }
.footer-legal a:hover { text-decoration: underline; }

/* ═══════════════════════════════════════════
   WHAT/DON'T ACCORDIONS
═══════════════════════════════════════════ */
.get-dont-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 28px; }
@media (max-width: 768px) { .get-dont-grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════
   MOBILE CAROUSEL MOBILE ONLY
═══════════════════════════════════════════ */
.d-md-grid { display: none; }
@media (min-width: 768px) { .d-md-grid { display: grid; } .d-md-none { display: none !important; } }

/* image flow */
img { max-width: 100%; height: auto; }
.web-pt-flow-img { max-width: 30%; margin: 24px auto; display: block; opacity: 0.55; }
@media (max-width: 768px) { .web-pt-flow-img { max-width: 65%; } }
.pt-types-img { max-width: 35%; }
@media (max-width: 768px) { .pt-types-img { max-width: 80%; } }

/* ═══════════════════════════════════════════
   FADE IN
═══════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}
.fade-up { animation: fadeUp 0.7s ease both; }
.fade-up:nth-child(1) { animation-delay: 0.05s; }
.fade-up:nth-child(2) { animation-delay: 0.15s; }
.fade-up:nth-child(3) { animation-delay: 0.25s; }
.fade-up:nth-child(4) { animation-delay: 0.35s; }
.fade-up:nth-child(5) { animation-delay: 0.45s; }
.fade-up:nth-child(6) { animation-delay: 0.55s; }

/* ═══════════════════════════════════════════
   CHECKLIST
═══════════════════════════════════════════ */
ul.checklist { list-style: none; padding-left: 0; }
ul.checklist li { position: relative; padding-left: 1.8em; line-height: 1.8; }
ul.checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  font-weight: bold;
  color: var(--red);
}

/* ═══════════════════════════════════════════
   HOVER LINK CLASSES
═══════════════════════════════════════════ */
.hero-email-link {
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 1px;
  transition: color 0.2s, border-bottom-color 0.2s;
}
.hero-email-link:hover {
  color: var(--red);
  border-bottom-color: var(--red);
}
.hero-social-link {
  display: inline-flex;
  align-items: center;
  margin-left: 8px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
  vertical-align: middle;
}
.hero-social-link:hover { color: var(--red); }
.hero-social-link i { font-size: 0.9rem; }

.footer-linkedin-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 10px;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-linkedin-link:hover { color: rgba(100,100,255,0.9); }
.footer-linkedin-link i { font-size: 0.85rem; }

/* ═══════════════════════════════════════════
   HERO UTILITIES
═══════════════════════════════════════════ */
.hero-eyebrow-spaced { margin-top: 48px; }
.hero-note {
  margin-top: 16px;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════
   CTA BAND TEXT COLORS
═══════════════════════════════════════════ */
.cta-white { color: #fff; }
.cta-red   { color: var(--red); }

/* ═══════════════════════════════════════════
   VALUE STRIP
═══════════════════════════════════════════ */
.value-emphasize {
  font-family: var(--prose);
  color: var(--text);
  font-weight: 600;
  font-size: 1.05rem;
}

/* ═══════════════════════════════════════════
   SECTION SUB CENTERED
═══════════════════════════════════════════ */
.section-sub-center {
  text-align: center;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ═══════════════════════════════════════════
   SERVICE SECTION UTILITIES
═══════════════════════════════════════════ */
.service-badge-muted { color: var(--text-muted); }
.service-card-svg-wrap { display: flex; justify-content: center; margin: 32px 0; }
.acc-chart-wrap { display: flex; justify-content: center; margin: 20px 0 4px; }
.acc-chart-wrap-col { display: flex; flex-direction: column; align-items: center; margin: 28px 0 8px; }
.acc-standards-note { font-size: 0.82rem; color: var(--text-muted); font-style: italic; margin: 0; }
.acc-why-caption {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  text-align: center;
  margin: 0;
}
.acc-takeaway { margin-top: 16px; margin-bottom: 0; font-style: italic; color: var(--text-muted); }
.acc-chart-types { display: flex; justify-content: center; margin: 24px 0; }
.full-package-note { font-size: 0.82rem; color: var(--text-muted); font-style: italic; margin: 0; }
.flow-overflow { overflow-x: auto; margin: 0 0 28px; }
.in-brief-mt { margin-top: 12px; margin-bottom: 0; }

/* ═══════════════════════════════════════════
   PRICING BLOCK INTERNALS
═══════════════════════════════════════════ */
.pricing-amount-row { display: flex; align-items: flex-end; gap: 20px; flex-wrap: wrap; }
.pricing-delivery { font-family: var(--mono); font-size: 0.75rem; color: var(--text-dim); padding-bottom: 6px; }
.pricing-delivery i { color: var(--red); margin-right: 6px; }
.pricing-note { margin-top: 10px; }
.pricing-vat-note { font-size: 0.82rem; color: var(--text-muted); font-style: italic; margin-bottom: 16px; }
.pricing-comparison {
  padding: 12px 16px;
  border-left: 3px solid var(--red);
  background: rgba(232,0,45,0.04);
  border-radius: 0 3px 3px 0;
}
.pricing-comparison p { font-family: var(--mono); font-size: 0.75rem; color: var(--text-muted); margin: 0; line-height: 1.6; }
.pc-arrow { color: rgba(232,0,45,0.7); }
.pc-value { color: #fff; font-weight: 600; }
.pc-price { color: var(--red); font-weight: 600; }
.no-call-box { margin-top: 20px; padding: 18px 22px; border: 1px solid var(--border); border-radius: 3px; background: rgba(255,255,255,0.02); }
.no-call-label { font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--red); margin-bottom: 12px; }
.no-call-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 12px; }
.no-call-list span { font-size: 0.88rem; color: var(--text-dim); }
.no-call-list i { color: var(--red); margin-right: 10px; font-size: 0.68rem; }
.no-call-note { font-size: 0.82rem; color: var(--text-muted); font-style: italic; margin: 0; }

/* ═══════════════════════════════════════════
   REPORT PREVIEW CARD
═══════════════════════════════════════════ */
.report-visual-btn { background: none; border: none; padding: 0; }
.report-window-mono { position: relative; font-family: var(--mono); }
.rp-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid rgba(232,0,45,0.15); }
.rp-label { font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(232,0,45,0.7); }
.rp-ref   { font-size: 0.6rem; color: rgba(255,255,255,0.25); }
.rp-vuln-row { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.rp-severity { background: var(--red); color: #fff; font-size: 0.6rem; font-weight: 700; letter-spacing: 0.1em; padding: 3px 8px; border-radius: 2px; flex-shrink: 0; }
.rp-vuln-title { font-size: 0.78rem; font-weight: 600; color: #fff; line-height: 1.3; }
.rp-meta-row { display: flex; gap: 8px; margin-bottom: 14px; flex-wrap: wrap; }
.rp-tag-red  { font-size: 0.58rem; color: rgba(232,0,45,0.8); border: 1px solid rgba(232,0,45,0.25); padding: 2px 7px; border-radius: 2px; }
.rp-tag-gray { font-size: 0.58rem; color: rgba(255,255,255,0.35); border: 1px solid rgba(255,255,255,0.1); padding: 2px 7px; border-radius: 2px; }
.rp-section { margin-bottom: 12px; }
.rp-section-label { font-size: 0.6rem; color: rgba(232,0,45,0.6); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 5px; }
.rp-poc { background: rgba(232,0,45,0.05); border: 1px solid rgba(232,0,45,0.15); border-radius: 4px; padding: 8px 10px; margin-bottom: 12px; }
.rp-poc-label { font-size: 0.58rem; color: rgba(232,0,45,0.6); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 6px; }
.rp-poc-code  { font-size: 0.62rem; color: rgba(255,255,255,0.5); line-height: 1.6; }
.rp-poc-var   { color: var(--red); }
.rp-poc-token { color: rgba(255,200,0,0.7); }
.rp-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.rp-detail-box  { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06); border-radius: 3px; padding: 7px 9px; }
.rp-detail-label { font-size: 0.55rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 4px; }
.rp-detail-red   { color: rgba(232,0,45,0.6); }
.rp-detail-green { color: rgba(80,200,120,0.7); }
.rl-full { width: 100%; }
.rl-88   { width: 88%; }
.rl-62   { width: 62%; }
.rl-90   { width: 90%; }
.rl-65   { width: 65%; }
.rl-70   { width: 70%; }
.rl-h9   { height: 9px; }
.rl-h7   { height: 7px; }
.rl-mb5  { margin-bottom: 5px; }
.rl-mb4  { margin-bottom: 4px; }

/* ═══════════════════════════════════════════
   MODAL FOOTER
═══════════════════════════════════════════ */
.modal-footer-text { font-family: var(--mono); font-size: 0.78rem; color: var(--text-dim); }
.modal-cta-btn { padding: 10px 24px !important; font-size: 0.75rem !important; }

/* ═══════════════════════════════════════════
   WHAT YOU GET / DON'T GET
═══════════════════════════════════════════ */
.get-box {
  background: rgba(232,0,45,0.05);
  border: 1px solid rgba(232,0,45,0.25);
  border-radius: 4px;
  padding: 28px 32px;
}
.dont-box {
  background: rgba(100,100,255,0.05);
  border: 1px solid rgba(100,100,255,0.25);
  border-radius: 4px;
  padding: 28px 32px;
}
.get-dont-box-header { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.get-dont-box-header i { font-size: 1rem; }
.get-dont-box-header span { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; }
.get-box .get-dont-box-header i    { color: var(--red); }
.get-box .get-dont-box-header span { color: var(--red); }
.dont-box .get-dont-box-header i    { color: rgba(100,100,255,0.8); }
.dont-box .get-dont-box-header span { color: rgba(100,100,255,0.8); }
.gd-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.gd-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.95rem; }
.gd-list i { margin-top: 4px; flex-shrink: 0; }
.get-box .gd-list li { color: var(--text-dim); }
.get-box .gd-list i  { color: var(--red); }
.dont-box .gd-list li { color: var(--text-muted); }
.dont-box .gd-list i  { color: rgba(100,100,255,0.8); }

/* ═══════════════════════════════════════════
   REVIEWS
═══════════════════════════════════════════ */
.reviews-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 28px; }
.review-block { border-left: 2px solid var(--red); padding: 4px 0 4px 28px; }
.review-block-quote { font-size: 1.1rem; font-weight: 600; color: var(--text); line-height: 1.6; font-style: italic; margin-bottom: 14px; }
.review-block-author { font-family: var(--mono); font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); }
.review-block-author i { color: var(--red); margin-right: 8px; }
.review-block-author a { color: var(--red); text-decoration: none; }
.review-block-author a:hover { text-decoration: underline; }

/* ═══════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════ */
.about-photo {
  width: 200px;
  object-fit: cover;
  margin-bottom: 2rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
  border-bottom: 1px solid rgba(224,49,49,0.35);
  border-right:  1px solid rgba(224,49,49,0.35);
  box-shadow: 2px 2px 8px rgba(224,49,49,0.15);
}
.about-tagline { color: #fff; font-weight: 700; font-size: 1.1rem; }

/* ═══════════════════════════════════════════
   FOOTER NAME
═══════════════════════════════════════════ */
.footer-name { color: var(--text); }

/* ═══════════════════════════════════════════
   SVG DIAGRAM SIZING
═══════════════════════════════════════════ */
.svg-wapt-badge   { width: 100%; max-width: 480px; }
.svg-methodology  { width: 100%; max-width: 320px; }
.svg-why-chart    { max-width: 100%; width: 560px; font-family: 'DM Mono', monospace; }
.svg-types-chart  { max-width: 100%; width: 420px; font-family: 'DM Mono', monospace; }
.svg-flow-chart   { width: 100%; min-width: 580px; max-width: 1000px; display: block; margin: 0 auto; }
