:root {
  --primary-navy: #0F2438;
  --secondary-teal: #2C5F6F;
  --secondary-teal-light: #9EC9D2;
  --accent-gold: #C9A84C;
  --background-cream: #FEFDFB;
  --text-dark: #1F1F1F;
  --text-white: #FFFFFF;
  --radius-lg: 12px;
  --radius-md: 8px;
  --radius-sm: 6px;
  --max-width: 1400px;
  --transition-fast: 200ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition: 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background-cream);
  color: var(--text-dark);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.8;
}

a {
  color: inherit;
}

svg {
  display: block;
}

.section-inner {
  width: min(100%, var(--max-width));
  margin: 0 auto;
}

.section-inner.narrow {
  max-width: 1000px;
}

.section-heading h2,
.founder-heading h2,
.final-cta h2 {
  margin: 0;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
}

.section-heading p {
  margin: 16px 0 0;
}

.centered {
  text-align: center;
}

.gold-rule,
.founder-rule,
.card-line {
  display: block;
  background: var(--accent-gold);
}

.gold-rule {
  width: 80px;
  height: 4px;
  margin: 24px auto 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  border-radius: var(--radius-sm);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: color var(--transition-fast), background var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast);
}

.button-gold {
  border: 0;
  background: linear-gradient(135deg, var(--accent-gold), #b8963f);
  color: var(--primary-navy);
  padding: 18px 40px;
}

.button-gold:hover,
.button-gold:focus-visible {
  background: linear-gradient(135deg, #b89536, #a9872f);
  box-shadow: 0 12px 28px rgba(201, 168, 76, 0.38);
  transform: translateY(-1px);
}

.button-outline {
  border: 2px solid var(--text-white);
  background: transparent;
  color: var(--text-white);
  padding: 16px 38px;
}

.button-outline:hover,
.button-outline:focus-visible {
  background: var(--text-white);
  color: var(--primary-navy);
}

.full-width {
  width: 100%;
}

/* Navigation */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 75px;
  background: var(--primary-navy);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, var(--max-width));
  height: 75px;
  margin: 0 auto;
  padding: 0 40px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-white);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
}

.logo img {
  display: block;
  width: auto;
  height: 60px;
}

.nav-links {
  position: absolute;
  top: 75px;
  left: 0;
  display: none;
  width: 100%;
  background: var(--primary-navy);
  border-top: 1px solid rgba(201, 168, 76, 0.2);
}

.nav-links.is-open {
  display: block;
}

.nav-link {
  position: relative;
  display: block;
  padding: 18px 40px;
  color: var(--text-white);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.nav-link::after {
  position: absolute;
  right: 40px;
  bottom: 10px;
  left: 40px;
  height: 2px;
  background: var(--accent-gold);
  content: "";
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.active {
  color: var(--accent-gold);
}

.nav-link.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.mobile-menu-toggle {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius-sm);
  background: transparent;
  cursor: pointer;
}

.mobile-menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--text-white);
}

/* Hero */
.hero {
  padding: 155px 40px 80px;
  background:
    linear-gradient(135deg, rgba(201, 168, 76, 0.08), transparent 46%),
    var(--primary-navy);
  color: var(--text-white);
}

.hero-grid {
  display: grid;
  gap: 56px;
  align-items: center;
}

.hero-copy h1 {
  max-width: 780px;
  margin: 0 0 24px;
  color: var(--text-white);
  font-size: 40px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.2;
}

.hero-copy p {
  max-width: 670px;
  margin: 0 0 50px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: stretch;
  max-width: 330px;
}

.hero-portrait {
  display: none;
  margin: 0;
}

.portrait-frame {
  width: min(100%, 432px);
  margin-left: auto;
  padding: 14px;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(44, 95, 111, 0.32));
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.portrait-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 4 / 5;
  border: 4px solid var(--accent-gold);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(15, 36, 56, 0.2), rgba(15, 36, 56, 0.72)),
    linear-gradient(135deg, #dce3e4, #aebec2);
  color: var(--text-white);
  text-align: center;
  overflow: hidden;
}

.portrait-placeholder span {
  color: var(--text-white);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.2;
}

.portrait-placeholder small {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.portrait-placeholder img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Problem */
.problem,
.guarantee,
.founder {
  padding: 80px 40px;
  background: var(--background-cream);
}

.problem .section-heading h2,
.guarantee .section-heading h2,
.founder-heading h2 {
  color: var(--primary-navy);
}

.faq {
  padding: 80px 40px;
  background: var(--primary-navy);
  color: var(--text-white);
}

.faq .section-heading h2 {
  color: var(--text-white);
}

.problem .section-heading p {
  color: var(--secondary-teal);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
}

.pain-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 70px;
}

.pain-card {
  padding: 40px;
  border-left: 4px solid var(--accent-gold);
  border-radius: var(--radius-md);
  background: var(--text-white);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: transform var(--transition), box-shadow var(--transition);
}

.pain-card:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.icon-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 74px;
  height: 74px;
  margin-bottom: 24px;
  border-radius: var(--radius-md);
  background: rgba(201, 168, 76, 0.1);
  color: var(--accent-gold);
}

.icon-frame svg {
  width: 50px;
  height: 50px;
}

.pain-card h3 {
  margin: 0 0 12px;
  color: var(--primary-navy);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
}

.card-line {
  width: 40px;
  height: 3px;
  margin: 12px 0 20px;
}

.pain-card p {
  margin: 0;
  color: var(--text-dark);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.3px;
  line-height: 1.7;
}

/* How It Works */
.system {
  padding: 80px 40px;
  background: var(--primary-navy);
  color: var(--text-white);
}

.system .section-heading h2 {
  color: var(--text-white);
}

.system .section-heading p {
  margin-bottom: 70px;
  color: var(--accent-gold);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
}

.component-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.component-card {
  position: relative;
  text-align: center;
}

.component-card:not(:last-child)::after {
  position: absolute;
  bottom: -30px;
  left: 50%;
  width: 3px;
  height: 20px;
  background: linear-gradient(180deg, rgba(201, 168, 76, 0.15), var(--accent-gold));
  content: "";
  transform: translateX(-50%);
}

.component-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: var(--radius-lg);
  background: rgba(201, 168, 76, 0.15);
  color: var(--accent-gold);
  transition: box-shadow var(--transition), transform var(--transition);
}

.component-icon svg {
  width: 70px;
  height: 70px;
}

.component-card:hover .component-icon {
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.4);
  transform: translateY(-3px);
}

.component-card h3 {
  margin: 0 0 10px;
  color: var(--accent-gold);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
}

.component-card p {
  max-width: 315px;
  margin: 0 auto;
  color: var(--text-white);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
}

/* Guarantee */
.guarantee-prehead {
  max-width: 760px;
  margin: 40px auto 30px;
  color: var(--primary-navy);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.6;
  text-align: center;
}

.guarantee-copy {
  max-width: 900px;
  margin: 40px auto 0;
}

.guarantee-copy p {
  margin: 0 0 24px;
  color: var(--text-dark);
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.3px;
  line-height: 1.9;
}

.guarantee-copy p:last-child {
  margin-bottom: 0;
}

.badge-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 50px;
}

.guarantee-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 128px;
  padding: 24px 20px;
  border-radius: var(--radius-md);
  background: var(--primary-navy);
  color: var(--accent-gold);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.guarantee-badge:hover {
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
  transform: translateY(-3px);
}

.guarantee-badge svg {
  width: 24px;
  height: 24px;
  margin-bottom: 10px;
}

.guarantee-badge span {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}

.guarantee-badge small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 600;
}



/* FAQ */
.faq-inner {
  max-width: 1200px;
}

.accordion {
  max-width: 920px;
  margin: 60px auto 0;
}

.accordion-item {
  margin-bottom: 16px;
  border-radius: var(--radius-md);
  background: var(--text-white);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: box-shadow var(--transition), transform var(--transition);
}

.accordion-item:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.accordion-trigger {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 72px;
  padding: 24px;
  border: 0;
  background: transparent;
  color: var(--primary-navy);
  font: inherit;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  text-align: left;
  cursor: pointer;
  user-select: none;
}

.accordion-arrow {
  color: var(--accent-gold);
  font-weight: 400;
  transition: transform var(--transition-fast);
}

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  opacity: 0;
  transition: max-height var(--transition), opacity var(--transition-fast), padding var(--transition);
}

.accordion-item.is-open .accordion-panel {
  max-height: 360px;
  padding: 0 24px 24px;
  opacity: 1;
}

.accordion-line {
  height: 2px;
  margin: 0 0 16px;
  background: var(--accent-gold);
}

.accordion-panel p {
  margin: 0;
  color: var(--text-dark);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
}

/* Founder */
.founder-heading {
  margin-bottom: 70px;
}

.founder-heading .gold-rule {
  margin-right: 0;
  margin-left: 0;
}

.founder-grid {
  display: grid;
  gap: 40px;
  align-items: center;
}

.founder-photo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  height: 220px;
  border: 4px solid var(--accent-gold);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #e9ecec, #d7dddd);
  color: var(--secondary-teal);
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
  font-size: 15px;
  font-weight: 700;
  transition: transform 400ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

.founder-photo:hover {
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
  transform: scale(1.03);
}

.founder-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-card {
  padding: 42px 30px;
  border-radius: var(--radius-lg);
  background: var(--primary-navy);
  color: var(--text-white);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.founder-card h3 {
  margin: 0 0 8px;
  color: var(--accent-gold);
  font-size: 36px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.2;
}

.founder-title {
  margin: 0 0 16px;
  color: var(--secondary-teal-light);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
}

.founder-rule {
  width: 50px;
  height: 3px;
  margin-bottom: 24px;
}

.founder-card p:not(.founder-title) {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
}

.founder-card a {
  color: var(--accent-gold);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: color var(--transition-fast), text-decoration-color var(--transition-fast);
}

.founder-card a:hover,
.founder-card a:focus-visible {
  color: #b89536;
  text-decoration: underline;
  text-underline-offset: 5px;
}

/* Final CTA */
.final-cta {
  padding: 100px 40px;
  background:
    linear-gradient(135deg, rgba(201, 168, 76, 0.12), transparent 42%),
    var(--primary-navy);
  color: var(--text-white);
  text-align: center;
}

.cta-inner {
  max-width: 1200px;
}

.final-cta h2 {
  color: var(--text-white);
  font-size: 40px;
  max-width: 1120px;
  margin-right: auto;
  margin-left: auto;
}

.final-cta p {
  max-width: 720px;
  margin: 30px auto 60px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
}

.final-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: stretch;
  max-width: 360px;
  margin: 0 auto;
}

.final-actions .button {
  border-radius: var(--radius-md);
  min-height: 62px;
}

/* Footer */
.site-footer {
  padding: 60px 40px;
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  background: var(--primary-navy);
  color: var(--text-white);
  text-align: center;
}

.site-footer p {
  margin: 0;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
  color: var(--text-white);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.footer-logo img {
  display: block;
  width: auto;
  height: 92px;
}

.footer-contact {
  margin-bottom: 24px;
  font-size: 14px;
  font-weight: 500;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 32px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.site-footer a {
  color: var(--text-white);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--accent-gold);
}

.copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.2px;
}

/* Scroll Reveal */
.section-observe {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.section-observe.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Tablet */
@media (min-width: 768px) {
  .mobile-menu-toggle {
    display: none;
  }

  .nav-links {
    position: static;
    display: flex;
    width: auto;
    border: 0;
    background: transparent;
    gap: 34px;
  }

  .nav-link {
    padding: 10px 0;
  }

  .nav-link::after {
    right: 0;
    bottom: 2px;
    left: 0;
  }

  .hero-grid {
    grid-template-columns: 1.02fr 0.98fr;
  }

  .hero-copy h1 {
    font-size: 52px;
  }

  .hero-copy p {
    font-size: 21px;
  }

  .hero-portrait {
    display: block;
  }

  .pain-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .component-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 54px 42px;
  }

  .component-card:not(:last-child)::after {
    display: none;
  }

  .badge-grid {
    grid-template-columns: repeat(3, 1fr);
  }


  .founder-grid {
    grid-template-columns: 35% 57%;
    gap: 8%;
  }

  .founder-card {
    padding: 50px 40px;
  }

  .final-actions {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    max-width: none;
    gap: 20px;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .navbar {
    padding: 0 60px;
  }

  .hero {
    padding: 195px 80px 120px;
  }

  .hero-copy h1 {
    font-size: 64px;
    letter-spacing: 0;
  }

  .hero-copy p {
    font-size: 22px;
  }

  .problem,
  .system,
  .guarantee,
  .faq,
  .founder {
    padding: 100px 60px;
  }

  .section-heading h2,
  .founder-heading h2 {
    font-size: 48px;
  }

  .component-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 64px 44px;
  }

  .component-card:nth-child(-n + 3)::after {
    position: absolute;
    top: 35px;
    right: -31px;
    bottom: auto;
    left: auto;
    display: block;
    width: 28px;
    height: 3px;
    background: linear-gradient(90deg, rgba(201, 168, 76, 0.2), var(--accent-gold));
    transform: none;
  }

  .component-card:nth-child(-n + 3)::before {
    position: absolute;
    top: 29px;
    right: -35px;
    width: 0;
    height: 0;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 9px solid var(--accent-gold);
    content: "";
  }

  .final-cta {
    padding: 120px 60px;
  }

  .final-cta h2 {
    font-size: 56px;
  }

  .final-cta p {
    font-size: 20px;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .navbar {
    padding: 0 20px;
  }

  .logo {
    font-size: 20px;
  }

  .hero,
  .problem,
  .system,
  .guarantee,
  .faq,
  .founder,
  .final-cta {
    padding-right: 24px;
    padding-left: 24px;
  }

  .hero {
    padding-top: 135px;
  }

  .section-heading h2,
  .founder-heading h2,
  .final-cta h2,
  .hero-copy h1 {
    font-size: 32px;
    letter-spacing: 0;
  }

  .hero-copy p,
  .final-cta p {
    font-size: 16px;
  }

  .button {
    width: 100%;
  }

  .pain-card,
  .founder-card {
    padding: 30px 24px;
  }

  .accordion-trigger {
    font-size: 16px;
  }
}

/* ==========================================
   RESEARCH REPORT PAGE STYLES
   ========================================== */

/* Report Page Header */
.report-header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  height: 75px;
  background: var(--primary-navy);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.report-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, var(--max-width));
  height: 100%;
  margin: 0 auto;
  padding: 0 40px;
}

.report-logo-link {
  text-decoration: none;
}

.back-link {
  color: var(--text-white);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color var(--transition-fast);
}

.back-link:hover {
  color: var(--accent-gold);
}

/* Report Hero Section */
.report-hero {
  padding: 80px 40px;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.08), transparent 46%), var(--primary-navy);
  color: var(--text-white);
  text-align: center;
}

.report-hero-inner {
  width: min(100%, 960px);
  margin: 0 auto;
}

.report-hero h1 {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.25;
  margin: 0 0 24px;
  color: var(--text-white);
  letter-spacing: -0.5px;
}

.report-hero .subheading {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 48px;
}

/* Format Selection Picker */
.format-picker {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: inline-block;
  width: 100%;
  max-width: 840px;
}

.picker-label {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-gold);
  margin: 0 0 16px 0;
}

.picker-buttons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.picker-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--text-white);
  color: var(--primary-navy);
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  transition: transform var(--transition-fast), background var(--transition-fast), box-shadow var(--transition-fast);
}

.picker-btn:hover {
  background: var(--accent-gold);
  color: var(--primary-navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(201, 168, 76, 0.25);
}

.btn-icon {
  font-size: 16px;
}

/* Rows of Text & Visuals */
.text-visual-row {
  padding: 80px 40px;
}

.row-cream {
  background: var(--background-cream);
}

.row-navy {
  background: var(--primary-navy);
}

.row-inner {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.row-text {
  max-width: 650px;
}

.row-text h2 {
  font-size: 32px;
  font-weight: 800;
  margin: 0 0 16px;
  color: var(--primary-navy);
  line-height: 1.25;
}

.row-text.text-white h2 {
  color: var(--text-white);
}

.row-text.text-white p,
.row-text.text-white li {
  color: rgba(255, 255, 255, 0.9);
}

.gold-accent-line {
  width: 60px;
  height: 3px;
  background: var(--accent-gold);
  margin-bottom: 24px;
}

.row-text p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.row-text p:last-child {
  margin-bottom: 0;
}

.row-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.visual-wrapper {
  width: 100%;
  max-width: 500px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  background: transparent;
}

.row-navy .visual-wrapper {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.visual-wrapper img {
  display: block;
  width: 100%;
  height: auto;
}

/* Stat Cards */
.stat-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  width: 100%;
  max-width: 480px;
}

.stat-card {
  padding: 30px 24px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: transform var(--transition);
}

.stat-card:hover {
  transform: translateY(-4px);
}

.stat-card.gold-bg {
  background: var(--accent-gold);
  color: var(--primary-navy);
}

.stat-card.navy-card {
  background: #142E46;
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--text-white);
}

.stat-card.navy-card h3 {
  color: var(--accent-gold);
}

.stat-card h3 {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 8px;
}

.stat-card p {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
}

/* Bottleneck List styling */
.bottleneck-list {
  padding-left: 20px;
  margin: 24px 0 0;
}

.bottleneck-list li {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.bottleneck-list li strong {
  color: var(--primary-navy);
  font-weight: 700;
}

/* Video & Audio Format Sections */
.format-video-section,
.format-audio-section {
  padding: 80px 40px;
}

@media (min-width: 1024px) {
  .format-video-section,
  .format-audio-section {
    padding: 100px 80px;
  }
}

/* Video Format Section */
.video-description {
  max-width: 600px;
  margin: 16px auto 0;
  font-size: 18px;
  font-weight: 500;
}

.video-player-container {
  max-width: 800px;
  margin: 40px auto 0;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
  background: #000;
  position: relative;
}

.video-placeholder {
  width: 100%;
  height: 100%;
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(15, 36, 56, 0.2), rgba(15, 36, 56, 0.6));
  z-index: 2;
  transition: opacity var(--transition-fast);
}

.video-placeholder:hover .video-overlay {
  background: linear-gradient(180deg, rgba(15, 36, 56, 0.1), rgba(15, 36, 56, 0.5));
}

.video-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.play-button {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--accent-gold);
  color: var(--primary-navy);
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0 0 5px;
  cursor: pointer;
  position: relative;
  z-index: 3;
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.5);
  transition: transform var(--transition-fast), background var(--transition-fast), box-shadow var(--transition-fast);
}

.play-button svg {
  width: 32px;
  height: 32px;
}

.video-placeholder:hover .play-button {
  transform: scale(1.1);
  background: #b89536;
  box-shadow: 0 12px 28px rgba(201, 168, 76, 0.7);
}

.video-duration {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  z-index: 3;
}

.video-player-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
}

.video-meta {
  max-width: 800px;
  margin: 30px auto 0;
  text-align: center;
}

.video-meta p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.video-action-box {
  display: inline-block;
  margin-bottom: 20px;
}

/* Audio Format Section */
.audio-player-card {
  max-width: 700px;
  margin: 40px auto 0;
  background: #142E46;
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.audio-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 24px;
}

.audio-badge {
  color: var(--accent-gold);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.audio-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-white);
}

.custom-audio-controls {
  width: 100%;
  height: 54px;
  outline: none;
  background: transparent;
  border-radius: var(--radius-sm);
}

.transcript-download {
  margin-top: 24px;
  display: flex;
  justify-content: center;
}

.download-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent-gold);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: color var(--transition-fast);
}

.download-link:hover {
  color: #b89536;
  text-decoration: underline;
}

.icon-download {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.audio-cta-box {
  margin-top: 50px;
}

.audio-cta-box p {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--text-white);
}

/* Bottom CTA Section */
.report-final-cta {
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.12), transparent 42%), var(--primary-navy);
  padding: 100px 40px;
}

.cta-lead-text {
  margin-top: 16px !important;
  margin-bottom: 40px !important;
}

.cta-note-text {
  font-size: 13px !important;
  color: rgba(255, 255, 255, 0.6) !important;
  margin-top: 24px !important;
  margin-bottom: 0 !important;
}

/* Sticky Exit Button (Floating Bottom Left) */
.sticky-exit-wrapper {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 1001;
  pointer-events: none;
}

.sticky-exit-btn {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-navy);
  color: var(--text-white);
  border: 1px solid rgba(201, 168, 76, 0.3);
  padding: 12px 20px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  transition: transform var(--transition-fast), background var(--transition-fast), border-color var(--transition-fast);
}

.sticky-exit-btn:hover {
  background: #142E46;
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  transform: translateY(-2px);
}

.exit-arrow {
  font-size: 14px;
}

.report-footer {
  padding: 40px 40px;
}

/* Responsive Overrides for Report */
@media (min-width: 768px) {
  .picker-buttons {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .report-hero h1 {
    font-size: 52px;
  }
  
  .report-hero .subheading {
    font-size: 22px;
  }
  
  .stat-cards-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: none;
  }
}

@media (min-width: 1024px) {
  .row-inner {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 80px;
  }
  
  .text-visual-row {
    padding: 100px 80px;
  }
  
  .row-text h2 {
    font-size: 40px;
  }
  
  .report-header-inner {
    padding: 0 60px;
  }
}

@media (max-width: 480px) {
  .report-hero {
    padding-top: 100px;
  }
  
  .report-hero h1 {
    font-size: 28px;
  }
  
  .report-hero .subheading {
    font-size: 15px;
    margin-bottom: 30px;
  }
  
  .format-picker {
    padding: 20px 15px;
  }
  
  .text-visual-row {
    padding-right: 20px;
    padding-left: 20px;
  }
  
  .row-text h2 {
    font-size: 24px;
  }
  
  .video-player-container {
    aspect-ratio: 4 / 3;
  }
}

/* Visibility toggles for mutually exclusive formats */
.report-section {
  display: none !important;
}
.report-section.is-active {
  display: block !important;
}

.report-final-cta {
  display: none !important;
}
.report-final-cta.is-active {
  display: block !important;
}

.picker-btn.is-active {
  background: var(--accent-gold) !important;
  color: var(--primary-navy) !important;
  box-shadow: 0 8px 20px rgba(201, 168, 76, 0.45) !important;
  transform: translateY(-2px) !important;
}

/* Helper utility for white text on dark backgrounds */
.text-white {
  color: var(--text-white) !important;
}

/* Audit Form Section (Inline Reveal) */
.audit-form-section {
  background: #FEFDFB; /* Cream background as requested */
  color: var(--primary-navy);
  padding: 40px 20px;
  display: none; /* Hidden initially */
  overflow: hidden;
  transition: max-height 0.3s ease-out, opacity 0.3s ease-out, padding 0.3s ease-out;
  max-height: 0;
  opacity: 0;
}

.audit-form-section.is-visible {
  display: block;
  max-height: 2000px;
  opacity: 1;
  padding: 40px 20px;
}

.form-container {
  max-width: 500px;
  margin: 0 auto;
}

.form-container h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary-navy);
  text-align: center;
  margin: 0 0 10px;
}

.form-subtitle {
  font-size: 16px;
  color: rgba(15, 36, 56, 0.8);
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.5;
  font-weight: 500;
}

.form-group {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--primary-navy);
}

.required-star {
  color: #D9534F;
  margin-left: 2px;
}

.optional-tag {
  font-size: 12px;
  color: rgba(15, 36, 56, 0.6);
  font-weight: 400;
  margin-left: 4px;
}

.form-input,
.form-textarea {
  background: #FFFFFF; /* White inputs for contrast against cream */
  color: var(--primary-navy);
  border: 2px solid var(--accent-gold);
  border-radius: 6px;
  padding: 12px;
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 16px;
  outline: none;
  width: 100%;
  box-sizing: border-box;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--primary-navy);
  box-shadow: 0 0 0 4px rgba(15, 36, 56, 0.05);
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

/* Button override for full width in form */
.button-gold.full-width {
  width: 100%;
  padding: 16px;
  font-size: 18px;
  font-weight: 700;
  margin-top: 10px;
}

/* Success/Error Messages */
.form-message {
  padding: 16px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 24px;
  display: none;
}

.success-message {
  background: rgba(40, 167, 69, 0.1);
  border: 1px solid #28a745;
  color: #28a745;
}

.error-message {
  background: rgba(217, 83, 79, 0.1);
  border: 1px solid #D9534F;
  color: #D9534F;
}

.error-msg {
  color: #D9534F;
  font-size: 12px;
  font-weight: 600;
  margin-top: 6px;
  display: none;
}

.form-input.has-error {
  border-color: #D9534F;
}

