/* ===================================================================
   PRIMUS CO. -- STYLE.CSS (Multi-Page Rebuild)
   Brand: dark navy/charcoal + orange accent + Barlow fonts
   =================================================================== */

/* -- CSS Variables -------------------------------------------------- */
:root {
  --orange:         #E8610A;
  --orange-light:   #FF7A22;
  --charcoal:       #1C2326;
  --charcoal-mid:   #242C31;
  --charcoal-light: #2E383E;
  --border:         rgba(255, 255, 255, 0.07);
  --text:           #E8EBE8;
  --muted:          #8A9A8E;
  --white:          #FFFFFF;
  --blitz-blue:     #1A9FFF;
  --blitz-dark:     #0D7ACC;
  --radius:         12px;
  --glass-bg:       rgba(36, 44, 49, 0.55);
  --glass-border:   rgba(255, 255, 255, 0.08);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.75;
  color: var(--text);
  background: var(--charcoal);
  overflow-x: hidden;
  position: relative;
}

/* Noise texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.04;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* -- Typography ----------------------------------------------------- */
.hero-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(64px, 8vw, 112px);
  text-transform: uppercase;
  line-height: 0.93;
  color: var(--white);
  letter-spacing: -0.01em;
}

.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(40px, 5vw, 68px);
  text-transform: uppercase;
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 28px;
}

.card-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 22px;
  text-transform: uppercase;
  color: var(--white);
}

.body-large {
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.75;
  color: var(--text);
}

.body-small {
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
}

.eyebrow {
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--orange);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.eyebrow::after {
  content: '';
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--orange);
}

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

section {
  padding: 140px 0;
  position: relative;
}

section.alt-bg {
  background: var(--charcoal-mid);
  border-top: 1px solid var(--border);
}

section:not(.alt-bg) + section:not(.alt-bg) {
  border-top: 1px solid var(--border);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

/* -- Reveal Animation (subtler) ------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }
.reveal-d5 { transition-delay: 0.40s; }

/* ===================================================================
   NAV
   =================================================================== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(28, 35, 38, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 0 24px;
  transition: box-shadow 0.3s ease;
}

nav.scrolled {
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 20px;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.nav-logo .co {
  color: var(--orange);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  font-family: 'Barlow', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--muted);
  padding: 8px 14px;
  transition: color 0.2s ease;
  letter-spacing: 0.02em;
  position: relative;
}

.nav-link:hover {
  color: var(--white);
}

/* Active page indicator */
.nav-link.active {
  color: var(--white);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--orange);
  border-radius: 1px;
}

.nav-link.blitz-pill {
  color: var(--blitz-blue);
  border: 1px solid rgba(26, 159, 255, 0.3);
  border-radius: 100px;
  font-weight: 600;
  padding: 8px 18px;
}

.nav-link.blitz-pill:hover {
  background: rgba(26, 159, 255, 0.1);
}

.nav-link.blitz-pill.active::after { display: none; }

.nav-link.cta-pill {
  background: var(--orange);
  color: var(--white);
  border-radius: 100px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.08em;
  padding: 10px 22px;
  transition: background 0.2s, transform 0.2s;
}

.nav-link.cta-pill:hover {
  background: var(--orange-light);
  transform: translateY(-1px);
}

.nav-link.cta-pill.active::after { display: none; }

/* Hamburger button */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  cursor: pointer;
  z-index: 1010;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.nav-hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile overlay */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(28, 35, 38, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.mobile-overlay.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}

.mobile-overlay .mobile-nav-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 28px;
  text-transform: uppercase;
  color: var(--white);
  padding: 12px 24px;
  transition: color 0.2s;
  letter-spacing: 0.04em;
}

.mobile-overlay .mobile-nav-link:hover {
  color: var(--orange);
}

.mobile-overlay .mobile-nav-link.active {
  color: var(--orange);
}

.mobile-overlay .mobile-cta {
  margin-top: 20px;
  background: var(--orange);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 16px 40px;
  border-radius: 100px;
  transition: background 0.2s;
}

.mobile-overlay .mobile-cta:hover {
  background: var(--orange-light);
}

/* ===================================================================
   HERO
   =================================================================== */
.hero {
  padding-top: 160px;
  padding-bottom: 100px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(232, 97, 10, 0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--orange);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards;
}

.hero-headline span {
  display: block;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards;
}

.hero-headline span:nth-child(1) { animation-delay: 0.15s; }
.hero-headline span:nth-child(2) { animation-delay: 0.3s; }
.hero-headline span:nth-child(3) { animation-delay: 0.45s; color: var(--orange); }

.hero-subhead {
  max-width: 640px;
  margin-top: 32px;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.75;
  color: var(--muted);
  opacity: 0;
  animation: fadeUp 0.6s ease forwards;
  animation-delay: 0.6s;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 44px;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards;
  animation-delay: 0.75s;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--orange);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 16px 32px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.btn-primary:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: var(--text);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 16px 32px;
  border: 1px solid var(--border);
  border-radius: 4px;
  cursor: pointer;
  transition: border-color 0.2s, transform 0.2s;
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

/* Hero stat row */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 72px;
  border-top: 1px solid var(--border);
  padding-top: 44px;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards;
  animation-delay: 0.9s;
}

.hero-stat {
  text-align: center;
  padding: 0 16px;
}

.hero-stat:not(:last-child) {
  border-right: 1px solid var(--border);
}

.hero-stat-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 4vw, 48px);
  color: var(--white);
  line-height: 1;
}

.hero-stat-label {
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
  margin-top: 8px;
  white-space: pre-line;
  line-height: 1.4;
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
  z-index: 1;
}

.scroll-hint::before {
  content: '';
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--orange), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.7); }
  50% { opacity: 1; transform: scaleY(1); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===================================================================
   MARQUEE BAR
   =================================================================== */
.marquee-bar {
  background: var(--charcoal-light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  animation: marqueeScroll 30s linear infinite;
}

.marquee-item {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  padding: 0 32px;
  white-space: nowrap;
}

.marquee-item .dot {
  color: var(--orange);
  margin-right: 16px;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===================================================================
   GEO SECTION
   =================================================================== */
.geo-section {
  border-top: 1px solid var(--border);
}

.geo-body {
  color: var(--muted);
  margin-bottom: 32px;
  max-width: 540px;
}

.geo-callout {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-left: 3px solid var(--orange);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-bottom: 40px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text);
}

/* Comparison Table */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 0;
}

.comparison-table th {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.comparison-table th.col-geo { color: var(--orange); }

.comparison-table td {
  font-size: 14px;
  font-weight: 400;
  padding: 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  vertical-align: top;
  line-height: 1.5;
}

.comparison-table td:first-child { font-weight: 600; color: var(--white); width: 140px; }
.comparison-table td.seo-col { color: var(--muted); }

/* Bar Chart */
.bar-chart { margin-bottom: 40px; }

.bar-chart-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 20px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 24px;
}

.bar-row { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }

.bar-label {
  width: 90px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  text-align: right;
  flex-shrink: 0;
}

.bar-track {
  flex: 1;
  height: 28px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.engine-bar {
  height: 100%;
  width: 0;
  border-radius: 4px;
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 10px;
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
}

.engine-bar.bar-google     { background: var(--orange); }
.engine-bar.bar-chatgpt    { background: #10B981; }
.engine-bar.bar-perplexity { background: #8B5CF6; }
.engine-bar.bar-bing       { background: #3B82F6; }

.bar-chart-note { font-size: 14px; line-height: 1.65; color: var(--muted); margin-top: 20px; }

/* GEO Cards -- glass-morphism */
.geo-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 32px;
}

.geo-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.3s, transform 0.3s;
}

.geo-card:hover {
  border-color: rgba(232, 97, 10, 0.35);
  transform: translateY(-3px);
}

.geo-card-icon { font-size: 24px; margin-bottom: 12px; }
.geo-card .card-title { margin-bottom: 10px; font-size: 18px; }
.geo-card p { font-size: 14px; line-height: 1.65; color: var(--muted); }

/* ===================================================================
   WHO WE SERVE
   =================================================================== */
.serve-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}

.serve-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}

.serve-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange);
  border-radius: var(--radius) var(--radius) 0 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.serve-card:hover {
  border-color: rgba(232, 97, 10, 0.35);
  transform: translateY(-3px);
}

.serve-card:hover::before { transform: scaleX(1); }

.serve-card-header { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }

.serve-card-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 32px;
  color: rgba(232, 97, 10, 0.2);
  line-height: 1;
}

.serve-card-icon { font-size: 24px; }
.serve-card .card-title { margin-bottom: 12px; }
.serve-card p { font-size: 15px; line-height: 1.65; color: var(--muted); margin-bottom: 16px; }

.serve-tag {
  display: inline-block;
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--orange);
  border: 1px solid rgba(232, 97, 10, 0.3);
  border-radius: 4px;
  padding: 4px 12px;
}

/* ===================================================================
   BLITZ SECTION
   =================================================================== */
.blitz-section {
  background: #0D1117;
  border-top: 1px solid rgba(26, 159, 255, 0.15);
}

.blitz-eyebrow { color: var(--blitz-blue); }
.blitz-eyebrow::after { background: var(--blitz-blue); }

.blitz-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(48px, 6vw, 72px);
  text-transform: uppercase;
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 8px;
}

.blitz-subheadline {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 4vw, 56px);
  text-transform: uppercase;
  line-height: 1.0;
  color: var(--blitz-blue);
  margin-bottom: 24px;
}

.blitz-body { font-size: 16px; line-height: 1.7; color: var(--muted); margin-bottom: 12px; }

.blitz-context {
  font-size: 14px;
  font-style: italic;
  color: rgba(138, 154, 142, 0.7);
  margin-bottom: 32px;
}

.blitz-stats { display: flex; gap: 40px; margin-bottom: 32px; }

.blitz-stat-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 40px;
  color: var(--blitz-blue);
  line-height: 1;
}

.blitz-stat-label {
  font-size: 13px;
  color: var(--muted);
  white-space: pre-line;
  margin-top: 4px;
  line-height: 1.4;
}

.blitz-actions { display: flex; gap: 16px; }

.btn-blitz-primary {
  background: var(--blitz-blue);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 16px 32px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  transition: background 0.2s, transform 0.2s;
}

.btn-blitz-primary:hover { background: #3BB1FF; transform: translateY(-2px); }

.btn-blitz-outline {
  color: var(--blitz-blue);
  border: 1px solid rgba(26, 159, 255, 0.3);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 16px 32px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  transition: background 0.2s, transform 0.2s;
}

.btn-blitz-outline:hover { background: rgba(26, 159, 255, 0.08); transform: translateY(-2px); }

/* Blitz feature cards */
.blitz-features { display: grid; gap: 16px; margin-bottom: 32px; }

.blitz-feature-card {
  background: rgba(26, 159, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(26, 159, 255, 0.12);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.3s, transform 0.3s;
}

.blitz-feature-card:hover {
  border-color: rgba(26, 159, 255, 0.3);
  transform: translateY(-3px);
}

.blitz-feature-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.blitz-feature-icon { font-size: 20px; }

.blitz-feature-badge {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blitz-blue);
  border: 1px solid rgba(26, 159, 255, 0.25);
  border-radius: 4px;
  padding: 3px 10px;
}

.blitz-feature-card .card-title { margin-bottom: 10px; font-size: 18px; }
.blitz-feature-card p { font-size: 14px; line-height: 1.65; color: var(--muted); }

/* Timeline */
.blitz-timeline {
  background: rgba(26, 159, 255, 0.04);
  border: 1px solid rgba(26, 159, 255, 0.1);
  border-radius: var(--radius);
  padding: 28px;
}

.blitz-timeline-label {
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--blitz-blue);
  margin-bottom: 24px;
}

.timeline-events { position: relative; padding-left: 28px; }

.timeline-events::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--blitz-blue), rgba(26, 159, 255, 0.2));
}

.timeline-event { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 20px; position: relative; }
.timeline-event:last-child { margin-bottom: 0; }

.timeline-dot {
  position: absolute;
  left: -24px;
  top: 4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blitz-blue);
  box-shadow: 0 0 8px rgba(26, 159, 255, 0.5);
}

.timeline-time {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--blitz-blue);
  min-width: 60px;
  flex-shrink: 0;
}

.timeline-text { font-size: 14px; color: var(--muted); line-height: 1.5; }
.timeline-icon { font-size: 14px; flex-shrink: 0; }

/* Blitz Teaser (Homepage) */
.blitz-teaser {
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(13, 122, 204, 0.08) 0%, rgba(26, 159, 255, 0.04) 100%);
  border-top: 1px solid rgba(26, 159, 255, 0.15);
  border-bottom: 1px solid rgba(26, 159, 255, 0.15);
}

.blitz-teaser-inner {
  max-width: 700px;
}

.blitz-teaser-badge {
  display: inline-block;
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--blitz-blue);
  background: rgba(26, 159, 255, 0.1);
  border: 1px solid rgba(26, 159, 255, 0.2);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.blitz-teaser .section-title {
  color: var(--white);
  margin-bottom: 16px;
}

.blitz-teaser-text {
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 28px;
}

.blitz-teaser-stat {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 32px;
  padding: 16px 20px;
  background: rgba(26, 159, 255, 0.06);
  border-left: 3px solid var(--blitz-blue);
  border-radius: 0 8px 8px 0;
}

.blitz-teaser-stat-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 36px;
  color: var(--blitz-blue);
}

.blitz-teaser-stat-label {
  font-size: 16px;
  color: var(--text);
  line-height: 1.4;
}

/* ===================================================================
   BLITZ DEDICATED PAGE
   =================================================================== */
.blitz-hero {
  padding: 160px 0 100px;
  background: #0D1117;
  border-bottom: 1px solid rgba(26, 159, 255, 0.15);
}

.blitz-hero-inner {
  max-width: 720px;
}

.blitz-hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 32px;
}

/* Stats Strip */
.blitz-stats-strip {
  background: rgba(26, 159, 255, 0.04);
  border-bottom: 1px solid rgba(26, 159, 255, 0.1);
  padding: 48px 0;
}

.blitz-stats-strip-inner {
  display: flex;
  justify-content: center;
  gap: 64px;
}

.blitz-strip-stat {
  text-align: center;
}

.blitz-strip-stat-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 48px;
  color: var(--blitz-blue);
  line-height: 1;
  margin-bottom: 8px;
}

.blitz-strip-stat-label {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
  max-width: 180px;
}

/* Features Section */
.blitz-features-section {
  padding: 100px 0;
  background: var(--charcoal);
}

.blitz-features-intro {
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 600px;
  margin-bottom: 48px;
}

.blitz-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Timeline Section */
.blitz-timeline-section {
  padding: 100px 0;
  background: #0D1117;
  border-top: 1px solid rgba(26, 159, 255, 0.1);
}

.blitz-timeline-section-inner {
  max-width: 700px;
  margin: 0 auto;
}

.blitz-timeline-intro {
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 48px;
}

.blitz-timeline-full {
  background: rgba(26, 159, 255, 0.04);
  border: 1px solid rgba(26, 159, 255, 0.1);
  border-radius: var(--radius);
  padding: 40px 32px;
}

/* CTA Banner */
.blitz-cta-banner {
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(13, 122, 204, 0.12) 0%, rgba(26, 159, 255, 0.04) 100%);
  border-top: 1px solid rgba(26, 159, 255, 0.15);
}

.blitz-cta-banner-inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.blitz-cta-sub {
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 32px;
}

.blitz-cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
}

/* ===================================================================
   PRICING
   =================================================================== */
.pricing-intro { color: var(--muted); max-width: 680px; margin-bottom: 56px; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

.pricing-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 40px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s, border-color 0.3s;
}

.pricing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.15);
}

.pricing-card.featured { border-color: var(--orange); }

.pricing-card.featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange);
  border-radius: var(--radius) var(--radius) 0 0;
}

.pricing-badge {
  position: absolute;
  top: -1px;
  right: 24px;
  background: var(--orange);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 14px;
  border-radius: 0 0 6px 6px;
}

.pricing-type {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
  margin-bottom: 8px;
}

.pricing-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 28px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}

.pricing-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 42px;
  color: var(--white);
  line-height: 1;
}

.pricing-price .dollar { font-size: 24px; vertical-align: top; margin-right: 2px; }

.pricing-cycle { font-size: 13px; color: var(--muted); margin-top: 4px; margin-bottom: 28px; }

.pricing-features { list-style: none; flex: 1; margin-bottom: 28px; }

.pricing-features li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.5;
}

.pricing-features li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
  font-size: 13px;
}

.pricing-cta {
  display: block;
  text-align: center;
  background: var(--orange);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 14px 24px;
  border-radius: 6px;
  transition: background 0.2s, transform 0.2s;
}

.pricing-cta:hover { background: var(--orange-light); transform: translateY(-2px); }

/* Add-ons */
.addons-strip {
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  overflow: hidden;
}

.addon-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.addon-row:last-child { border-bottom: none; }
.addon-row:hover { background: rgba(255, 255, 255, 0.02); }

.addon-left { display: flex; align-items: flex-start; gap: 16px; flex: 1; }
.addon-icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.addon-info { flex: 1; }

.addon-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 4px;
}
.addon-label.blitz-label { color: var(--blitz-blue); }

.addon-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 18px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 4px;
}

.addon-desc { font-size: 13px; color: var(--muted); line-height: 1.5; }

.addon-right { display: flex; align-items: center; gap: 20px; flex-shrink: 0; margin-left: 32px; }

.addon-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--white);
  white-space: nowrap;
}

.addon-price-suffix { font-size: 12px; font-weight: 400; color: var(--muted); }

.addon-cta {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--orange);
  border: 1px solid rgba(232, 97, 10, 0.3);
  border-radius: 6px;
  padding: 8px 18px;
  white-space: nowrap;
  transition: background 0.2s;
}
.addon-cta:hover { background: rgba(232, 97, 10, 0.08); }
.addon-cta.blitz-cta { color: var(--blitz-blue); border-color: rgba(26, 159, 255, 0.3); }
.addon-cta.blitz-cta:hover { background: rgba(26, 159, 255, 0.08); }

/* Feature comparison table (services page) */
.feature-compare {
  width: 100%;
  border-collapse: collapse;
  margin-top: 56px;
}

.feature-compare th {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 14px 16px;
  text-align: center;
  border-bottom: 2px solid var(--border);
  color: var(--muted);
}

.feature-compare th:first-child { text-align: left; color: var(--white); }
.feature-compare th.featured-col { color: var(--orange); }

.feature-compare td {
  font-size: 14px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  text-align: center;
  color: var(--muted);
}

.feature-compare td:first-child { text-align: left; font-weight: 500; color: var(--text); }

.feature-compare .check { color: var(--orange); font-weight: 700; }
.feature-compare .dash { color: rgba(138, 154, 142, 0.4); }

/* ===================================================================
   HOW IT WORKS / PROCESS
   =================================================================== */
.process-section {
  background: var(--charcoal-mid);
  border-top: 1px solid var(--border);
}

.process-intro { color: var(--muted); max-width: 680px; margin-bottom: 72px; }

.process-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-track::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 48px;
  right: 48px;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--orange), var(--orange), transparent);
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 16px;
}

.process-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--charcoal);
  border: 2px solid var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: var(--orange);
}

.process-step .card-title { margin-bottom: 12px; font-size: 18px; }
.process-step p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* Process expanded cards (process subpage) */
.process-expanded {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 64px;
}

.process-expanded-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 40px 32px;
  transition: border-color 0.3s, transform 0.3s;
}

.process-expanded-card:hover {
  border-color: rgba(232, 97, 10, 0.35);
  transform: translateY(-3px);
}

.process-expanded-card .process-num { margin: 0 0 20px 0; }
.process-expanded-card .card-title { font-size: 24px; margin-bottom: 16px; }
.process-expanded-card p { font-size: 15px; color: var(--muted); line-height: 1.7; }

.process-detail-list { list-style: none; margin-top: 20px; }

.process-detail-list li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.5;
}

.process-detail-list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

/* ===================================================================
   RESULTS
   =================================================================== */
.results-intro { color: var(--muted); max-width: 680px; margin-bottom: 56px; }

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.result-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 36px;
  transition: border-color 0.3s, transform 0.3s;
}

.result-card:hover {
  border-color: rgba(232, 97, 10, 0.35);
  transform: translateY(-3px);
}

.result-metric {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 48px;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 4px;
}

.result-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 16px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
}

.result-desc { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* Social proof strip */
.social-proof {
  margin-top: 72px;
  border-top: 1px solid var(--border);
  padding-top: 48px;
}

.social-proof-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
  margin-bottom: 32px;
  text-align: center;
}

.proof-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.proof-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 28px;
}

.proof-card blockquote {
  font-size: 15px;
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 16px;
}

.proof-card cite {
  font-style: normal;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}

.proof-card cite span { color: var(--orange); }

/* ===================================================================
   WHY PRIMUS
   =================================================================== */
.why-body { color: var(--muted); margin-bottom: 12px; }

.why-sub { color: var(--text); font-weight: 500; font-size: 16px; margin-bottom: 40px; }

.why-table { width: 100%; border-collapse: collapse; }

.why-table th {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.why-table th:last-child { color: var(--orange); }

.why-table td {
  font-size: 14px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}

.why-table td:first-child { font-weight: 600; color: var(--white); }
.why-table td:last-child { color: var(--orange); font-weight: 600; }
.why-table .check-orange { color: var(--orange); }

.why-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.why-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.3s, transform 0.3s;
}

.why-card:hover {
  border-color: rgba(232, 97, 10, 0.35);
  transform: translateY(-3px);
}

.why-card-icon { font-size: 24px; margin-bottom: 12px; }
.why-card .card-title { font-size: 16px; margin-bottom: 10px; }
.why-card p { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ===================================================================
   PAGE HEADER (subpages)
   =================================================================== */
.page-header {
  padding-top: 140px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.page-header::after {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232, 97, 10, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.page-header .container {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.page-header .section-title { margin-bottom: 20px; }

.page-header-intro {
  font-size: 18px;
  line-height: 1.75;
  color: var(--muted);
  max-width: 640px;
}

/* ===================================================================
   CTA BANNER (bottom of each subpage)
   =================================================================== */
.cta-banner {
  background: var(--orange);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: 'PRIMUS';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(100px, 16vw, 240px);
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.06);
  pointer-events: none;
  white-space: nowrap;
  letter-spacing: 0.05em;
}

.cta-banner .container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-banner .eyebrow {
  color: rgba(255, 255, 255, 0.7);
  justify-content: center;
}

.cta-banner .eyebrow::after { background: rgba(255, 255, 255, 0.3); }
.cta-banner .section-title { color: var(--white); margin-bottom: 16px; }

.cta-banner-sub {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.cta-banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--orange);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 18px 40px;
  border-radius: 100px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.cta-banner-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

/* ===================================================================
   QUIZ / CONTACT SECTION
   =================================================================== */
.quiz-section {
  background: var(--orange);
  position: relative;
  overflow: hidden;
}

.quiz-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(120px, 20vw, 300px);
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.08);
  pointer-events: none;
  white-space: nowrap;
  letter-spacing: 0.05em;
}

.quiz-header {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}

.quiz-header .eyebrow { color: rgba(255, 255, 255, 0.7); justify-content: center; }
.quiz-header .eyebrow::after { background: rgba(255, 255, 255, 0.3); }
.quiz-header .section-title { color: var(--white); }

.quiz-header-sub {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  max-width: 500px;
  margin: 0 auto;
}

.quiz-container {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}

.quiz-card-wrapper {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.quiz-progress-track { height: 4px; background: #E5E7EB; }

.quiz-progress-bar {
  height: 100%;
  background: var(--orange);
  transition: width 0.4s ease;
  width: 0%;
}

.quiz-card-header { display: flex; justify-content: flex-end; padding: 16px 24px 0; }

.quiz-step-counter { font-size: 13px; color: #9CA3AF; font-weight: 500; }

#quiz-card { padding: 12px 32px 32px; }

.quiz-q-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: #1C2326;
  margin-bottom: 24px;
  text-transform: uppercase;
  line-height: 1.2;
}

.quiz-options { display: grid; gap: 10px; margin-bottom: 32px; }

.quiz-option {
  display: block;
  width: 100%;
  text-align: left;
  padding: 16px 20px;
  border: 2px solid #E5E7EB;
  border-radius: 8px;
  font-family: 'Barlow', sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: #374151;
  background: var(--white);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s, transform 0.15s;
}

.quiz-option:hover { border-color: var(--orange); transform: translateY(-1px); }

.quiz-option.selected {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

.quiz-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.quiz-back {
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #9CA3AF;
  padding: 12px 20px;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}
.quiz-back:hover { color: #374151; }

.quiz-next {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  background: var(--orange);
  padding: 14px 28px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, opacity 0.2s;
}

.quiz-next:hover:not(:disabled) { background: var(--orange-light); transform: translateY(-1px); }
.quiz-next:disabled { opacity: 0.4; cursor: not-allowed; }

.quiz-contact-sub { font-size: 14px; color: #6B7280; margin-bottom: 28px; margin-top: -12px; }

.quiz-form { display: flex; flex-direction: column; gap: 20px; }

.quiz-field label {
  display: block;
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: #374151;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.quiz-field input {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #E5E7EB;
  border-radius: 8px;
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  color: #1C2326;
  transition: border-color 0.2s;
}

.quiz-field input:focus { outline: none; border-color: var(--orange); }
.quiz-field input::placeholder { color: #9CA3AF; }

.quiz-results { text-align: center; padding: 16px 0; }
.results-eyebrow { font-size: 14px; color: #6B7280; margin-bottom: 16px; }

.results-tier-badge {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 42px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 4px;
}

.results-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #374151;
  margin-bottom: 24px;
}

.results-reasoning {
  font-size: 15px;
  color: #4B5563;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 16px;
  text-align: left;
}

.results-urgency { font-size: 14px; font-weight: 600; color: var(--orange); margin-bottom: 28px; }

.results-callout {
  background: #F9FAFB;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  padding: 20px 24px;
  margin-bottom: 16px;
  text-align: left;
}

.callout-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: #1C2326;
  margin-bottom: 8px;
}

.callout-text { font-size: 14px; color: #6B7280; line-height: 1.6; margin-bottom: 12px; }

.callout-cta {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--orange);
  transition: color 0.2s;
}
.callout-cta:hover { color: var(--orange-light); }

.blitz-callout { border-left: 3px solid var(--blitz-blue); }
.blitz-callout .callout-cta { color: var(--blitz-blue); }
.website-callout { border-left: 3px solid var(--orange); }

.results-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}

.results-primary-cta {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 16px 40px;
  border-radius: 6px;
  transition: background 0.2s, transform 0.2s;
}
.results-primary-cta:hover { background: var(--orange-light); transform: translateY(-2px); }

.results-secondary-cta { font-size: 14px; color: #9CA3AF; font-weight: 500; transition: color 0.2s; }
.results-secondary-cta:hover { color: #374151; }

/* ===================================================================
   FOOTER
   =================================================================== */
footer {
  background: var(--charcoal);
  border-top: 1px solid var(--border);
  padding: 80px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .nav-logo { margin-bottom: 16px; }

.footer-tagline {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 12px;
  max-width: 260px;
  line-height: 1.6;
}

.footer-email { font-size: 14px; color: var(--orange); font-weight: 500; }
.footer-email:hover { color: var(--orange-light); }

.footer-nav-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-nav-list { list-style: none; }
.footer-nav-list li { margin-bottom: 10px; }
.footer-nav-list a { font-size: 14px; color: var(--muted); transition: color 0.2s; }
.footer-nav-list a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  border-top: 1px solid var(--border);
}

.footer-copyright { font-size: 13px; color: var(--muted); }

.footer-cta {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--orange);
  transition: color 0.2s;
}
.footer-cta:hover { color: var(--orange-light); }

/* ===================================================================
   MOBILE RESPONSIVE -- max-width: 900px
   =================================================================== */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .hero { padding-top: 120px; min-height: auto; }
  .hero-headline { font-size: clamp(42px, 10vw, 64px); }
  .hero-actions { flex-direction: column; gap: 12px; }

  .hero-stats { grid-template-columns: 1fr 1fr; gap: 24px; }
  .hero-stat:not(:last-child) { border-right: none; }
  .hero-stat:nth-child(odd) { border-right: 1px solid var(--border); }
  .hero-stats .hero-stat:nth-child(n+3) { border-top: 1px solid var(--border); padding-top: 24px; }

  .scroll-hint { display: none; }

  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .serve-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr; }
  .why-cards { grid-template-columns: 1fr; }
  .process-expanded { grid-template-columns: 1fr; }
  .proof-cards { grid-template-columns: 1fr; }

  .addon-row { flex-direction: column; align-items: flex-start; gap: 16px; }
  .addon-right { margin-left: 0; width: 100%; justify-content: space-between; }

  .process-track { grid-template-columns: 1fr 1fr; gap: 32px; }
  .process-track::before { display: none; }

  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }

  #quiz-card { padding: 12px 16px 24px; }

  section { padding: 100px 0; }

  .blitz-stats { flex-direction: column; gap: 24px; }
  .blitz-actions { flex-direction: column; gap: 12px; }

  .blitz-features-grid { grid-template-columns: 1fr; }
  .blitz-stats-strip-inner { flex-direction: column; gap: 32px; align-items: center; }
  .blitz-hero { padding: 120px 0 80px; }
  .blitz-hero-actions { flex-direction: column; gap: 12px; }
  .blitz-cta-actions { flex-direction: column; align-items: center; gap: 12px; }

  .page-header { padding-top: 120px; padding-bottom: 60px; }
  .bar-label { width: 70px; font-size: 11px; }

  .feature-compare { font-size: 12px; }
  .feature-compare th, .feature-compare td { padding: 10px 8px; font-size: 12px; }
}

@media (max-width: 480px) {
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .pricing-card { padding: 28px 20px; }
  .process-track { grid-template-columns: 1fr; }
}
