/* 
   Annuities on Autopilot (AOA) - Landing Page Styles
   Visual Adaptation to the Great Barrier Foundations Style Guide
*/

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* --- Design Tokens --- */
:root {
  /* Color Palette (AOA System Brand Colors) */
  --stark-white: #FFFFFF;
  --ultra-light-grey: #F8FAFC;
  --ocean-blue: #081D29; /* Brand Deep Slate Teal background */
  --ocean-blue-light: #112F3D; /* Lighter Brand Slate Teal */
  --safe-green: #EF3E3E; /* Brand Red Accent */
  --safe-green-glow: rgba(239, 62, 62, 0.4);
  --blue-accent: #3B82F6;
  --blue-accent-muted: #60A5FA;
  
  --text-dark: #1E293B;
  --text-muted: #64748B;
  
  --border-color: rgba(0, 0, 0, 0.05);
  
  /* Status Colors */
  --color-success: #10B981;
  --color-success-bg: rgba(16, 185, 129, 0.1);
  --color-warning: #F59E0B; /* Amber 500 */
  --color-warning-bg: rgba(245, 158, 11, 0.1);
  --color-danger: #EF4444; /* Red 500 */
  --color-danger-bg: rgba(239, 68, 68, 0.1);

  /* Fonts */
  --font-family-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  
  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  
  /* Spacing */
  --container-max-width: 1200px;
}

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

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

body {
  font-family: var(--font-family-body);
  color: var(--text-dark);
  background-color: var(--stark-white);
  line-height: 1.5;
  overflow-x: hidden;
  padding-top: 76px; /* Offset for fixed header */
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  color: var(--ocean-blue);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.5px;
}

h1 {
  font-size: 3.5rem;
  letter-spacing: -1px;
}

h2 {
  font-size: 2.5rem;
  letter-spacing: -0.75px;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1.5rem;
  color: var(--text-muted);
}

/* --- Highlights & Badges --- */
.highlight {
  color: var(--safe-green);
}

.badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--safe-green);
  text-transform: uppercase;
  margin-bottom: 1rem;
  padding: 0.4rem 1rem;
  background: rgba(239, 62, 62, 0.1);
  border-radius: 50px;
}

.badge-blue {
  color: var(--blue-accent);
  background: rgba(59, 130, 246, 0.1);
}

/* --- Grid & Container Utilities --- */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin-right: auto;
  margin-left: auto;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}

.section-padding {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

@media (max-width: 768px) {
  .section-padding {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  
  h1 {
    font-size: 2.5rem !important;
  }
  
  h2 {
    font-size: 2rem !important;
  }
}

/* --- Common Components & UI Elements --- */

/* CTA Buttons - Pill Shaped */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--safe-green);
  color: var(--stark-white);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 1.1rem 2.2rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease, background-color 0.3s ease;
  box-shadow: 0 10px 20px rgba(239, 62, 62, 0.25);
  text-align: center;
  white-space: nowrap;
}

.btn-cta:hover {
  transform: translateY(-3px);
  background-color: #D32F2F;
  box-shadow: 0 15px 30px rgba(239, 62, 62, 0.4);
}

.btn-cta-small {
  padding: 0.6rem 1.2rem;
  font-size: 0.9rem;
  box-shadow: none;
}

.btn-cta-small:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(239, 62, 62, 0.15);
}

.btn-cta-secondary {
  background-color: var(--ocean-blue);
  color: var(--stark-white);
  box-shadow: 0 10px 20px rgba(10, 37, 64, 0.1);
}

.btn-cta-secondary:hover {
  background-color: var(--safe-green);
  box-shadow: 0 15px 30px rgba(239, 62, 62, 0.3);
}

/* Clean Cards with Thin Borders */
.card-glass {
  background: var(--stark-white);
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 30px rgba(10, 25, 64, 0.03);
  border-radius: 20px;
  padding: 2.5rem;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.card-glass:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(10, 25, 64, 0.06);
}

/* Section Backgrounds */
.light-grey-section {
  background-color: var(--ultra-light-grey);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.dark-section {
  background: linear-gradient(135deg, var(--ocean-blue) 0%, #0A1B30 100%);
  color: var(--stark-white);
  border: none;
}

.dark-section h2, .dark-section h3, .dark-section h4 {
  color: var(--stark-white);
}

.dark-section p {
  color: rgba(255, 255, 255, 0.7);
}

.dark-section .card-glass {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.dark-section .card-glass:hover {
  border-color: rgba(239, 62, 62, 0.4);
}

/* --- Layout Sections --- */

/* Fixed Navbar Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1rem 0;
  z-index: 100;
  background: rgba(8, 29, 41, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  height: 76px;
  display: flex;
  align-items: center;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo-text img, #aoa-logo {
  height: 2.2rem;
  width: auto;
  display: block;
}

.logo-text {
  text-decoration: none;
  display: flex;
  align-items: center;
}

/* Trust Banner underneath Navigation */
.trust-banner {
  background-color: var(--ultra-light-grey);
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  padding: 1.2rem 5%;
  flex-wrap: wrap;
  width: 100%;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--ocean-blue-light);
  font-size: 0.95rem;
  font-weight: 500;
}

.trust-item svg {
  color: var(--safe-green);
  opacity: 0.9;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .trust-banner {
    display: none !important; /* Hide trust banner on mobile as per Great Barrier design */
  }
}

/* Hero Section */
.hero {
  position: relative;
  min-height: calc(100vh - 130px);
  display: flex;
  align-items: center;
  padding: 5rem 0;
  background: linear-gradient(180deg, var(--ultra-light-grey) 0%, var(--stark-white) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 991px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--safe-green);
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  padding: 0.4rem 1rem;
  background: rgba(239, 62, 62, 0.1);
  border-radius: 50px;
  align-self: flex-start;
}

@media (max-width: 991px) {
  .hero-eyebrow {
    align-self: center;
  }
}

.hero-title {
  font-size: 4rem;
  line-height: 1.1;
  color: var(--ocean-blue);
  margin-bottom: 1.5rem;
  font-weight: 800;
  letter-spacing: -1px;
}

.hero-subtitle {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  line-height: 1.35;
  color: var(--ocean-blue-light);
  margin-bottom: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.hero-subhead {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  font-weight: 400;
  line-height: 1.6;
}

.hero-cta-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 2.2rem;
}

@media (max-width: 991px) {
  .hero-cta-wrapper {
    align-items: center;
  }
}

.hero-microcopy {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: normal;
}

.hero-presenter-badge {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: var(--stark-white);
  border: 1px solid var(--border-color);
  padding: 0.6rem 1.2rem 0.6rem 0.6rem;
  border-radius: 50px;
  align-self: flex-start;
  box-shadow: 0 4px 12px rgba(10, 25, 64, 0.02);
}

@media (max-width: 991px) {
  .hero-presenter-badge {
    align-self: center;
  }
}

.hero-presenter-img {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--safe-green);
}

.hero-presenter-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: left;
  line-height: 1.4;
}

.hero-presenter-name {
  font-weight: 700;
  color: var(--ocean-blue);
}

/* Video Container Layout */
.hero-video-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(10, 37, 64, 0.08);
  background-color: var(--ocean-blue);
}

.hero-video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 20px;
}

.video-placeholder-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.video-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  transition: transform 10s ease;
}

.video-placeholder-wrapper:hover .video-thumbnail {
  transform: scale(1.05);
}

.video-play-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 37, 64, 0.2), rgba(10, 37, 64, 0));
  z-index: 1;
}

.play-btn-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--stark-white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: var(--transition-smooth);
  color: var(--ocean-blue);
}

.play-btn-circle svg {
  width: 1.5rem;
  height: 1.5rem;
  fill: currentColor;
  margin-left: 0.2rem;
}

.video-placeholder-wrapper:hover .play-btn-circle {
  background-color: var(--safe-green);
  color: var(--stark-white);
  transform: translate(-50%, -50%) scale(1.1);
}

.video-title {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  color: var(--stark-white);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1px;
  background: rgba(10, 37, 64, 0.85);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Sticky CTA Banner */
.sticky-cta {
  position: fixed;
  left: 0;
  width: 100%;
  background: rgba(10, 37, 64, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1.5px solid rgba(239, 62, 62, 0.3);
  padding: 0.85rem 0;
  z-index: 1000;
  box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.1);
  transition: transform var(--transition-smooth), opacity var(--transition-smooth);
  display: flex;
  align-items: center;
}

/* Sticky positions dynamically controlled in app.js for desktop and mobile settings */
.sticky-cta.hidden-sticky {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}

/* Desktop: top bar sticky */
@media (min-width: 769px) {
  .sticky-cta {
    top: 0;
    border-top: none;
    border-bottom: 1.5px solid rgba(239, 62, 62, 0.3);
  }
  .sticky-cta.hidden-sticky {
    transform: translateY(-100%);
    opacity: 0;
  }
}

/* Mobile: bottom sheet sticky */
@media (max-width: 768px) {
  .sticky-cta {
    bottom: 0;
  }
  .sticky-cta.hidden-sticky {
    transform: translateY(100%);
    opacity: 0;
  }
}

.sticky-cta-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

@media (max-width: 768px) {
  .sticky-cta-content {
    justify-content: center;
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}

.sticky-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.sticky-avatar {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  border: 1.5px solid var(--safe-green);
}

.sticky-text {
  color: var(--stark-white);
  font-size: 0.9rem;
  font-weight: 500;
}

.sticky-text span {
  color: var(--safe-green);
  font-weight: 700;
}

.sticky-button {
  font-size: 0.9rem;
  padding: 0.6rem 1.4rem;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-subtitle-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--safe-green);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  padding: 0.4rem 1rem;
  background: rgba(239, 62, 62, 0.1);
  border-radius: 50px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--ocean-blue);
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 650px;
  margin: 0 auto;
}

/* Section: The Only Problem */
.problem-section {
  background-color: var(--stark-white);
}

.problem-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: flex-start;
}

@media (max-width: 991px) {
  .problem-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.problem-subtitle {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ocean-blue-light);
  margin-top: -0.25rem;
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
}

.problem-copy p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.problem-copy p strong {
  color: var(--ocean-blue);
}

/* Interactive Assessment Box */
.assessment-box {
  background: var(--stark-white);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 15px 35px rgba(10, 25, 64, 0.03);
}

.assessment-title {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  font-weight: 800;
}

.assessment-sub {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.assessment-slider-wrapper {
  margin-bottom: 2rem;
}

.slider-label-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ocean-blue);
  margin-bottom: 0.75rem;
}

.slider-label-row span {
  color: var(--safe-green);
}

.assessment-slider {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 8px;
  border-radius: 5px;
  background: #E2E8F0;
  outline: none;
  cursor: pointer;
  margin-bottom: 1rem;
}

.assessment-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--safe-green);
  border: none;
  box-shadow: 0 4px 10px rgba(239, 62, 62, 0.4);
  transition: background 0.3s;
}

.assessment-slider::-webkit-slider-thumb:hover {
  background: var(--ocean-blue);
}

.assessment-feedback {
  background: var(--ultra-light-grey);
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.feedback-status {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.feedback-status.red {
  color: var(--color-danger);
}

.feedback-status.yellow {
  color: var(--color-warning);
}

.feedback-status.green {
  color: var(--color-success);
}

.feedback-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 0;
}

/* Section: System Gap */
.system-compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1100px;
  margin: 3rem auto 0 auto;
}

@media (max-width: 768px) {
  .system-compare-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.system-card {
  padding: 3rem 2.5rem;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
}

.system-card.old-system {
  background: var(--ultra-light-grey);
  border: 1px solid var(--border-color);
}

.system-card.new-system {
  background: var(--ocean-blue);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(10, 37, 64, 0.2);
  position: relative;
}

.system-card.new-system::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 21px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.system-card-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.old-system .system-card-eyebrow {
  color: var(--text-muted);
}

.old-system h3 {
  color: var(--ocean-blue);
}

.new-system .system-card-eyebrow {
  color: var(--safe-green);
}

.system-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.system-bullet-list {
  list-style: none;
  margin-top: 0.5rem;
}

.system-bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
}

.old-system .system-bullet-item {
  color: var(--text-dark);
}

.new-system .system-bullet-item {
  color: rgba(255, 255, 255, 0.85);
}

.system-bullet-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.old-system .system-bullet-icon svg {
  color: var(--color-danger);
}

.new-system .system-bullet-icon svg {
  color: var(--safe-green);
}

.system-summary-line {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid;
  font-weight: 700;
  font-size: 1rem;
}

.old-system .system-summary-line {
  border-top-color: rgba(0, 0, 0, 0.08);
  color: var(--ocean-blue);
}

.new-system .system-summary-line {
  border-top-color: rgba(255, 255, 255, 0.1);
  color: var(--stark-white);
}

/* Section: The Leverage */
.leverage-section {
  background-color: var(--stark-white);
}

.leverage-section .section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.leverage-intro-desc {
  max-width: 640px;
  margin: 1.5rem auto 0 auto;
  text-align: center;
}

.leverage-intro-desc p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.leverage-intro-desc p strong {
  color: var(--ocean-blue);
  font-weight: 700;
}

.leverage-intro-desc p:last-child {
  margin-bottom: 0;
}

.leverage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  max-width: 1100px;
  margin: 4rem auto 0 auto;
}

@media (max-width: 768px) {
  .leverage-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.leverage-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.leverage-icon-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(239, 62, 62, 0.1);
  color: var(--safe-green);
  margin-bottom: 1.5rem;
}

.leverage-icon-tile svg {
  width: 24px;
  height: 24px;
}

.leverage-card h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--ocean-blue);
  margin-bottom: 0.75rem;
}

.leverage-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* Callout Banner (5th Point) */
.leverage-callout {
  background: linear-gradient(135deg, var(--ocean-blue) 0%, #0A1B30 100%);
  border-radius: 20px;
  padding: 3rem;
  margin-top: 3rem;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  box-shadow: 0 15px 35px rgba(10, 37, 64, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

@media (max-width: 991px) {
  .leverage-callout {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2.5rem 2rem;
  }
}

.callout-badge {
  background: var(--safe-green);
  color: var(--stark-white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(239, 62, 62, 0.3);
}

.callout-body {
  text-align: left;
}

.callout-body h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--stark-white);
  margin-bottom: 0.75rem;
}

.callout-body p {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0;
}

/* Section: Process (Stepper) */
.process-section {
  background-color: var(--ultra-light-grey);
}

.process-stepper {
  margin-top: 4rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 991px) {
  .process-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.step-card {
  background: var(--stark-white);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  box-shadow: 0 10px 30px rgba(10, 25, 64, 0.02);
  text-align: center;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(10, 25, 64, 0.06);
}

.step-num {
  font-size: 0.9rem;
  background: var(--safe-green);
  color: var(--stark-white);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.step-card h3 {
  color: var(--ocean-blue);
  font-size: 1.35rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.step-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0;
}

.callout-box {
  max-width: 1200px;
  margin: 3.5rem auto 0 auto;
  background: linear-gradient(135deg, var(--ocean-blue) 0%, #0A1B30 100%);
  border-radius: 24px;
  padding: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  box-shadow: 0 20px 40px rgba(10, 37, 64, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.callout-box::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(239, 62, 62, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.callout-content {
  flex: 1;
  text-align: left;
}

.callout-content h3 {
  color: var(--stark-white);
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.callout-content p {
  color: #94A3B8;
  font-size: 1.02rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0;
}

.callout-btn {
  background: var(--safe-green);
  color: var(--stark-white);
  padding: 1.1rem 2.2rem;
  border-radius: 35px;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease, background-color 0.3s ease;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 10px 20px rgba(239, 62, 62, 0.25);
  white-space: nowrap;
}

.callout-btn:hover {
  transform: translateY(-3px);
  background-color: #D32F2F;
  box-shadow: 0 15px 30px rgba(239, 62, 62, 0.45);
}

.callout-btn svg {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.callout-btn:hover svg {
  transform: translate(4px);
}

@media (max-width: 768px) {
  .callout-box {
    flex-direction: column;
    text-align: center;
    padding: 2.5rem 2rem;
    margin-top: 2.5rem;
  }
  .callout-content {
    text-align: center;
  }
  .callout-content h3 {
    font-size: 1.5rem;
  }
  .callout-content p {
    font-size: 0.95rem;
  }
  .callout-btn {
    width: 100%;
    justify-content: center;
  }
}

/* Section: Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

@media (max-width: 991px) {
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

.stat-tile {
  text-align: center;
}

.stat-val {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--safe-green);
  margin-bottom: 0.5rem;
  letter-spacing: -1px;
}

.stat-label {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  line-height: 1.4;
}

.stats-support-line {
  margin-top: 3.5rem;
  max-width: 780px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

/* Section: Testimonials */
.testimonials-section {
  position: relative;
  background-color: var(--stark-white);
  overflow: hidden;
}

/* Background glassmorphic ambient glows */
.testimonials-section::before {
  content: "";
  position: absolute;
  top: -15%;
  left: -15%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(239, 62, 62, 0.08) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.testimonials-section::after {
  content: "";
  position: absolute;
  bottom: -15%;
  right: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.07) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.testimonials-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 991px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  overflow: hidden;
}

/* Glassmorphism styling overrides for card-glass in testimonials */
.testimonial-card.card-glass {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 10px 30px rgba(8, 29, 41, 0.02);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-card.card-glass:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(239, 62, 62, 0.25);
  box-shadow: 0 25px 50px rgba(239, 62, 62, 0.08), 0 10px 25px rgba(8, 29, 41, 0.03);
}

/* Hover Shine Sweep Effect */
.testimonial-card.card-glass::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.25) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  pointer-events: none;
  z-index: 2;
  transition: none;
}

.testimonial-card.card-glass:hover::before {
  left: 125%;
  transition: left 0.85s cubic-bezier(0.25, 1, 0.5, 1);
}

.testimonial-stars {
  color: #fbc02d;
  font-size: 1.4rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.testimonial-quote {
  font-style: italic;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.testimonial-quote strong {
  color: var(--ocean-blue);
  font-style: normal;
}

.testimonial-profile {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  border-top: 1px solid var(--border-color);
  padding-top: 1.2rem;
}

.testimonial-img {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  object-fit: cover;
  background-color: #E2E8F0;
  border: 1px solid var(--border-color);
}

.testimonial-meta {
  line-height: 1.3;
}

.testimonial-name {
  font-weight: 700;
  color: var(--ocean-blue);
  font-size: 0.95rem;
}

.testimonial-title {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Portrait/Short Video Layout */
.testimonial-video-wrapper {
  margin-top: 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.testimonial-video-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--ocean-blue);
  margin-bottom: 2rem;
}

.short-video-container {
  position: relative;
  width: 100%;
  max-width: 320px; /* Perfect portrait video width */
  aspect-ratio: 9 / 16;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(10, 37, 64, 0.08);
  background-color: var(--ocean-blue);
  border: 1px solid var(--border-color);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.short-video-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(10, 37, 64, 0.15);
}

.short-video-container .video-placeholder-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.short-video-container .video-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 10s ease;
}

.short-video-container .video-placeholder-wrapper:hover .video-thumbnail {
  transform: scale(1.05);
}

.short-video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 24px;
}

/* Section: Who It's For/Not For */
.for-not-section {
  background-color: var(--ultra-light-grey);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.for-not-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 1rem;
}

@media (max-width: 991px) {
  .for-not-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.for-not-card {
  padding: 3rem 2.5rem;
  border-radius: 20px;
}

.for-not-card.fit-for {
  background-color: var(--stark-white);
  border: 1px solid rgba(239, 62, 62, 0.2);
  box-shadow: 0 10px 30px rgba(239, 62, 62, 0.02);
}

.for-not-card.fit-not {
  background-color: var(--stark-white);
  border: 1px solid rgba(239, 68, 68, 0.2);
  box-shadow: 0 10px 30px rgba(239, 68, 68, 0.02);
}

.for-not-title {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.fit-for .for-not-title {
  color: var(--safe-green);
}

.fit-not .for-not-title {
  color: var(--color-danger);
}

.for-not-body {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.for-not-body p {
  margin-bottom: 0;
}

.for-not-cta-wrapper {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.for-not-outro {
  font-size: 1.05rem;
  color: var(--text-dark);
  font-weight: 600;
  text-align: center;
  max-width: 650px;
}

/* Section: What the Call Is */
.call-structure-section {
  background: var(--stark-white);
}

.call-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 991px) {
  .call-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.call-description p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.call-list {
  background: var(--ultra-light-grey);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(10, 25, 64, 0.01);
}

.call-list h3 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  font-weight: 800;
}

.call-list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.call-list-item:last-child {
  margin-bottom: 0;
}

.call-list-bullet {
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  background: var(--safe-green);
  color: var(--stark-white);
  font-size: 0.75rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.call-list-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.call-list-text strong {
  color: var(--ocean-blue);
}

/* Section: FAQ Accordion */
.faq-section {
  background-color: var(--stark-white);
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--stark-white);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item:hover {
  border-color: rgba(239, 62, 62, 0.25);
  box-shadow: 0 4px 12px rgba(10,25,64,0.01);
}

.faq-trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 1.3rem 1.6rem;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  outline: none;
}

.faq-question {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ocean-blue);
  padding-right: 1rem;
}

.faq-icon-svg {
  width: 1.2rem;
  height: 1.2rem;
  color: var(--text-muted);
  transition: transform var(--transition-smooth);
  flex-shrink: 0;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1) ;
}

.faq-answer {
  padding: 0 1.6rem 1.3rem 1.6rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  border-top: 1px solid transparent;
}

/* Active FAQ states */
.faq-item.active {
  border-color: var(--safe-green);
  box-shadow: 0 10px 25px rgba(239, 62, 62, 0.05);
}

.faq-item.active .faq-icon-svg {
  transform: rotate(180deg);
  color: var(--safe-green);
}

.faq-item.active .faq-content {
  max-height: 500px;
}

.faq-item.active .faq-answer {
  border-top-color: var(--border-color);
}

/* Section: Booking & Scheduler Embed */
.booking-section {
  padding: 6rem 5%;
  background-color: var(--ultra-light-grey);
}

.booking-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem auto;
}

.booking-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--ocean-blue);
}

.booking-desc {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.booking-trust-block {
  max-width: 650px;
  margin: 0 auto 3rem auto;
  background: var(--stark-white);
  border: 1px solid var(--border-color);
  padding: 1.2rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  box-shadow: 0 4px 12px rgba(10, 25, 64, 0.02);
}

@media (max-width: 580px) {
  .booking-trust-block {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    border-radius: 16px;
  }
}

.trust-badge-icon {
  color: var(--safe-green);
  flex-shrink: 0;
}

.trust-badge-text {
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 600;
}

.trust-badge-text strong {
  color: var(--safe-green);
}

/* GHL/Calendly Embed Styling Container */
.scheduler-container {
  background: var(--stark-white);
  border-radius: 20px;
  border: 1px solid var(--border-color);
  padding: 1rem;
  box-shadow: 0 20px 40px rgba(10, 25, 64, 0.06);
  max-width: 1000px;
  margin: 0 auto;
  min-height: 700px;
  position: relative;
  overflow: hidden;
}

.scheduler-iframe-wrapper {
  width: 100%;
  height: 700px;
  border: none;
}

/* Fallback/Mock Scheduler Interface */
.mock-scheduler {
  display: flex;
  flex-direction: column;
  height: 660px;
  padding: 1rem;
}

.mock-scheduler-header {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mock-scheduler-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--safe-green);
}

.mock-scheduler-intro {
  line-height: 1.3;
}

.mock-scheduler-host {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ocean-blue);
}

.mock-scheduler-duration {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.mock-scheduler-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  flex-grow: 1;
}

@media (max-width: 768px) {
  .mock-scheduler-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    overflow-y: auto;
  }
}

.calendar-picker {
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.25rem;
  background: var(--ultra-light-grey);
}

.calendar-picker-header {
  font-weight: 800;
  text-align: center;
  margin-bottom: 1.25rem;
  font-size: 1rem;
  color: var(--ocean-blue);
}

.calendar-days-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.5rem;
  text-align: center;
  font-size: 0.85rem;
}

.calendar-day-label {
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.2s ease;
  color: var(--text-dark);
}

.calendar-day.available {
  background-color: var(--stark-white);
  border: 1px solid rgba(0, 0, 0, 0.03);
  color: var(--ocean-blue);
  font-weight: 800;
  box-shadow: 0 2px 4px rgba(10, 25, 64, 0.01);
}

.calendar-day.available:hover {
  background-color: var(--safe-green);
  color: var(--stark-white);
}

.calendar-day.selected {
  background-color: var(--ocean-blue);
  color: var(--stark-white);
  font-weight: 800;
}

.time-picker {
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  overflow-y: auto;
  background: var(--stark-white);
}

.time-picker-title {
  font-weight: 800;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  color: var(--ocean-blue);
}

.time-slot-btn {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid var(--ocean-blue);
  color: var(--ocean-blue);
  background: transparent;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-align: center;
  font-size: 0.9rem;
}

.time-slot-btn:hover {
  background-color: var(--safe-green);
  color: var(--stark-white);
  border-color: var(--safe-green);
}

/* Scheduler Qualifying Form Overlay style */
.scheduler-form-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--stark-white);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem;
  z-index: 10;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-smooth);
}

.scheduler-form-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.scheduler-form h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--ocean-blue);
}

.scheduler-form .form-subtitle {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ocean-blue);
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  padding: 0.9rem 1.2rem;
  border: 1px solid #E2E8F0;
  background-color: var(--ultra-light-grey);
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text-dark);
  outline: none;
  transition: var(--transition-smooth);
}

.form-control:focus {
  border-color: var(--safe-green);
  background-color: var(--stark-white);
  box-shadow: 0 0 10px rgba(239, 62, 62, 0.15);
}

.scheduler-form-footer {
  margin-top: 2rem;
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}

/* Booking complete state */
.booking-success-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem;
  height: 100%;
}

.success-icon-circle {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background-color: var(--color-success-bg);
  color: var(--color-success);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  box-shadow: 0 8px 20px rgba(239, 62, 62, 0.15);
}

.success-icon-circle svg {
  width: 2.2rem;
  height: 2.2rem;
}

.booking-success-state h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--ocean-blue);
}

.booking-success-state p {
  color: var(--text-muted);
  max-width: 500px;
  margin-bottom: 2rem;
}

.booking-microcopy {
  margin-top: 2rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
}

/* Footer Section */
footer {
  padding: 5rem 0;
  background-color: var(--ocean-blue);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 580px) {
  .footer-container {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
}

.footer-logo img {
  height: 2rem;
  width: auto;
  opacity: 0.9;
}

.footer-copyright {
  font-size: 0.9rem;
}



.booking-page-body {
  background-color: var(--stark-white);
  padding-top: 76px;
}

.booking-header-minimal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1rem 0;
  z-index: 100;
  background: rgba(8, 29, 41, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  height: 76px;
  display: flex;
  align-items: center;
}

.booking-header-minimal .header-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.container-narrow {
  max-width: 800px;
  margin: 0 auto;
}

.booking-intro {
  margin-top: 2rem;
  margin-bottom: 3rem;
}

.booking-title {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--ocean-blue);
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
  line-height: 1.15;
}

.booking-subhead {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto;
}

.booking-video-section {
  margin-bottom: 4.5rem;
}

.booking-video-section .video-placeholder-wrapper {
  max-width: 680px;
  margin: 0 auto;
}

.booking-video-section .video-caption {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-top: 1rem;
  font-weight: 500;
}

.booking-rules-section {
  margin-bottom: 5rem;
}

.rules-list {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  margin-top: 3rem;
}

.rule-card {
  display: flex;
  gap: 1.75rem;
  padding: 2.25rem;
  align-items: flex-start;
}

@media (max-width: 576px) {
  .rule-card {
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
  }
}

.rule-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(239, 62, 62, 0.1);
  color: var(--safe-green);
  font-weight: 800;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.rule-body {
  text-align: left;
}

.rule-body h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--ocean-blue);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.rule-body p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 0;
}

.booking-fit-section {
  margin-bottom: 5rem;
}

.booking-fit-section .system-compare-grid {
  margin-top: 3rem;
  gap: 2rem;
}

.booking-agenda-section {
  padding: 3rem;
  margin-bottom: 5rem;
  text-align: center;
}

.agenda-lead {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ocean-blue);
  margin-bottom: 1.5rem;
}

.agenda-description {
  max-width: 640px;
  margin: 0 auto;
}

.agenda-description p {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.agenda-description p:last-child {
  margin-bottom: 0;
}

@media (max-width: 576px) {
  .booking-agenda-section {
    padding: 2rem 1.5rem;
  }
}

.booking-embed-container {
  margin-bottom: 4rem;
}

.booking-commitment-box {
  margin-bottom: 2.5rem;
}

.booking-commitment-box h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--ocean-blue);
  margin-bottom: 0.75rem;
}

.booking-commitment-box p {
  font-size: 1.1rem;
  color: var(--text-muted);
}

.booking-calendar-footer-note {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 1.5rem;
}

.booking-footer-minimal {
  padding: 3rem 0;
  border-top: 1px solid var(--border-color);
  background: var(--stark-white);
}

.booking-footer-minimal .footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.booking-footer-minimal .footer-logo img {
  height: 32px;
}

.booking-footer-minimal .footer-copyright {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* Section: Final CTA */
.final-cta-section {
  background-color: var(--stark-white);
  position: relative;
  text-align: center;
}

.final-cta-box {
  background: linear-gradient(135deg, var(--ocean-blue) 0%, #0A1B30 100%);
  border-radius: 24px;
  padding: 4.5rem 3rem;
  max-width: 1000px;
  margin: 0 auto;
  box-shadow: 0 20px 45px rgba(10, 37, 64, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

/* Background ambient glow inside final cta box */
.final-cta-box::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -30%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(239, 62, 62, 0.1) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.final-cta-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.final-cta-box h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--stark-white);
  margin-bottom: 1.25rem;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.final-cta-box p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.5rem;
}

.final-cta-box .btn-cta {
  display: inline-flex;
  padding: 1.1rem 2.2rem;
  font-size: 1.05rem;
}
