@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;1,500;1,600&family=Inter:wght@400;500;600;700&family=Manrope:wght@500;600;700;800&family=Playfair+Display:ital,wght@0,600;0,700;1,600&family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

/* ==========================================================================
   1. DESIGN TOKENS & CSS VARIABLES
   ========================================================================== */
:root {
  /* Dark Obsidian Theme (Sections 1, 3, 5, 7, 9, Footer) */
  --dark-bg: #0b1220;
  --dark-bg-2: #070d18;
  --dark-surface: #111e33;
  --dark-card: rgba(17, 30, 51, 0.78);
  --dark-card-hover: rgba(22, 38, 64, 0.9);
  --text-light: #f8fafc;
  --text-light-muted: #94a3b8;
  --text-light-dim: #64748b;

  /* Light Platinum Theme (Sections 2, 4, 6, 8) */
  --light-bg: #f8fafc;
  --light-bg-2: #f1f5f9;
  --light-surface: #ffffff;
  --light-card: #ffffff;
  --text-dark: #091426;
  --text-dark-muted: #475569;
  --text-dark-dim: #64748b;

  /* Champagne & Solar Gold Accents */
  --accent: #d4af37;
  --accent-hi: #f3e5ab;
  --accent-bright: #facc15;
  --accent-dark: #a17424;
  --accent-hover: #e5c158;
  --accent-glow: rgba(212, 175, 55, 0.28);
  --accent-glow-strong: rgba(212, 175, 55, 0.45);

  /* Borders & Dividers */
  --border-dark: rgba(212, 175, 55, 0.22);
  --border-dark-subtle: rgba(255, 255, 255, 0.09);
  --border-light: rgba(9, 20, 38, 0.12);
  --border-light-accent: rgba(161, 116, 36, 0.28);

  /* Shadows */
  --shadow-xl: 0 35px 90px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.28);
  --shadow-card: 0 16px 40px rgba(9, 20, 38, 0.08);
  --shadow-card-hover: 0 24px 55px rgba(9, 20, 38, 0.14);

  /* Layout */
  --radius: 8px;
  --radius-sm: 4px;
  --radius-lg: 12px;
  --container-width: 1240px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   2. UNIVERSAL RESET & MOBILE-FIRST BASE RULES
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  background: var(--dark-bg);
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background: var(--dark-bg);
  color: var(--text-light);
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  image-rendering: -webkit-optimize-contrast;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
}

a, button {
  -webkit-tap-highlight-color: transparent;
}

/* Default container: 100% width with 16px padding on mobile */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin-inline: auto;
  padding: 0 16px;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
}

main {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

/* ==========================================================================
   3. ALTERNATING SECTION ARCHITECTURE
   ========================================================================== */
.section-dark {
  background: var(--dark-bg);
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.section-light {
  background: var(--light-bg);
  color: var(--text-dark);
  position: relative;
  overflow: hidden;
}

.section-space {
  padding: 48px 0;
}

/* Ambient Grain & Scroll Progress */
.site-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: 0.015;
  background-image: radial-gradient(rgba(255, 255, 255, 0.8) 0.55px, transparent 0.55px);
  background-size: 6px 6px;
  mix-blend-mode: screen;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--accent), var(--accent-bright), var(--accent-hi));
  box-shadow: 0 0 12px var(--accent-glow);
}

/* ==========================================================================
   4. TYPOGRAPHY SYSTEM (MOBILE-FIRST)
   ========================================================================== */
/* Global Theme Text Hierarchies */
.section-dark {
  background: var(--dark-bg);
  color: var(--text-light);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: #ffffff;
}

.section-dark h1 em,
.section-dark h2 em {
  color: var(--accent-hi);
}

.section-dark p {
  color: var(--text-light-muted);
}

.section-light {
  background: var(--light-bg);
  color: var(--text-dark);
}

.section-light h1,
.section-light h2,
.section-light h3,
.section-light h4 {
  color: var(--text-dark);
}

.section-light h1 em,
.section-light h2 em {
  color: var(--accent-dark);
}

.section-light p {
  color: var(--text-dark-muted);
}

.kicker, .eyebrow, .section-label, .hero-trust, .btn, .footer-tagline, .footer-main-title {
  font-family: 'Manrope', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.eyebrow, .section-label {
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.eyebrow {
  color: var(--accent-hi);
}

.eyebrow i {
  display: inline-block;
  width: 32px;
  height: 1px;
  background: currentColor;
  opacity: 0.8;
}

.section-label {
  color: var(--accent-dark);
}

.section-label span {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid currentColor;
  font-weight: 800;
  font-size: 11px;
  border-radius: var(--radius-sm);
}

.section-label.centered {
  justify-content: center;
}

/* ==========================================================================
   5. BUTTONS & UNIVERSAL CTAS (MOBILE-FIRST)
   ========================================================================== */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 14.5px;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  box-sizing: border-box;
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.btn-arrow {
  font-size: 16px;
  line-height: 1;
  transition: transform 0.3s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

.btn:focus-visible {
  outline: 2px solid var(--accent-bright);
  outline-offset: 4px;
}

/* Gold Primary Button (for Dark Sections) */
.btn-gold {
  background: linear-gradient(135deg, #d8bc80 0%, #b89053 100%);
  color: #070d18;
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-gold:hover {
  background: linear-gradient(135deg, #e4cb93 0%, #c49d60 100%);
  box-shadow: 0 18px 42px rgba(212, 175, 55, 0.42);
}

/* Dark Button (for Light Sections) */
.btn-dark {
  background: #091426;
  color: #f8fafc;
  border: 1px solid rgba(212, 175, 55, 0.35);
  box-shadow: 0 12px 28px rgba(9, 20, 38, 0.18);
}

.btn-dark:hover {
  background: #11233e;
  border-color: var(--accent);
  color: #ffffff;
  box-shadow: 0 18px 38px rgba(9, 20, 38, 0.28);
}

.btn-large {
  min-height: 54px;
  padding-inline: 28px;
  font-size: 14.5px;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 40%, rgba(255, 255, 255, 0.24) 50%, transparent 60%);
  transform: translateX(-130%);
  animation: buttonSweep 6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes buttonSweep {
  0%, 60% { transform: translateX(-130%); }
  75%, 100% { transform: translateX(130%); }
}

.center-action {
  text-align: center;
  margin-top: 32px;
  width: 100%;
}

.section-inline-cta, .profile-action, .perspective-action, .final-actions {
  margin-top: 24px;
  width: 100%;
}

/* Full Width Buttons on Mobile */
.hero-actions,
.section-inline-cta,
.profile-action,
.center-action,
.perspective-action,
.final-actions {
  width: 100%;
  display: flex;
  justify-content: center;
}

.hero-actions .btn,
.section-inline-cta .btn,
.profile-action .btn,
.center-action .btn,
.perspective-action .btn,
.final-actions .btn {
  width: 100%;
  max-width: 100%;
}

/* ==========================================================================
   6. SECTION 1: HERO (MOBILE-FIRST: CENTERED TEXT FIRST, IMAGE SECOND)
   ========================================================================== */
.hero {
  position: relative;
  width: 100%;
  min-height: auto;
  height: auto;
  display: block;
  padding: 28px 0 44px;
  overflow: visible;
  background: radial-gradient(circle at 50% 18%, rgba(212, 175, 55, 0.12), transparent 45%),
              radial-gradient(circle at 50% 80%, rgba(17, 31, 54, 0.7), transparent 50%),
              var(--dark-bg);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 15%;
  background: linear-gradient(180deg, transparent, var(--dark-bg));
  pointer-events: none;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 100%;
  padding: 0 16px;
  gap: 20px;
}

/* TEXT FIRST (ORDER: 1) - FULL WIDTH & CENTERED */
.hero-copy {
  order: 1;
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-eyebrow-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.32);
  border-radius: 50px;
  color: var(--accent-hi);
  font-family: 'Manrope', sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin: 0 auto 14px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
  line-height: 1.35;
  text-align: center;
  max-width: 100%;
}

.hero-eyebrow-pill .lock-icon {
  font-size: 11px;
}

.kicker {
  font-size: 11.5px;
  font-weight: 800;
  color: #94a3b8;
  margin: 0 auto 12px;
  letter-spacing: 0.14em;
  text-align: center;
}

.hero-title {
  font-size: clamp(30px, 8.5vw, 42px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 0 auto 16px;
  color: #ffffff;
  text-align: center;
  width: 100%;
}

.hero-title em {
  display: block;
  margin-top: 6px;
  font-size: clamp(26px, 7.5vw, 36px);
  line-height: 1.1;
}

.hero-lede {
  font-size: 15.5px;
  line-height: 1.62;
  color: #cbd5e1;
  margin: 0 auto 20px;
  text-align: center;
  width: 100%;
}

.hero-lede strong {
  color: #ffffff;
  font-weight: 700;
}

/* Feature Box: Full Width with Left-Aligned Points Inside */
.hero-value-points {
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: rgba(17, 30, 51, 0.82);
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 10px;
  padding: 18px 16px;
  margin: 0 auto 22px;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  text-align: left;
}

.value-point {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  line-height: 1.48;
}

.value-bullet {
  color: var(--accent-bright);
  font-size: 14px;
  line-height: 1.2;
  margin-top: 1px;
  flex-shrink: 0;
}

.value-point strong {
  color: #ffffff;
  font-weight: 700;
  margin-right: 4px;
}

.value-point span {
  color: #cbd5e1;
}

.hero-rule {
  width: 80px;
  height: 1px;
  margin: 0 auto 18px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin: 16px auto 0;
  color: #94a3b8;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  width: 100%;
}

.hero-trust b {
  color: var(--accent-hi);
  font-size: 11px;
}

.hero-trust i {
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.5);
}

/* IMAGE SECOND (ORDER: 2) - CENTERED PORTRAIT CARD BELOW TEXT */
.hero-media {
  order: 2;
  width: 100%;
  max-width: 340px;
  margin: 24px auto 0;
  display: block;
  position: relative;
}

.hero-image-wrap {
  position: relative;
  padding: 6px 6px 24px 0;
  max-width: 100%;
  margin: 0 auto;
}

.hero-image-frame {
  position: absolute;
  inset: 12px -4px 0 8px;
  border: 1px solid var(--accent);
  opacity: 0.45;
  border-radius: var(--radius-lg);
  pointer-events: none;
}

.media-shell {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #0d182b;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-xl);
}

.media-shell img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.hero-image-caption {
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 4px;
  background: rgba(11, 18, 32, 0.95);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  padding: 10px 14px;
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
}

.caption-tag {
  font-family: 'Manrope', sans-serif;
  font-size: 8.5px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--accent-hi);
  margin-bottom: 2px;
  display: block;
}

.hero-image-caption strong {
  font-size: 14px;
  color: #ffffff;
  font-weight: 700;
  line-height: 1.25;
}

.caption-sub {
  font-size: 10px;
  color: #94a3b8;
  margin-top: 2px;
  line-height: 1.35;
}

.hero-index,
.hero-bottom {
  display: none;
}

/* ==========================================================================
   7. SECTION 2: THE BLIND SPOT (LIGHT) - MOBILE DEFAULT
   ========================================================================== */
.intro-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.intro-copy {
  width: 100%;
}

.intro-copy .display-s {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(24px, 6.8vw, 30px);
  font-weight: 800;
  line-height: 1.18;
  color: var(--text-dark);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.intro-copy p {
  margin-bottom: 14px;
}

.intro-copy strong {
  color: var(--text-dark);
}

.editorial-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-light);
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
}

.editorial-media img {
  width: 100%;
  height: auto;
}

.editorial-note {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--border-light-accent);
  border-radius: var(--radius);
  padding: 12px 16px;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-card);
}

.editorial-note span {
  font-family: 'Manrope', sans-serif;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--accent-dark);
  display: block;
  margin-bottom: 4px;
}

.editorial-note strong {
  font-size: 13px;
  color: var(--text-dark);
  line-height: 1.4;
  display: block;
}

/* ==========================================================================
   8. SECTION 3: 7 RISK VECTORS (DARK) - MOBILE DEFAULT
   ========================================================================== */
.section-head {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
  width: 100%;
}

.section-dark .section-head h2 {
  color: #ffffff;
}

.section-light .section-head h2 {
  color: var(--text-dark);
}

.section-dark .section-head p {
  color: var(--text-light-muted);
}

.section-light .section-head p {
  color: var(--text-dark-muted);
}

.section-head-centered {
  text-align: center;
  max-width: 800px;
  margin-inline: auto;
}

.wide-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 28px;
  border: 1px solid var(--border-dark);
  box-shadow: var(--shadow-xl);
  width: 100%;
}

.wide-media img {
  width: 100%;
  height: auto;
  max-height: 460px;
  object-fit: cover;
}

.wide-media-label {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  background: rgba(11, 18, 32, 0.92);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  padding: 12px 16px;
  backdrop-filter: blur(10px);
}

.wide-media-label span {
  font-family: 'Manrope', sans-serif;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--accent-hi);
  display: block;
  margin-bottom: 2px;
}

.wide-media-label strong {
  font-size: 13px;
  color: #ffffff;
}

.risk-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  width: 100%;
}

.risk-card {
  background: var(--dark-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  padding: 20px 18px;
  position: relative;
  transition: transform 0.3s var(--ease), border-color 0.3s ease, background 0.3s ease;
}

.risk-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  background: var(--dark-card-hover);
}

.card-num {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--accent-hi);
  display: block;
  margin-bottom: 8px;
  line-height: 1;
}

.risk-card h3 {
  font-size: 16.5px;
  color: #ffffff;
  margin-bottom: 8px;
}

.risk-card p {
  font-size: 14px;
  line-height: 1.58;
}

/* ==========================================================================
   9. SECTION 4: THE ADVISORY LENS (LIGHT) - MOBILE DEFAULT
   ========================================================================== */
.profile-grid {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100%;
}

.profile-copy {
  width: 100%;
}

.profile-copy h2 {
  color: var(--text-dark);
  margin-bottom: 16px;
}

.profile-copy p {
  margin-bottom: 14px;
}

.profile-copy strong {
  color: var(--text-dark);
}

.stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 20px 0;
  padding: 16px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  width: 100%;
}

.stats div {
  display: flex;
  align-items: baseline;
  gap: 14px;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 10px;
}

.stats div:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.stats div strong {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--accent-dark);
  line-height: 1.1;
  min-width: 60px;
}

.stats div span {
  font-size: 13px;
  color: var(--text-dark-muted);
  line-height: 1.4;
  display: block;
}

.profile-gallery {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

.gallery-main {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-light);
}

.gallery-main img {
  width: 100%;
  height: auto;
}

.image-badge {
  position: absolute;
  left: 12px;
  bottom: 12px;
  background: rgba(9, 20, 38, 0.92);
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  padding: 8px 14px;
  color: #ffffff;
  backdrop-filter: blur(8px);
}

.image-badge span {
  font-family: 'Manrope', sans-serif;
  font-size: 8.5px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--accent-hi);
  display: block;
}

.image-badge strong {
  font-size: 14px;
}

.gallery-secondary {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 14px;
  align-items: center;
  background: var(--light-surface);
  border: 1px solid var(--border-light-accent);
  border-radius: var(--radius);
  padding: 10px 14px;
  box-shadow: var(--shadow-card);
}

.gallery-secondary img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
}

.gallery-secondary span {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.35;
}

/* ==========================================================================
   10. SECTION 5: 10-QUESTION TEST (DARK) - MOBILE DEFAULT
   ========================================================================== */
.test-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 24px;
  width: 100%;
}

.test-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-dark);
  box-shadow: var(--shadow-xl);
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
}

.test-media img {
  width: 100%;
  height: auto;
}

.questions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.question {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 14px;
  align-items: center;
  background: var(--dark-card);
  border: 1px solid var(--border-dark-subtle);
  border-radius: var(--radius);
  padding: 14px 16px;
  transition: border-color 0.3s ease, transform 0.3s var(--ease);
}

.question:hover {
  border-color: var(--accent);
  transform: translateX(4px);
}

.q-num {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--accent-hi);
  line-height: 1;
}

.question p {
  font-size: 13.5px;
  color: #ffffff;
  line-height: 1.45;
}

/* ==========================================================================
   11. SECTION 6: EXECUTIVE DELIVERABLES (LIGHT) - MOBILE DEFAULT
   ========================================================================== */
.light-media {
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-card);
}

.benefit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 24px;
  width: 100%;
}

.benefit-card {
  background: var(--light-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 22px 18px;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease, border-color 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-dark);
  box-shadow: var(--shadow-card-hover);
}

.benefit-card .card-num {
  color: var(--accent-dark);
}

.benefit-card h3 {
  font-size: 17px;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.benefit-card p {
  font-size: 14px;
  line-height: 1.58;
}

/* ==========================================================================
   12. SECTION 7: HIGH-STAKES SECTORS (DARK) - MOBILE DEFAULT
   ========================================================================== */
.sector-feature {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-dark);
  margin-bottom: 24px;
  box-shadow: var(--shadow-xl);
  width: 100%;
}

.sector-feature img {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: cover;
}

.sector-feature-copy {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  background: rgba(11, 18, 32, 0.92);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  padding: 10px 14px;
  backdrop-filter: blur(10px);
}

.sector-feature-copy span {
  font-family: 'Manrope', sans-serif;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--accent-hi);
  display: block;
  margin-bottom: 2px;
}

.sector-feature-copy strong {
  font-size: 13px;
  color: #ffffff;
}

.sector-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  width: 100%;
}

.sector-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--dark-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  padding: 14px 16px;
  transition: transform 0.3s var(--ease), border-color 0.3s ease;
}

.sector-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
}

.sector-card .card-num {
  font-size: 18px;
  margin-bottom: 0;
  flex-shrink: 0;
}

.sector-card strong {
  font-size: 13.5px;
  color: #ffffff;
  line-height: 1.35;
}

/* ==========================================================================
   13. SECTION 8: ENGAGEMENT PROCESS (LIGHT) - MOBILE DEFAULT
   ========================================================================== */
.perspective-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.perspective-copy {
  width: 100%;
}

.perspective-copy h2 {
  color: var(--text-dark);
  margin-bottom: 16px;
}

.perspective-copy p {
  margin-bottom: 18px;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
  width: 100%;
}

.process-step {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 12px;
  align-items: start;
  background: var(--light-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 14px 16px;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s var(--ease), border-color 0.3s ease;
}

.process-step:hover {
  transform: translateX(4px);
  border-color: var(--accent-dark);
}

.step-num {
  font-family: 'Manrope', sans-serif;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--accent-dark);
  text-transform: uppercase;
  padding: 5px 6px;
  background: rgba(212, 175, 55, 0.12);
  border-radius: var(--radius-sm);
  text-align: center;
  display: inline-block;
}

.process-step strong {
  font-size: 14.5px;
  color: var(--text-dark);
  display: block;
  margin-bottom: 4px;
}

.process-step p {
  font-size: 13px;
  margin-bottom: 0;
  line-height: 1.48;
}

.perspective-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-card);
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
}

.perspective-media img {
  width: 100%;
  height: auto;
}

/* ==========================================================================
   14. SECTION 9: FINAL DECISION CTA (DARK) - MOBILE DEFAULT
   ========================================================================== */
.final-cta {
  padding: 56px 0;
  background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.14), transparent 50%),
              var(--dark-bg);
  position: relative;
}

.final-grid {
  display: flex;
  flex-direction: column;
  gap: 28px;
  text-align: center;
  width: 100%;
}

.final-copy {
  width: 100%;
}

.final-copy h2 {
  color: #ffffff;
  margin-bottom: 16px;
  font-size: clamp(26px, 7.5vw, 34px);
}

.final-copy p {
  font-size: 15px;
  line-height: 1.62;
  color: #cbd5e1;
  margin-bottom: 20px;
}

.final-copy small {
  display: block;
  margin-top: 14px;
  color: #94a3b8;
  font-size: 11.5px;
  letter-spacing: 0.08em;
}

.final-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-dark);
  box-shadow: var(--shadow-xl);
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
}

.final-media img {
  width: 100%;
  height: auto;
}

/* ==========================================================================
   15. SECTION 10: LUXURY FOOTER - MOBILE DEFAULT
   ========================================================================== */
.site-footer {
  background: #060b13;
  color: #f8fafc;
  padding: 50px 0 28px;
  border-top: 1px solid var(--border-dark);
  position: relative;
  overflow: hidden;
}

.footer-container {
  width: 100%;
  max-width: 980px;
  margin-inline: auto;
  padding: 0 16px;
  box-sizing: border-box;
  text-align: center;
  position: relative;
  z-index: 2;
}

.footer-center-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.footer-badge-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 50%;
  margin-bottom: 4px;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.footer-main-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: #ffffff;
}

.footer-tagline {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--accent-hi);
}

.footer-description {
  max-width: 720px;
  margin: 0 auto 20px;
  font-size: 13px;
  line-height: 1.65;
  color: #94a3b8;
}

.footer-divider-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.35), transparent);
  margin-bottom: 20px;
}

.footer-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}

.footer-policy-link {
  font-size: 13px;
  color: #cbd5e1;
  transition: color 0.3s ease;
  font-weight: 500;
}

.footer-policy-link:hover {
  color: var(--accent-hi);
  text-decoration: underline;
}

.footer-nav-links .bullet {
  display: none;
}

.footer-bottom-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 11.5px;
  color: #64748b;
}

.footer-credit a {
  color: var(--accent-hi);
  font-weight: 600;
  transition: color 0.3s ease;
}

.footer-credit a:hover {
  color: #ffffff;
}

/* ==========================================================================
   16. POLICY MODAL DIALOGS
   ========================================================================== */
.policy-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(6, 11, 19, 0.85);
  backdrop-filter: blur(8px);
  z-index: 10000;
  display: grid;
  place-items: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}

.policy-modal-backdrop.active,
.policy-modal-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.policy-modal-card {
  background: #0f1a2e;
  border: 1px solid var(--accent);
  border-radius: var(--radius-lg);
  max-width: 640px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 24px 18px;
  position: relative;
  box-shadow: var(--shadow-xl);
  transform: translateY(20px);
  transition: transform 0.3s var(--ease);
}

.policy-modal-backdrop.active .policy-modal-card,
.policy-modal-backdrop.is-open .policy-modal-card {
  transform: translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 26px;
  color: #94a3b8;
  line-height: 1;
  transition: color 0.2s ease;
}

.modal-close-btn:hover {
  color: #ffffff;
}

.modal-content-body h3 {
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 14px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.modal-content-body p {
  font-size: 13.5px;
  line-height: 1.65;
  color: #cbd5e1;
  margin-bottom: 12px;
}

/* ==========================================================================
   17. SCROLL REVEAL ANIMATIONS (MATCHING ARNESTKONNECT.COM)
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translate3d(0, 32px, 0) scale(0.985);
  transition: opacity 0.85s var(--ease), transform 0.95s var(--ease);
  will-change: opacity, transform;
}

[data-reveal="left"] {
  transform: translate3d(-34px, 0, 0) scale(0.985);
}

[data-reveal="right"] {
  transform: translate3d(34px, 0, 0) scale(0.985);
}

[data-reveal="scale"] {
  transform: translate3d(0, 26px, 0) scale(0.94);
}

.reveal.is-visible,
.reveal.is-revealed {
  opacity: 1;
  transform: none !important;
}

/* Staggered sequential reveals for cards and list items */
.risk-grid .reveal:nth-child(2),
.benefit-grid .reveal:nth-child(2),
.sector-grid .reveal:nth-child(2),
.questions .reveal:nth-child(2),
.process-steps .reveal:nth-child(2) {
  transition-delay: 0.05s;
}

.risk-grid .reveal:nth-child(3),
.benefit-grid .reveal:nth-child(3),
.sector-grid .reveal:nth-child(3),
.questions .reveal:nth-child(3),
.process-steps .reveal:nth-child(3) {
  transition-delay: 0.10s;
}

.risk-grid .reveal:nth-child(4),
.benefit-grid .reveal:nth-child(4),
.sector-grid .reveal:nth-child(4),
.questions .reveal:nth-child(4) {
  transition-delay: 0.15s;
}

.risk-grid .reveal:nth-child(5),
.benefit-grid .reveal:nth-child(5),
.sector-grid .reveal:nth-child(5),
.questions .reveal:nth-child(5) {
  transition-delay: 0.20s;
}

.risk-grid .reveal:nth-child(6),
.benefit-grid .reveal:nth-child(6),
.sector-grid .reveal:nth-child(6),
.questions .reveal:nth-child(6) {
  transition-delay: 0.25s;
}

.risk-grid .reveal:nth-child(7),
.sector-grid .reveal:nth-child(7),
.questions .reveal:nth-child(7) {
  transition-delay: 0.30s;
}

.sector-grid .reveal:nth-child(8),
.questions .reveal:nth-child(8) {
  transition-delay: 0.35s;
}

.questions .reveal:nth-child(9) {
  transition-delay: 0.40s;
}

.questions .reveal:nth-child(10) {
  transition-delay: 0.45s;
}

/* Atmospheric continuous micro-motion like arnestkonnect.com */
.hero-copy {
  animation: heroBreathe 10s ease-in-out infinite;
}

@keyframes heroBreathe {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

.hero-image-wrap {
  animation: imageFloat 12s ease-in-out infinite;
}

@keyframes imageFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.editorial-media,
.wide-media,
.profile-gallery,
.test-media,
.perspective-media,
.sector-feature,
.final-media {
  transition: transform 0.65s var(--ease), box-shadow 0.65s var(--ease);
}

.editorial-media:hover,
.wide-media:hover,
.profile-gallery:hover,
.test-media:hover,
.perspective-media:hover,
.sector-feature:hover,
.final-media:hover {
  transform: translateY(-4px);
}

/* ==========================================================================
   18. RESPONSIVE MEDIA QUERY: DESKTOP SCREENS (MIN-WIDTH: 992px)
   ========================================================================== */
@media screen and (min-width: 992px) {
  .container {
    padding: 0;
    width: min(var(--container-width), calc(100% - 48px));
  }

  .section-space {
    padding: clamp(72px, 8vw, 130px) 0;
  }

  /* Desktop Typography */
  h1 {
    font-size: clamp(38px, 4.8vw, 56px);
    line-height: 1.08;
  }

  h2 {
    font-size: clamp(30px, 3.8vw, 44px);
    line-height: 1.12;
  }

  .btn {
    width: auto;
  }

  .btn-large {
    min-height: 58px;
    padding-inline: 36px;
    font-size: 13px;
  }

  .center-action {
    margin-top: 48px;
  }

  .section-inline-cta, .profile-action, .perspective-action, .final-actions {
    margin-top: 32px;
    justify-content: flex-start;
  }

  .hero-actions .btn,
  .section-inline-cta .btn,
  .profile-action .btn,
  .perspective-action .btn,
  .final-actions .btn {
    width: auto;
  }

  /* SECTION 1: HERO DESKTOP 2-COLUMN GRID */
  .hero {
    min-height: 100svh;
    display: flex;
    align-items: center;
    padding: 0;
    background: radial-gradient(circle at 82% 28%, rgba(212, 175, 55, 0.12), transparent 36%),
                radial-gradient(circle at 12% 70%, rgba(17, 31, 54, 0.7), transparent 40%),
                var(--dark-bg);
  }

  .hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, 440px);
    gap: clamp(40px, 5vw, 76px);
    align-items: center;
    min-height: 100svh;
    padding: clamp(60px, 7vw, 96px) 0 60px;
    width: min(var(--container-width), calc(100% - 48px));
  }

  .hero-copy {
    order: unset;
    max-width: 720px;
    text-align: left;
    align-items: flex-start;
  }

  .hero-eyebrow-pill {
    margin: 0 0 20px 0;
    font-size: 10.5px;
    padding: 8px 18px;
    justify-content: flex-start;
  }

  .kicker {
    text-align: left;
    margin: 0 0 14px 0;
    letter-spacing: 0.16em;
  }

  .hero-title {
    text-align: left;
    margin: 0 0 22px 0;
    font-size: clamp(38px, 4.8vw, 56px);
  }

  .hero-title em {
    display: inline;
    margin-top: 0;
    font-size: inherit;
  }

  .hero-lede {
    font-size: clamp(16px, 1.25vw, 18px);
    line-height: 1.68;
    margin: 0 0 26px 0;
    text-align: left;
    max-width: 100%;
  }

  .hero-value-points {
    margin: 0 0 28px 0;
    max-width: 100%;
    padding: 20px 22px;
  }

  .hero-rule {
    margin: 0 0 24px 0;
    width: 90px;
    background: linear-gradient(90deg, var(--accent), transparent);
  }

  .hero-actions {
    margin: 0;
    max-width: 100%;
    justify-content: flex-start;
  }

  .hero-trust {
    margin: 24px 0 0 0;
    justify-content: flex-start;
    font-size: 10px;
    letter-spacing: 0.12em;
    gap: 12px 16px;
  }

  .hero-trust b {
    font-size: 12px;
  }

  .hero-media {
    order: unset;
    margin: 0;
    max-width: 440px;
  }

  .hero-image-wrap {
    padding: 12px 12px 34px 0;
  }

  .hero-image-frame {
    inset: 24px -10px 0 18px;
  }

  .hero-image-caption {
    left: 14px;
    right: 14px;
    bottom: 8px;
    padding: 14px 18px;
    text-align: left;
    align-items: flex-start;
  }

  .caption-tag {
    font-size: 9px;
  }

  .hero-image-caption strong {
    font-size: 16px;
  }

  .caption-sub {
    font-size: 11px;
  }

  .hero-index {
    display: block;
    position: absolute;
    right: -24px;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Playfair Display', serif;
    font-size: 100px;
    font-weight: 700;
    color: rgba(212, 175, 55, 0.12);
    pointer-events: none;
    line-height: 1;
  }

  .hero-bottom {
    display: flex;
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    align-items: center;
    gap: 10px;
    color: #64748b;
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-family: 'Manrope', sans-serif;
    pointer-events: none;
  }

  .hero-bottom i {
    display: block;
    width: 24px;
    height: 1px;
    background: currentColor;
  }

  /* SECTION 2: THE BLIND SPOT DESKTOP */
  .intro-grid {
    display: grid;
    grid-template-columns: 200px 1.2fr 1fr;
    gap: 40px;
    align-items: start;
  }

  .intro-copy .display-s {
    font-size: clamp(24px, 2.8vw, 34px);
  }

  .editorial-media {
    max-width: 100%;
    margin: 0;
  }

  .editorial-note {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 14px 18px;
  }

  .editorial-note strong {
    font-size: 13.5px;
  }

  /* SECTION 3: 7 RISK VECTORS DESKTOP */
  .section-head {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: end;
    margin-bottom: 48px;
  }

  .wide-media {
    margin-bottom: 48px;
  }

  .wide-media-label {
    left: 20px;
    right: auto;
    bottom: 20px;
    padding: 12px 18px;
  }

  .wide-media-label strong {
    font-size: 13.5px;
  }

  .risk-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
  }

  .risk-card {
    padding: 28px 24px;
  }

  .risk-card h3 {
    font-size: 18px;
  }

  /* SECTION 4: THE ADVISORY LENS DESKTOP */
  .profile-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 56px;
    align-items: center;
  }

  .profile-gallery {
    gap: 20px;
    max-width: 100%;
    margin: 0;
  }

  .image-badge {
    left: 14px;
    bottom: 14px;
    padding: 10px 16px;
  }

  .image-badge strong {
    font-size: 15px;
  }

  .gallery-secondary {
    grid-template-columns: 90px 1fr;
    gap: 16px;
    padding: 12px 16px;
  }

  .gallery-secondary img {
    width: 90px;
    height: 90px;
  }

  .gallery-secondary span {
    font-size: 13.5px;
  }

  .stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 32px 0;
    padding: 24px 0;
  }

  .stats div {
    display: block;
    gap: 0;
    border-bottom: none;
    padding-bottom: 0;
  }

  .stats div strong {
    font-size: clamp(28px, 3.2vw, 38px);
    margin-bottom: 4px;
    min-width: auto;
  }

  /* SECTION 5: 10-QUESTION TEST DESKTOP */
  .test-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: center;
    margin-top: 40px;
  }

  .test-media {
    max-width: 100%;
    margin: 0;
  }

  .questions {
    gap: 12px;
  }

  .question {
    grid-template-columns: 36px 1fr;
    gap: 16px;
    padding: 14px 18px;
  }

  .q-num {
    font-size: 18px;
  }

  /* SECTION 6: DELIVERABLES DESKTOP */
  .benefit-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 32px;
  }

  .benefit-card {
    padding: 32px 26px;
  }

  .benefit-card h3 {
    font-size: 19px;
  }

  /* SECTION 7: SECTORS DESKTOP */
  .sector-feature {
    margin-bottom: 40px;
  }

  .sector-feature-copy {
    left: 20px;
    right: auto;
    bottom: 20px;
    padding: 12px 18px;
  }

  .sector-feature-copy strong {
    font-size: 14px;
  }

  .sector-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
  }

  .sector-card {
    padding: 20px 22px;
  }

  .sector-card .card-num {
    font-size: 22px;
  }

  .sector-card strong {
    font-size: 14.5px;
  }

  /* SECTION 8: PROCESS DESKTOP */
  .perspective-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 56px;
    align-items: center;
  }

  .process-steps {
    gap: 18px;
    margin-bottom: 32px;
  }

  .process-step {
    grid-template-columns: 80px 1fr;
    gap: 18px;
    padding: 20px 22px;
  }

  .step-num {
    font-size: 11px;
    padding: 6px 10px;
  }

  .process-step strong {
    font-size: 16px;
  }

  .process-step p {
    font-size: 14px;
  }

  .perspective-media {
    max-width: 100%;
    margin: 0;
  }

  /* SECTION 9: FINAL CTA DESKTOP */
  .final-cta {
    padding: clamp(80px, 9vw, 140px) 0;
  }

  .final-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 56px;
    align-items: center;
    text-align: left;
  }

  .final-copy p {
    font-size: clamp(16px, 1.3vw, 18px);
    margin-bottom: 28px;
  }

  .final-media {
    max-width: 440px;
    margin: 0 auto;
  }

  /* FOOTER DESKTOP */
  .site-footer {
    padding: 80px 0 40px;
  }

  .footer-container {
    padding: 0;
    width: min(980px, calc(100% - 48px));
  }

  .footer-main-title {
    font-size: 24px;
  }

  .footer-tagline {
    font-size: 10px;
  }

  .footer-description {
    font-size: 14.5px;
    margin-bottom: 36px;
  }

  .footer-divider-line {
    margin-bottom: 28px;
  }

  .footer-nav-links {
    flex-direction: row;
    gap: 20px;
    margin-bottom: 36px;
  }

  .footer-nav-links .bullet {
    display: inline;
  }

  .footer-bottom-bar {
    flex-direction: row;
    justify-content: space-between;
    padding-top: 24px;
    font-size: 12.5px;
  }

  .policy-modal-card {
    padding: 32px 28px;
  }

  .modal-content-body h3 {
    font-size: 22px;
  }

  .modal-content-body p {
    font-size: 14px;
  }
}

/* ==========================================================================
   19. ACCESSIBILITY / REDUCED MOTION
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .btn::before {
    animation: none !important;
  }
  .btn:hover, .risk-card:hover, .benefit-card:hover, .sector-card:hover, .process-step:hover {
    transform: none !important;
  }
}
