/* ==========================================================================
   HEAL WITH SHAGUN - BRAND DESIGN SYSTEM (HIGH CONTRAST & MINIMALIST)
   ========================================================================== */

:root {
  /* Color Palette (WCAG Compliant - High Contrast) */
  --navy: #1a1a40;           /* Primary Navy - Maximum Contrast (Text & Headings) */
  --navy-muted: #1a1a40;     /* Force body text to use primary navy for maximum contrast */
  --blue-gray: #2d2d66;      /* High contrast dark blue-gray for tags/labels */
  --blue-light: #4c4c99;
  
  --rose: #da8395;           /* Accents & Icons */
  --rose-bright: #fe80a7;    
  --rose-medium: #f3a6b6;    
  --rose-light: #fff5f4;     /* Very soft warm rose-beige background fill */
  --rose-pale: #ffe5e4;
  
  --white: #ffffff;
  --bg: #FCFCFB;             /* Safe, Calm Background */
  --border: rgba(26, 26, 64, 0.05); /* Faint clean separator */
  
  /* Strict 8px Spacing System */
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 48px;
  --space-6: 64px;
  --space-7: 96px;
  --space-8: 140px;          /* Expanded Section Padding for Premium Breathability */

  /* Typography */
  --font-headings: 'EB Garamond', Georgia, serif;
  --font-body: 'Poppins', system-ui, -apple-system, sans-serif;
  
  /* Borders and Shadows (Minimalist Softness) */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 4px 20px rgba(26, 26, 64, 0.015);
  --shadow-md: 0 10px 35px rgba(26, 26, 64, 0.025);
  --shadow-lg: 0 20px 60px rgba(26, 26, 64, 0.035);
  
  /* Transitions */
  --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
}

/* ==========================================================================
   Reset & Core Layout
   ========================================================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg);
  background-image: 
    radial-gradient(at 0% 0%, rgba(218, 131, 149, 0.16) 0px, transparent 45%),
    radial-gradient(at 100% 20%, rgba(254, 128, 167, 0.08) 0px, transparent 40%),
    radial-gradient(at 100% 80%, rgba(218, 131, 149, 0.12) 0px, transparent 45%),
    radial-gradient(at 0% 100%, rgba(255, 229, 228, 0.35) 0px, transparent 45%);
  background-attachment: scroll;
  background-repeat: no-repeat;
  color: var(--navy);
  font-family: var(--font-body);
  line-height: 1.8; /* Increased line-height for ultimate readability */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

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

p {
  max-width: 600px; /* Reduced reading line-length for easier tracking */
  margin-bottom: var(--space-3); /* Increased paragraph margin for breathing room */
  color: var(--navy); /* Deepest dark navy color for maximum contrast */
  font-size: 1.05rem; /* Larger, readable text size */
}

/* ==========================================================================
   Structural Elements
   ========================================================================== */

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-3);
}

.text-width-container {
  max-width: 720px;
  margin: 0 auto;
}

.grid {
  display: grid;
  gap: var(--space-6);
}

.grid-2-col {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .grid-2-col {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: var(--space-7);
  }
}

/* Section Header styling */
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--navy);
  background-color: var(--rose-pale);
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: var(--space-2);
}

.section-tag.text-dark {
  background-color: var(--navy);
  color: var(--white);
}

.section-title {
  font-family: var(--font-headings);
  font-size: 3rem; /* Enlarged elegant headers */
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: var(--space-3);
  color: var(--navy);
  letter-spacing: -0.015em;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3.6rem;
  }
}

.section-body {
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: var(--space-3);
}

/* Accent Quote Blocks */
.accent-quote-block {
  border-left: 3px solid var(--rose);
  padding-left: var(--space-3);
  margin: var(--space-4) 0;
  font-family: var(--font-headings);
  font-style: italic;
  font-size: 1.6rem; /* Big readable quotes */
  color: var(--navy);
  line-height: 1.35;
  max-width: 600px;
}

.section-sub-header {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: var(--space-3);
}

/* Centered Header Layouts */
.section-header-center {
  max-width: 720px;
  margin: 0 0 var(--space-5) 0;
  text-align: left;
}

.tag-center {
  margin-left: 0;
  margin-right: auto;
}

.section-headline-center {
  font-family: var(--font-headings);
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: var(--space-2);
  color: var(--navy);
  letter-spacing: -0.015em;
}

@media (min-width: 768px) {
  .section-headline-center {
    font-size: 3.6rem;
  }
}

.section-lead-center {
  font-size: 1.1rem;
  color: var(--navy);
  line-height: 1.7;
}

/* Visual Section Dividers */
.section-divider {
  height: 1px;
  background-color: var(--border);
  width: 100%;
  margin: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-1);
  padding: 14px 28px;
  font-weight: 500;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  transition: var(--transition-smooth);
  border: 1px solid transparent;
}

.btn-primary {
  background-color: var(--navy);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--blue-gray);
  transform: translateY(-1px);
}

.btn-accent {
  background-color: var(--rose);
  color: var(--navy);
  font-weight: 600;
}

.btn-accent:hover {
  background-color: var(--rose-medium);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.btn-secondary {
  background-color: var(--white);
  color: var(--navy);
  border-color: var(--rose-medium);
}

.btn-secondary:hover {
  background-color: var(--rose-light);
  transform: translateY(-1px);
}

.btn-full {
  width: 100%;
}

.btn-large {
  padding: 16px 36px;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
}

.icon-whatsapp {
  width: 18px;
  height: 18px;
}

.icon-arrow {
  transition: var(--transition-fast);
}

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

/* ==========================================================================
   Quick Exit & Header Navigation
   ========================================================================== */

/* Redesigned Quick Exit - Smaller, less contrast, bottom-right position */
.quick-exit-btn {
  position: fixed;
  bottom: var(--space-3);
  left: var(--space-3);
  right: auto;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 6px;
  background-color: var(--white);
  color: var(--blue-gray);
  padding: 8px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 500;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition-smooth);
  opacity: 0.8;
}

.quick-exit-btn:hover {
  background-color: var(--rose-light);
  color: var(--navy);
  opacity: 1;
}

.quick-exit-btn svg {
  width: 12px;
  height: 12px;
}

/* Quick Exit Button layout remains fixed at bottom-left */

/* Sticky Header */
.main-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(252, 252, 251, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(26, 26, 64, 0.03);
  z-index: 900;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-2) var(--space-3);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-headings);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--navy);
}

.logo-accent {
  color: var(--rose);
}

.main-nav ul {
  display: none;
  list-style: none;
  align-items: center;
  gap: var(--space-4);
}

.main-nav a {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--blue-gray);
}

.main-nav a:hover {
  color: var(--rose);
}

.btn-header-whatsapp {
  display: none;
  padding: 8px 16px;
  font-size: 0.8rem;
  border-radius: var(--radius-sm);
}

.mobile-nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 20px;
}

.mobile-nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--navy);
  border-radius: 2px;
  transition: var(--transition-fast);
}

@media (min-width: 992px) {
  .main-nav ul { display: flex; }
  .btn-header-whatsapp { display: inline-flex; }
  .mobile-nav-toggle { display: none; }
}

/* ==========================================================================
   Hero Section & Trust Badges
   ========================================================================== */

.hero-section {
  padding: var(--space-5) 0 var(--space-3) 0;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  gap: var(--space-4);
  grid-template-columns: 1fr;
}

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

.hero-headline {
  font-family: var(--font-headings);
  font-size: 3.2rem; /* Enlarged for bold editorial design */
  line-height: 1.1;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: var(--space-3);
  letter-spacing: -0.015em;
}

.hero-subheadline {
  font-size: 1.1rem;
  color: var(--navy);
  line-height: 1.7;
  margin-bottom: var(--space-4);
}

.hero-cta-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-2);
}

.hero-safety-tip {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--blue-gray);
  margin-top: 4px;
  line-height: 1.4;
  max-width: 500px;
}

.hero-safety-tip strong {
  color: var(--navy);
}

.icon-shield {
  color: var(--rose);
  flex-shrink: 0;
  width: 14px;
  height: 14px;
}

/* Horizontal Trust Badges below hero CTA */
.hero-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-1);
  margin: var(--space-2) 0;
  width: 100%;
}

.trust-badge {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--navy);
  background-color: var(--rose-light);
  padding: 6px 14px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
}

.hero-trust-line {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--blue-gray);
  margin-top: 4px;
}

.hero-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 420px;
  object-fit: cover;
  aspect-ratio: 4/5;
  background-color: var(--rose-light);
}

@media (min-width: 768px) {
  .hero-section {
    padding: var(--space-7) 0 var(--space-4) 0;
  }
  
  .hero-grid {
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--space-6);
    align-items: center;
  }

  .hero-headline {
    font-size: 4.4rem;
  }
}

/* ==========================================================================
   Split Copy/Narrative Sections
   ========================================================================== */

/* Unified Spacing System for Content Sections */
.split-section,
.therapy-fails-section,
.timeline-section,
.founder-section,
.case-studies-section,
.pricing-section,
.objections-section,
.faq-section,
.final-cta-section {
  padding: var(--space-5) 0; /* Tightened on mobile */
}

@media (min-width: 768px) {
  .split-section,
  .therapy-fails-section,
  .timeline-section,
  .founder-section,
  .case-studies-section,
  .pricing-section,
  .objections-section,
  .faq-section,
  .final-cta-section {
    padding: var(--space-7) 0; /* Tightened on desktop */
  }
}

.split-section {
  background-color: transparent;
}

.section-young-professionals {
  /* Removed border for seamless transition */
}

.section-married-women {
  background-color: transparent;
}

.section-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.section-image {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  width: 100%;
  max-width: 460px;
  aspect-ratio: 4/3;
  object-fit: cover;
  background-color: var(--rose-light);
}

@media (min-width: 768px) {

  .alternate-layout .grid-2-col {
    direction: rtl;
  }
  
  .alternate-layout .section-text-content {
    direction: ltr;
    padding-right: var(--space-5);
  }

  .alternate-layout .section-image-wrapper {
    direction: ltr;
  }
}

/* Lightweight CTA block styles (Clean borderless panel) */
.light-cta-block {
  margin: var(--space-5) auto 0 auto;
  padding: var(--space-4);
  background-color: var(--rose-light); /* Calming soft fill instead of borders */
  border-radius: var(--radius-md);
  text-align: center;
  max-width: 680px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
}

.cta-message {
  font-size: 1rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0;
}

/* ==========================================================================
   Why Traditional Therapy Fails Section
   ========================================================================== */

.therapy-fails-section {
  background-color: transparent;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  margin-bottom: var(--space-5);
}

.comparison-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-5); /* Roomy padding */
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  position: relative;
  transition: var(--transition-smooth);
}

.comparison-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.card-fail {
  border-top: 4px solid var(--border);
}

.card-pass {
  border: 2px solid var(--rose);
}

.badge-recommend {
  position: absolute;
  top: -12px;
  right: var(--space-4);
  background-color: var(--rose);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 12px;
  border-radius: 50px;
}

.card-header-icon {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-3);
  padding-bottom: var(--space-2);
  border-bottom: 1px solid var(--border);
}

.card-header-icon h3 {
  font-family: var(--font-headings);
  font-size: 1.4rem;
  font-weight: 500;
}

.icon-md {
  width: 24px;
  height: 24px;
}

.comparison-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.comparison-list li {
  font-size: 0.95rem;
  color: var(--navy); /* Deepest dark navy color for maximum contrast */
  line-height: 1.7;
}

.comparison-list li strong {
  display: block;
  color: var(--navy);
  margin-bottom: 2px;
}

.fails-note {
  text-align: center;
  font-family: var(--font-headings);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--rose);
}

@media (min-width: 768px) {
  .comparison-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ==========================================================================
   What Heal With Shagun Is (Timeline)
   ========================================================================== */

.timeline-section {
  background-color: transparent;
}

/* ==========================================================================
   Dedicated Founder Section (Editorial design)
   ========================================================================== */

.founder-section {
  background-color: transparent;
}

.founder-text-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.credentials-badge {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  margin-top: var(--space-3);
  padding: 10px 16px;
  background-color: var(--rose-light);
  border-radius: var(--radius-sm);
  width: fit-content;
}

.icon-credential {
  color: var(--rose);
}

.credentials-badge span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
}

.founder-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.founder-image {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 400px;
  aspect-ratio: 4/5;
  object-fit: cover;
  background-color: var(--rose-light);
}

/* ==========================================================================
   Case Studies Section (Relocated Earlier)
   ========================================================================== */

.case-studies-section {
  background-color: transparent;
  border-bottom: 1px solid var(--border);
}

.case-studies-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}

/* Minimalist borderless case study card */
.case-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  box-shadow: var(--shadow-sm); /* Faint clean shadow instead of border outline */
  display: flex;
  flex-direction: column;
}

.case-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-1);
  align-items: center;
  margin-bottom: var(--space-2);
}

.case-badge {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background-color: var(--rose-light);
  color: var(--navy);
  padding: 4px 10px;
  border-radius: 50px;
}

.case-demographics {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--blue-gray);
}

.case-title {
  font-family: var(--font-headings);
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: var(--space-2);
  color: var(--navy);
}

.case-body {
  transition: max-height 0.4s ease-out;
  overflow: hidden;
}

.case-body.collapsed {
  max-height: 0;
}

.case-body:not(.collapsed) {
  max-height: 2000px;
  margin-bottom: var(--space-3);
}

.case-point {
  margin-bottom: var(--space-3);
}

.case-point h5 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: var(--space-1);
  display: flex;
  align-items: center;
  gap: 8px;
}

.case-point h5::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: var(--rose);
  border-radius: 50%;
  flex-shrink: 0;
}

.case-point p {
  font-size: 0.95rem;
  color: var(--navy);
  line-height: 1.75;
  margin-bottom: 0;
  padding-left: 14px;
}

.case-quote {
  border-left: 2px solid var(--rose);
  padding-left: var(--space-2);
  margin: var(--space-3) 0 0 0;
}

.case-quote p {
  font-family: var(--font-headings);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--navy);
  line-height: 1.4;
}

.btn-read-case {
  margin-top: auto;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--navy);
  border-bottom: 1px solid var(--rose);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 4px 0;
  transition: var(--transition-fast);
}

.btn-read-case:hover {
  color: var(--rose);
  border-bottom-color: var(--navy);
}

.btn-read-case svg {
  transition: transform var(--transition-fast);
}

.btn-read-case[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

@media (min-width: 768px) {
  .case-studies-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ==========================================================================
   Onboarding Flow Section (Replacing Pricing)
   ========================================================================== */

.onboarding-flow-timeline {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  max-width: 800px;
  margin: 0 auto;
}

/* Onboarding step card (clean borderless beige panels) */
.onboarding-step-card {
  display: flex;
  gap: var(--space-3);
  background-color: var(--rose-light);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  align-items: flex-start;
  transition: var(--transition-smooth);
}

.onboarding-step-card:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}

.step-num {
  background-color: var(--rose);
  color: var(--navy);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1rem;
  flex-shrink: 0;
}

.step-desc h4 {
  font-family: var(--font-headings);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: var(--space-1);
}

.step-desc p {
  font-size: 0.95rem;
  color: var(--navy);
  line-height: 1.6;
  margin-bottom: 0;
}

/* Privacy Guarantee Banner */
.discreet-billing-banner {
  background-color: var(--rose-light);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  align-items: center;
  text-align: center;
  max-width: 800px;
  margin: var(--space-4) auto 0 auto;
  border: 1px dashed var(--rose);
}

.icon-secure {
  color: var(--rose);
  flex-shrink: 0;
}

.discreet-billing-banner p {
  font-size: 0.85rem;
  color: var(--navy);
  line-height: 1.5;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .discreet-billing-banner {
    flex-direction: row;
    text-align: left;
    gap: var(--space-3);
  }
}

/* ==========================================================================
   How It Works Section
   ========================================================================== */

.how-it-works-section {
  padding: var(--space-8) 0;
  background-color: var(--white);
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
}

/* Borderless step cards */
.step-card {
  background-color: var(--bg);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  transition: var(--transition-smooth);
}

.step-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.step-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--rose-light);
  color: var(--rose);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-3);
}

.step-card h3 {
  font-family: var(--font-headings);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: var(--space-2);
}

.step-card p {
  font-size: 0.95rem;
  color: var(--navy);
  line-height: 1.7;
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ==========================================================================
   Objection Handling Section
   ========================================================================== */

.objections-section {
  background-color: transparent;
}

.objections-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
}

/* Borderless objection cards with clean layout */
.objection-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.objection-card:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.objection-card h4 {
  font-family: var(--font-headings);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: var(--space-2);
  border-left: 2px solid var(--rose);
  padding-left: var(--space-2);
}

.objection-card p {
  font-size: 0.95rem;
  color: var(--navy);
  line-height: 1.7;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .objections-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
  }
}

/* ==========================================================================
   FAQ Section Accordion
   ========================================================================== */

.faq-section {
  background-color: transparent;
}

.faq-accordion-container {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

/* Borderless accordion items */
.accordion-item {
  background-color: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-3) var(--space-4);
  text-align: left;
  font-family: var(--font-headings);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--navy);
  transition: var(--transition-fast);
}

.accordion-header:hover {
  background-color: var(--rose-light);
  color: var(--navy);
}

.icon-chevron {
  width: 16px;
  height: 16px;
  color: var(--navy);
  transition: transform var(--transition-smooth);
}

.accordion-header[aria-expanded="true"] .icon-chevron {
  transform: rotate(180deg);
}

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

.accordion-content-inner {
  padding: 0 var(--space-4) var(--space-3) var(--space-4);
  font-size: 0.95rem;
  color: var(--navy);
  line-height: 1.7;
}

/* ==========================================================================
   Final CTA & Footer
   ========================================================================== */

.final-cta-section {
  background-color: transparent;
  text-align: center;
}

.final-cta-container {
  max-width: 720px;
  margin: 0 auto;
}

.cta-headline {
  font-family: var(--font-headings);
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: var(--space-3);
  color: var(--navy);
}

.cta-body {
  font-size: 1.05rem;
  color: var(--navy);
  line-height: 1.7;
  margin-bottom: var(--space-4);
}

.cta-btn-wrap {
  margin-bottom: var(--space-2);
}

.cta-trust-badge {
  font-size: 0.8rem;
  color: var(--navy);
}

/* Mobile Sticky WhatsApp Button */
.mobile-sticky-whatsapp {
  position: fixed;
  bottom: var(--space-3);
  right: var(--space-3);
  background-color: var(--rose);
  color: var(--navy);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  transition: var(--transition-smooth);
}

.mobile-sticky-whatsapp:hover {
  transform: scale(1.05);
  background-color: var(--rose-medium);
  color: var(--navy);
}

.mobile-sticky-whatsapp svg {
  width: 24px;
  height: 24px;
}

@media (min-width: 992px) {
  .mobile-sticky-whatsapp { display: none; }
}

/* Footer Section */
.main-footer {
  background-color: var(--navy);
  color: rgba(255, 255, 255, 0.75);
  padding: var(--space-5) 0 var(--space-4) 0;
  font-size: 0.85rem;
}

/* Specificity fix: override global "p { color: var(--navy) }" rule */
.main-footer p {
  color: rgba(255, 255, 255, 0.75) !important;
  margin-bottom: var(--space-2);
}

.main-footer .footer-subtext {
  color: rgba(255, 255, 255, 0.45) !important;
}

.main-footer a {
  color: rgba(255, 255, 255, 0.75);
}

.main-footer a:hover {
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

.footer-brand .logo {
  color: var(--white);
  margin-bottom: var(--space-2);
  display: block;
}

.footer-desc {
  margin-bottom: var(--space-3);
  line-height: 1.5;
}

.confidentiality-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--rose-pale);
  background-color: rgba(255, 255, 255, 0.08);
  padding: 6px 14px;
  border-radius: 50px;
}

.confidentiality-badge svg {
  width: 12px;
  height: 12px;
}

.footer-links h4,
.footer-safety h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: var(--space-2);
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a:hover {
  color: var(--white);
  text-decoration: underline;
}

.footer-safety p {
  line-height: 1.5;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.footer-bottom p {
  font-size: 0.75rem;
}

.footer-subtext {
  color: rgba(255, 255, 255, 0.35);
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr 1fr;
  }
}

/* ==========================================================================
   Scroll Fade-In Effects (Intersection Observer)
   ========================================================================== */

.fade-in-section {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
  will-change: opacity, transform;
}

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

/* Mobile Menu Slide-down Drawer */
@media (max-width: 991px) {
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--white);
    border-bottom: 1px solid var(--border);
    padding: var(--space-3);
    box-shadow: var(--shadow-md);
    display: none;
    transform: translateY(-10px);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  
  .nav-open .main-nav {
    display: block;
    transform: translateY(0);
    opacity: 1;
  }
  
  .main-nav ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    align-items: center;
    padding: var(--space-2) 0;
  }

  .nav-open .mobile-nav-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  
  .nav-open .mobile-nav-toggle span:nth-child(2) {
    opacity: 0;
  }
  
  .nav-open .mobile-nav-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
}

/* ==========================================================================
   Design Additions: Animations, Editorial Typography & Safety Signals
   ========================================================================== */

/* Staggered entrance animations */
.fade-in-section.is-visible:nth-child(2) { transition-delay: 0.08s; }
.fade-in-section.is-visible:nth-child(3) { transition-delay: 0.16s; }
.fade-in-section.is-visible:nth-child(4) { transition-delay: 0.24s; }
.fade-in-section.is-visible:nth-child(5) { transition-delay: 0.32s; }

/* Editorial Drop-cap styling */
.dropcap-text::first-letter {
  font-family: var(--font-headings);
  font-size: 3.4rem;
  float: left;
  line-height: 0.85;
  margin-right: 10px;
  margin-top: 4px;
  color: var(--rose);
  font-weight: 400;
}

/* Hero Scroll Indicator */
.scroll-indicator-container {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: var(--space-1);
  margin-top: var(--space-5);
  opacity: 0.7;
}

.scroll-text {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: var(--blue-gray);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background-color: rgba(26, 26, 64, 0.15);
  position: relative;
  overflow: hidden;
}

.scroll-dot {
  width: 1px;
  height: 12px;
  background-color: var(--rose);
  position: absolute;
  top: 0;
  left: 0;
  animation: scrollPulse 2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

@keyframes scrollPulse {
  0% { transform: translateY(-100%); }
  50% { transform: translateY(100%); }
  100% { transform: translateY(200%); }
}

@media (min-width: 768px) {
  .scroll-indicator-container {
    display: flex;
    grid-column: span 2;
  }
}

/* Quick Exit Tooltip styling */
.exit-tooltip {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 0;
  background-color: var(--navy);
  color: var(--white);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.65rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-md);
  pointer-events: none;
}

.quick-exit-btn:hover .exit-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Inline lock icon inside primary WhatsApp CTAs */
.icon-lock-inline {
  width: 12px;
  height: 12px;
  margin-left: 6px;
  opacity: 0.85;
}

/* Active FAQ background morphing */
.accordion-item.accordion-active {
  background-color: var(--rose-light) !important;
  box-shadow: var(--shadow-md);
}

/* ==========================================================================
   Design Additions Phase 2: Progress Bar, Filters, Survey & Card Tilts
   ========================================================================== */

/* 1. Reading Progress Bar */
.reading-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background-color: var(--rose);
  width: 0%;
  z-index: 1000;
  transition: width 0.1s ease-out;
}

/* 2. Case Studies Category Filters */
.case-filter-tabs {
  display: flex;
  justify-content: center;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
  flex-wrap: wrap;
  width: 100%;
}

.filter-tab {
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  background-color: var(--white);
  color: var(--navy);
  border: 1px solid var(--border);
  transition: var(--transition-smooth);
}

.filter-tab:hover {
  background-color: var(--rose-light);
  border-color: var(--rose-medium);
}

.filter-tab.active {
  background-color: var(--rose-pale);
  color: var(--navy);
  border-color: var(--rose);
  font-weight: 600;
}

.case-card {
  transition: opacity 0.4s ease, transform 0.4s ease, box-shadow 0.3s ease;
}

.case-card.hidden-filter {
  opacity: 0;
  transform: scale(0.95) translateY(10px);
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  padding: 0;
  margin: 0;
  border: none;
  pointer-events: none;
}

/* 3. Onboarding Intake Survey Card */
.intake-survey-card {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--rose);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  max-width: 680px;
  width: 100%;
  margin: var(--space-4) auto;
  box-shadow: var(--shadow-md);
  text-align: left;
}

.survey-header {
  margin-bottom: var(--space-3);
}

.survey-header h3 {
  font-family: var(--font-headings);
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.3;
}

.survey-header p {
  font-size: 0.9rem;
  color: var(--blue-gray);
  margin-bottom: 0;
}

.survey-steps-progress {
  display: flex;
  gap: var(--space-1);
  margin-bottom: var(--space-3);
  justify-content: center;
}

.survey-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--border);
  transition: var(--transition-fast);
}

.survey-dot.active {
  background-color: var(--rose);
  transform: scale(1.25);
}

.survey-step {
  display: none;
}

.survey-step.active {
  display: block;
  animation: surveyFadeIn 0.4s ease;
}

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

.survey-question {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: var(--space-2);
  color: var(--navy);
}

.survey-options {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-3);
}

.survey-options.grid-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-1);
}

@media (min-width: 576px) {
  .survey-options.grid-options {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2);
  }
}

.survey-opt-btn {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.9rem;
  text-align: left;
  color: var(--navy);
  transition: var(--transition-fast);
  width: 100%;
}

.survey-opt-btn:hover {
  background-color: var(--rose-light);
  border-color: var(--rose-medium);
}

.survey-opt-btn.selected {
  background-color: var(--rose-pale);
  border-color: var(--rose);
  font-weight: 600;
  color: var(--navy);
  box-shadow: inset 0 0 0 1px var(--rose);
}

.survey-footer {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding-top: var(--space-2);
  margin-top: var(--space-3);
}

.survey-footer .btn {
  padding: 8px 20px;
  font-size: 0.85rem;
}

/* Result CTA screen inside survey */
.survey-result-cta {
  text-align: center;
  padding: var(--space-2) 0;
  animation: surveyFadeIn 0.5s ease;
}

.survey-result-cta.hidden {
  display: none;
}

.survey-result-cta h4 {
  font-family: var(--font-headings);
  font-size: 1.35rem;
  color: var(--navy);
  margin-bottom: var(--space-2);
}

.message-preview-box {
  background-color: var(--rose-light);
  border-left: 3px solid var(--rose);
  padding: var(--space-2) var(--space-3);
  margin: 0 auto var(--space-3) auto;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  max-width: 540px;
  text-align: left;
}

.message-preview-box p {
  font-style: italic;
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 0;
  line-height: 1.5;
}

/* 4. Subtle Card Tilt Hover Effects (3D Perspective) */
.case-card, .objection-card, .onboarding-step-card {
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

/* 5. Top Safety Banner Styling */
.safety-banner {
  background-color: var(--rose-pale);
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid rgba(26, 26, 64, 0.08);
  line-height: 1.4;
}

.safety-banner-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
}

.safety-banner-content p {
  margin-bottom: 0;
  max-width: none;
  font-size: 0.8rem;
  color: var(--navy);
  line-height: 1.4;
}

.safety-banner-content svg {
  color: var(--rose);
  flex-shrink: 0;
}
