/* ===== KRID.AI SINGLE-PAGE SKIN FULL-WIDTH ALTERNATING PAGE BREAKS ===== */
:root {
  --brand-gold: #c3a669;
  --brand-gold-light: #e0ca96;
  --brand-gold-dark: #a18345;
  
  /* Dark Theme Variables */
  --bg-dark-1: #0a0e14;
  --bg-dark-2: #0d131f;
  --bg-dark-card: #131a24;
  --border-dark: #2a3441;
  --border-gold: rgba(195, 166, 105, 0.35);
  --text-dark-main: #f8fafc;
  --text-dark-muted: #94a3b8;
  
  /* Light Theme Variables */
  --bg-light-1: #ffffff;
  --bg-light-2: #faf7f2;
  --bg-light-3: #f1f5f9;
  --bg-light-card: #ffffff;
  --border-light: rgba(195, 166, 105, 0.3);
  --border-light-slate: #cbd5e1;
  --text-light-main: #0f172a;
  --text-light-muted: #475569;
  --text-light-dim: #64748b;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Fraunces', Georgia, serif;
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-dark-1);
  font-family: var(--font-main);
  overflow-x: hidden;
}

body {
  margin: 0;
  padding: 0;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--brand-gold-dark);
}

.dark-page-break em,
.hero em {
  color: var(--brand-gold-light);
}

.text-gold {
  color: var(--brand-gold);
}

.gold-gradient-text {
  background: linear-gradient(135deg, var(--brand-gold-light) 0%, var(--brand-gold) 50%, var(--brand-gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-index {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--brand-gold-dark);
  margin-bottom: 0.75rem;
  display: inline-block;
}

.dark-page-break .section-index {
  color: var(--brand-gold);
}

.eyebrow {
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light-muted);
  margin-bottom: 0.5rem;
}

.dark-page-break .eyebrow {
  color: var(--text-dark-muted);
}

.eyebrow.gold {
  color: var(--brand-gold-dark);
}

.dark-page-break .eyebrow.gold {
  color: var(--brand-gold);
}

/* Layout Shells */
.site-main {
  width: 100%;
  position: relative;
}

.section-shell {
  max-width: 1240px;
  margin: 0 auto;
  padding: 6rem 1.5rem;
  position: relative;
}

/* Site Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  gap: 1.25rem;
  padding: 1rem 2.5rem;
  background: rgba(10, 14, 20, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-dark);
  transition: all var(--transition-normal);
}

.site-header .brand-logo-wrap {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  margin-right: auto;
  flex-shrink: 0;
}

.site-header .brand-logo-img {
  height: 2.1rem;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(195, 166, 105, 0.4));
  transition: transform var(--transition-fast);
}

.site-header .brand-logo-wrap:hover .brand-logo-img {
  transform: scale(1.02);
}

.site-header nav {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: flex-end;
  gap: 1.35rem;
  margin-left: 0;
}

.site-header nav a {
  color: var(--text-dark-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  white-space: nowrap;
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.3s ease;
}

.site-header nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, var(--brand-gold) 0%, var(--brand-gold-dark) 100%);
  transition: width 0.3s ease;
}

.site-header nav a:hover,
.site-header nav a.active {
  color: var(--brand-gold);
}

.site-header nav a:hover::after,
.site-header nav a.active::after {
  width: 100%;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.35rem;
  border-radius: 100px;
  background: linear-gradient(135deg, var(--brand-gold) 0%, var(--brand-gold-dark) 100%);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(195, 166, 105, 0.25);
  transition: all var(--transition-fast);
}

.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(195, 166, 105, 0.45);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

/* =============================================================
   PAGE BREAK 0: HERO (FULL-WIDTH DARK)
============================================================= */
.page-break-hero {
  width: 100%;
  background-color: var(--bg-dark-1);
  background-image: radial-gradient(circle at 50% 0%, #1a2332 0%, var(--bg-dark-1) 75%);
  color: var(--text-dark-main);
  border-bottom: 1px solid var(--border-dark);
}

.hero {
  position: relative;
  padding: 8rem 1.5rem 5rem;
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-grid {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  mask-image: radial-gradient(circle at 50% 30%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(circle at 50% 30%, black 0%, transparent 70%);
  z-index: 0;
}

.hero-halo {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

.halo-one {
  top: 15%;
  left: 10%;
  width: 350px;
  height: 350px;
  background: rgba(195, 166, 105, 0.15);
}

.halo-two {
  top: 35%;
  right: 15%;
  width: 300px;
  height: 300px;
  background: rgba(37, 99, 235, 0.1);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-copy h1 {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #fff;
}

.hero-word-gap {
  background: linear-gradient(135deg, #ffffff 0%, var(--brand-gold-light) 50%, var(--brand-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-kicker {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--brand-gold-light);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-deck {
  font-size: 1.125rem;
  color: var(--text-dark-muted);
  margin-bottom: 2.25rem;
  max-width: 520px;
  line-height: 1.6;
}

/* Channel Switcher */
.channel-switcher {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  background: rgba(19, 26, 36, 0.8);
  padding: 0.4rem;
  border-radius: 100px;
  border: 1px solid var(--border-dark);
  backdrop-filter: blur(10px);
}

.channel-switcher button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 100px;
  border: none;
  background: transparent;
  color: var(--text-dark-muted);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.channel-switcher button span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.725rem;
  font-weight: 800;
  padding: 0.15rem 0.45rem;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.channel-switcher button:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.channel-switcher button.active {
  background: linear-gradient(135deg, var(--brand-gold) 0%, var(--brand-gold-dark) 100%);
  color: #fff;
  box-shadow: 0 4px 12px rgba(195, 166, 105, 0.35);
}

.channel-switcher button.active span {
  background: rgba(0, 0, 0, 0.25);
}

/* Signal Console Card */
.signal-console {
  position: relative;
  z-index: 2;
  background: rgba(19, 26, 36, 0.95);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(195, 166, 105, 0.12);
  backdrop-filter: blur(20px);
  transition: all var(--transition-normal);
}

.console-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-dark);
  margin-bottom: 1.25rem;
}

.console-head div {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark-muted);
}

.live-dot {
  width: 9px;
  height: 9px;
  background-color: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 10px #22c55e;
  animation: pulse-dot 1.8s infinite;
}

@keyframes pulse-dot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
  70% { transform: scale(1.1); box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.console-head strong {
  font-size: 0.9rem;
  color: var(--brand-gold-light);
  background: rgba(195, 166, 105, 0.12);
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  border: 1px solid rgba(195, 166, 105, 0.3);
}

.lead-card {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: rgba(10, 14, 20, 0.7);
  padding: 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-dark);
  margin-bottom: 1.25rem;
}

.channel-mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lead-card span {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-gold);
  display: block;
  margin-bottom: 0.2rem;
}

.lead-card h2 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: #fff;
}

.lead-card p {
  font-size: 0.925rem;
  color: var(--text-dark-muted);
  font-style: italic;
  line-height: 1.4;
}

.action-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  background: rgba(10, 14, 20, 0.5);
  padding: 0.75rem;
  border-radius: var(--radius-md);
}

.action-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.25rem;
}

.action-step span {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--brand-gold);
  color: var(--bg-dark-1);
  font-weight: 800;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.action-step small {
  font-size: 0.75rem;
  color: var(--text-dark-muted);
  font-weight: 600;
}

.console-result {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.console-result div {
  background: rgba(10, 14, 20, 0.7);
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-dark);
}

.console-result span {
  display: block;
  font-size: 0.75rem;
  color: var(--text-light-dim);
  margin-bottom: 0.2rem;
  font-weight: 600;
}

.console-result strong {
  font-size: 0.95rem;
  color: #fff;
}

.response-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-md);
}

.response-strip div {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: #4ade80;
}

.response-strip div strong {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  font-family: monospace;
}

.response-strip p {
  font-size: 0.85rem;
  color: var(--text-dark-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.response-strip p span {
  color: #4ade80;
  font-weight: 800;
}

/* =============================================================
   PAGE BREAK 1: BRAND LOGIC STRIP (FULL-WIDTH DARK SLATE)
============================================================= */
.page-break-brand-logic {
  width: 100%;
  background-color: var(--bg-dark-2);
  padding: 2.5rem 1.5rem;
  border-bottom: 1px solid var(--border-dark);
}

.brand-logic {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.brand-logic span {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  text-align: center;
}

.brand-logic strong {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--brand-gold-light);
}

.brand-logic small {
  font-size: 0.875rem;
  color: var(--text-dark-muted);
  font-weight: 600;
}

/* =============================================================
   PAGE BREAK 2: SECTION 01 URGENCY (FULL-WIDTH CRISP LIGHT)
============================================================= */
.page-break-urgency {
  width: 100%;
  background-color: var(--bg-light-1);
  color: var(--text-light-main);
  border-bottom: 1px solid var(--border-light-slate);
}

.page-break-urgency .section-shell {
  padding: 6rem 1.5rem;
}

.problem-main {
  text-align: center;
  max-width: 960px;
  margin: 0 auto;
}

.problem-main h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  margin-bottom: 2.5rem;
  color: var(--text-light-main);
}

.leak-lines {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 640px;
  margin: 0 auto 3rem;
  text-align: left;
}

.leak-lines p {
  position: relative;
  padding-left: 2.25rem;
  font-size: 1.15rem;
  color: var(--text-light-muted);
  font-weight: 500;
}

.leak-lines p::before {
  content: '→';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--brand-gold-dark);
  font-weight: 800;
}

.problem-punch {
  background: #fdfbf6;
  border: 1px solid rgba(195, 166, 105, 0.3);
  padding: 1.5rem 2.5rem;
  border-radius: var(--radius-lg);
  display: inline-flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 2.5rem;
  box-shadow: 0 4px 14px rgba(195, 166, 105, 0.06);
}

.problem-punch span {
  font-size: 0.9rem;
  color: var(--brand-gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 800;
}

.problem-punch strong {
  font-size: 1.35rem;
  color: var(--brand-gold-dark);
}

.fomo-close {
  font-size: 1.1rem;
  color: var(--text-light-muted);
  max-width: 680px;
  margin: 0 auto;
  font-weight: 500;
}

/* =============================================================
   PAGE BREAK 3: SECTION 02 PRODUCT (FULL-WIDTH DEEP DARK)
============================================================= */
.page-break-product {
  width: 100%;
  background-color: var(--bg-dark-1);
  color: var(--text-dark-main);
  border-bottom: 1px solid var(--border-dark);
}

.page-break-product .section-intro h2 {
  color: #fff;
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
}

.product-guarantee {
  background: linear-gradient(135deg, rgba(195, 166, 105, 0.15) 0%, rgba(19, 26, 36, 0.9) 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  padding: 2.25rem 3rem;
  margin-bottom: 3.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.product-guarantee span {
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brand-gold);
  display: block;
  margin-bottom: 0.4rem;
}

.product-guarantee strong {
  font-size: 1.4rem;
  display: block;
  margin-bottom: 0.5rem;
  color: #fff;
}

.product-guarantee p {
  color: var(--text-dark-muted);
  font-size: 1rem;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.capability-grid article {
  background: var(--bg-dark-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem 1.85rem;
  transition: all var(--transition-normal);
}

.capability-grid article:hover {
  transform: translateY(-5px);
  border-color: var(--border-gold);
  box-shadow: 0 12px 30px rgba(195, 166, 105, 0.15);
  background: #1c2635;
}

.capability-grid article span {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--brand-gold);
  display: block;
  margin-bottom: 0.65rem;
  line-height: 1;
}

.capability-grid article h3 {
  font-size: 1.25rem;
  margin-bottom: 0.65rem;
  color: #fff;
}

.capability-grid article p {
  font-size: 0.925rem;
  color: var(--text-dark-muted);
  line-height: 1.55;
  margin: 0;
}

/* =============================================================
   PAGE BREAK 4: SECTION 03 OUTCOME (FULL-WIDTH WARM LIGHT)
============================================================= */
.page-break-outcome {
  width: 100%;
  background-color: var(--bg-light-2);
  color: var(--text-light-main);
  border-bottom: 1px solid var(--border-light);
}

.money-copy h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  margin-bottom: 1rem;
  color: var(--text-light-main);
}

.money-copy p {
  font-size: 1.15rem;
  color: var(--text-light-muted);
  max-width: 600px;
  margin-bottom: 3.5rem;
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-bottom: 3rem;
}

.outcome-grid article {
  background: #ffffff;
  border: 1px solid rgba(195, 166, 105, 0.3);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: all var(--transition-normal);
}

.outcome-grid article:hover {
  border-color: var(--brand-gold-dark);
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(195, 166, 105, 0.15);
}

.outcome-grid article span {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--brand-gold-dark);
  display: block;
  margin-bottom: 0.75rem;
}

.outcome-grid article h3 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
  color: var(--text-light-main);
}

.outcome-grid article p {
  color: var(--text-light-muted);
  font-size: 0.95rem;
}

.instrument-line {
  text-align: center;
  padding: 2rem;
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px dashed rgba(195, 166, 105, 0.5);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.03);
}

.instrument-line span {
  color: var(--text-light-dim);
  font-size: 0.9rem;
}

.instrument-line strong {
  font-size: 1.3rem;
  color: var(--brand-gold-dark);
}

/* =============================================================
   PAGE BREAK 5: SECTION 04 CONTROL (FULL-WIDTH DARK SLATE)
============================================================= */
.page-break-control {
  width: 100%;
  background-color: var(--bg-dark-2);
  color: var(--text-dark-main);
  border-bottom: 1px solid var(--border-dark);
}

.control-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.control-layout h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  margin-bottom: 1rem;
  color: #fff;
}

.control-deck {
  font-size: 1.1rem;
  color: var(--text-dark-muted);
}

.control-stack {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.control-stack article {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  background: var(--bg-dark-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: all var(--transition-fast);
}

.control-stack article:hover {
  border-color: var(--border-gold);
}

.control-stack article span {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--brand-gold);
  background: rgba(195, 166, 105, 0.12);
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.control-stack article h3 {
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
  color: #fff;
}

.control-stack article p {
  color: var(--text-dark-muted);
  font-size: 0.925rem;
}

.control-close {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--brand-gold-light);
}

/* =============================================================
   PAGE BREAK 6: SECTION 05 EXPANSION (FULL-WIDTH COOL LIGHT)
============================================================= */
.page-break-expansion {
  width: 100%;
  background-color: var(--bg-light-3);
  color: var(--text-light-main);
  border-bottom: 1px solid var(--border-light-slate);
}

.page-break-expansion .section-intro h2 {
  color: var(--text-light-main);
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
}

.page-break-expansion .section-intro p {
  color: var(--text-light-muted);
}

.workflow-lab {
  background: #ffffff;
  border: 1px solid rgba(195, 166, 105, 0.35);
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 3rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
}

.workflow-tabs {
  display: flex;
  background: #e2e8f0;
  border-bottom: 1px solid #cbd5e1;
  overflow-x: auto;
}

.workflow-tabs button {
  flex: 1;
  min-width: 140px;
  padding: 1.25rem 1rem;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  color: #475569;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all var(--transition-fast);
}

.workflow-tabs button span {
  font-size: 0.75rem;
  opacity: 0.7;
}

.workflow-tabs button:hover {
  color: var(--text-light-main);
  background: rgba(255, 255, 255, 0.6);
}

.workflow-tabs button.active {
  color: var(--brand-gold-dark);
  border-bottom-color: var(--brand-gold-dark);
  background: #ffffff;
}

.workflow-display {
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.workflow-display p {
  color: var(--text-light-muted);
  font-size: 0.95rem;
}

.workflow-display h3 {
  font-size: 1.8rem;
  color: var(--brand-gold-dark);
  margin-top: 0.25rem;
}

.workflow-display span {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand-gold-dark);
  display: block;
  margin-bottom: 0.4rem;
}

.workflow-display strong {
  font-size: 1.15rem;
  color: var(--text-light-main);
}

.software-line {
  text-align: center;
  font-size: 1.2rem;
  color: var(--text-light-muted);
}

.software-line strong {
  color: var(--text-light-main);
  margin-left: 0.3rem;
}

/* =============================================================
   PAGE BREAK 7: SECTION 06 CAIO TEASER (DARK GOLD BANNER)
============================================================= */
.page-break-caio {
  width: 100%;
  background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
  color: #fff;
  border-bottom: 1px solid var(--border-gold);
  padding: 5rem 1.5rem;
}

.caio-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.caio-layout h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  color: #fff;
}

.caio-copy p {
  font-size: 1.15rem;
  color: var(--text-dark-muted);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  border: none;
}

.button-outline {
  background: transparent;
  border: 1px solid var(--brand-gold);
  color: var(--brand-gold);
}

.button-outline:hover {
  background: var(--brand-gold);
  color: var(--bg-dark-1);
  box-shadow: 0 6px 20px rgba(195, 166, 105, 0.3);
}

.button-dark {
  background: linear-gradient(135deg, var(--brand-gold) 0%, var(--brand-gold-dark) 100%);
  color: #fff;
  width: 100%;
  justify-content: center;
}

.button-dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(195, 166, 105, 0.35);
}

.caio-copy small {
  display: block;
  margin-top: 0.75rem;
  color: var(--text-light-dim);
  font-size: 0.85rem;
}

/* =============================================================
   PAGE BREAK 8: SECTION 07 LEAD MAP FORM (FULL-WIDTH DEEP DARK)
============================================================= */
.page-break-cta {
  width: 100%;
  background-color: var(--bg-dark-1);
  color: var(--text-dark-main);
}

.cta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.cta-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cta-open-form {
  margin-top: 1.75rem;
}

.cta-copy h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  margin-bottom: 1rem;
  color: #fff;
}

.cta-copy p {
  font-size: 1.15rem;
  color: var(--text-dark-muted);
  margin-bottom: 2.5rem;
}

.cta-proof {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  border-left: none;
  padding-left: 0;
  text-align: center;
}

.cta-proof span {
  font-size: 0.95rem;
  color: var(--text-dark-muted);
}

.cta-proof strong {
  font-size: 1.2rem;
  color: var(--brand-gold-light);
}

.cta form,
.audit-modal form {
  background: rgba(19, 26, 36, 0.95);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(20px);
  text-align: left;
}

.form-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-dark);
  margin-bottom: 1.75rem;
}

.form-head span {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--brand-gold);
}

.form-head strong {
  font-size: 0.85rem;
  color: var(--text-light-dim);
}

.cta form label,
.audit-modal form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark-muted);
  margin: 0;
  text-align: left;
}

.cta form input,
.cta form select,
.audit-modal form input,
.audit-modal form select {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius-md);
  background: rgba(10, 14, 20, 0.85);
  border: 1px solid var(--border-dark);
  color: #fff;
  font-family: var(--font-main);
  font-size: 0.95rem;
  transition: border-color var(--transition-fast);
  display: block;
  box-sizing: border-box;
}

.cta form input:focus,
.cta form select:focus,
.audit-modal form input:focus,
.audit-modal form select:focus {
  outline: none;
  border-color: var(--brand-gold);
  box-shadow: 0 0 12px rgba(195, 166, 105, 0.25);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.cta form small,
.audit-modal form small {
  display: block;
  text-align: center;
  margin-top: 1rem;
  color: var(--text-light-dim);
  font-size: 0.825rem;
}

/* =============================================================
   PAGE BREAK 9: SITE FOOTER (FULL-WIDTH DEEP DARK FOOTER)
============================================================= */
#footer {
  width: 100%;
  background: #06090e;
  border-top: 1px solid var(--border-dark);
  padding: 5rem 2.5rem 2.5rem;
}

.footer-lead {
  max-width: 1240px;
  margin: 0 auto 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 0;
  border-bottom: none;
}

.footer-lead .brand-logo-wrap {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.footer-lead .brand-logo-img {
  height: 2.1rem;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(195, 166, 105, 0.2));
}

.footer-lead strong {
  font-size: 1.1rem;
  color: var(--text-dark-muted);
  font-weight: 500;
  white-space: nowrap;
}

.footer-directory {
  max-width: 1240px;
  margin: 0 auto 4rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
}

.footer-directory nav {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-directory h3 {
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand-gold);
  margin-bottom: 0.5rem;
}

.footer-directory a,
.footer-directory span {
  color: var(--text-dark-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-directory a:hover {
  color: #fff;
}

.footer-bottom {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.85rem;
  color: var(--text-light-dim);
}

.footer-bottom div {
  display: flex;
  gap: 1.5rem;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .hero {
    padding-top: 7rem;
  }
  .control-layout,
  .caio-layout,
  .cta {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .brand-logic {
    grid-template-columns: repeat(2, 1fr);
  }
  .capability-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .workflow-display {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* Compact header before hamburger kicks in */
@media (max-width: 1400px) and (min-width: 1201px) {
  .site-header {
    padding: 0.85rem 1.5rem;
    gap: 0.85rem;
  }
  .site-header nav {
    gap: 0.95rem;
  }
  .site-header nav a {
    font-size: 0.78rem;
  }
  .header-cta {
    padding: 0.55rem 1.05rem;
    font-size: 0.8rem;
  }
  .site-header .brand-logo-img {
    height: 1.9rem;
  }
}

/* Hamburger earlier — prevents nav wrap on tablets / mid widths */
@media (max-width: 1200px) {
  .site-header nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(10, 14, 20, 0.98);
    flex-direction: column;
    padding: 2rem;
    border-bottom: 1px solid var(--border-dark);
  }
  .site-header nav.show {
    display: flex;
  }
  .mobile-menu-btn {
    display: block;
  }
}

@media (max-width: 768px) {
  .brand-logic {
    grid-template-columns: 1fr;
  }
  .capability-grid,
  .outcome-grid {
    grid-template-columns: 1fr;
  }
  .footer-directory {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .footer-lead {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}
