/* ==========================================================================
   LIC INSURANCE GUIDE 2026 - SALES LANDING PAGE STYLESHEET
   Design System: Financial Educational Theme
   Colors: Primary Navy #00417C, Dark #082B49, Gold Accent #F4B400, Light BG #F7F9FC
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Outfit:wght@500;600;700;800&display=swap');

:root {
  --primary: #00417C;
  --primary-dark: #082B49;
  --primary-light: #0056A3;
  --accent: #F4B400;
  --accent-hover: #D97706;
  --accent-light: #FFF8E6;
  --bg-main: #F7F9FC;
  --bg-card: #FFFFFF;
  --bg-accent: #EEF4FA;
  --text-main: #17212B;
  --text-muted: #5A6A80;
  --text-light: #8A99AD;
  --border: #E2E8F0;
  --border-focus: #00417C;
  --shadow-sm: 0 2px 8px rgba(8, 43, 73, 0.05);
  --shadow-md: 0 8px 24px rgba(8, 43, 73, 0.08);
  --shadow-lg: 0 16px 36px rgba(8, 43, 73, 0.12);
  --shadow-xl: 0 24px 48px rgba(8, 43, 73, 0.16);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  --container-width: 1200px;
}

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

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

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
  color: var(--primary-dark);
  line-height: 1.25;
  font-weight: 700;
}

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

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

button {
  cursor: pointer;
  border: none;
  font-family: inherit;
  transition: var(--transition);
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Typography Utilities */
.text-center { text-align: center; }
.text-gold { color: var(--accent); }
.text-primary { color: var(--primary); }
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: var(--bg-accent);
  color: var(--primary);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  border: 1px solid rgba(0, 65, 124, 0.12);
}

.section-heading {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

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

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 2rem;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, #E5A000 100%);
  color: var(--primary-dark);
  box-shadow: 0 8px 20px rgba(244, 180, 0, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #FFC107 0%, var(--accent-hover) 100%);
  box-shadow: 0 12px 28px rgba(244, 180, 0, 0.45);
}

.btn-secondary {
  background: var(--bg-card);
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background: var(--primary);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-block {
  width: 100%;
}

/* Header & Navbar */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0.85rem 0;
}

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

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--primary-dark);
}

.brand-logo .logo-icon {
  width: 38px;
  height: 38px;
  background: var(--primary);
  color: var(--accent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-main);
  font-weight: 600;
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-cta {
  padding: 0.6rem 1.25rem;
  font-size: 0.9rem;
}

/* Hero Section */
.hero-section {
  padding: 4rem 0 5rem 0;
  background: linear-gradient(180deg, #FFFFFF 0%, var(--bg-main) 100%);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-content {
  max-width: 580px;
}

.hero-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(0, 65, 124, 0.08);
  color: var(--primary);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(0, 65, 124, 0.15);
}

.hero-title {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--primary-dark);
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 1.25rem;
  line-height: 1.4;
}

.hero-description {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.hero-guarantee-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Ebook 3D Cover Mockup */
.hero-mockup-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mockup-3d-card {
  position: relative;
  width: 340px;
  max-width: 90vw;
  aspect-ratio: 682 / 1024;
  border-radius: var(--radius-md);
  box-shadow: 
    -12px 18px 36px rgba(8, 43, 73, 0.22),
    0 8px 24px rgba(0, 0, 0, 0.12);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  overflow: hidden;
  background: #FFFFFF;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mockup-3d-card:hover {
  transform: translateY(-8px) rotateY(-5deg);
  box-shadow: 
    -18px 26px 48px rgba(8, 43, 73, 0.32),
    0 12px 28px rgba(0, 0, 0, 0.15);
}

.mockup-3d-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Trust Pills Around Mockup */
.trust-pill {
  position: absolute;
  padding: 0.6rem 1.1rem;
  background: var(--bg-card);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-md);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--border);
  white-space: nowrap;
  animation: float 4s ease-in-out infinite alternate;
}

.pill-1 { top: 8%; left: -5%; animation-delay: 0s; }
.pill-2 { top: 38%; right: -8%; animation-delay: 1s; }
.pill-3 { bottom: 18%; left: -8%; animation-delay: 2s; }
.pill-4 { bottom: 5%; right: -2%; animation-delay: 1.5s; }

@keyframes float {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-8px); }
}

/* Section Wrapper Common */
.section-padding {
  padding: 5rem 0;
}

/* Problem Section */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.problem-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(220, 38, 38, 0.3);
}

.problem-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  background: #FEE2E2;
  color: #DC2626;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
}

.problem-text {
  font-weight: 600;
  color: var(--text-main);
  font-size: 0.98rem;
}

.problem-conclusion {
  background: var(--primary-dark);
  color: #ffffff;
  padding: 1.75rem 2.5rem;
  border-radius: var(--radius-md);
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
  box-shadow: var(--shadow-md);
}

/* Solution / Introduction Section */
.solution-section {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.feature-icon-card {
  background: var(--bg-main);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
}

.feature-icon-card:hover {
  background: var(--bg-accent);
  border-color: var(--primary);
  transform: translateX(4px);
}

.feature-icon-card .icon-box {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: var(--primary);
  color: var(--accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
}

/* What You Will Learn Categories */
.learn-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.learn-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.learn-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}

.learn-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--bg-accent);
}

.learn-badge {
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
}

.learn-title {
  font-size: 1.2rem;
  color: var(--primary-dark);
}

.learn-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.learn-list li {
  position: relative;
  padding-left: 1.75rem;
  font-size: 0.95rem;
  color: var(--text-main);
}

.learn-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 800;
}

/* 50 Chapters Accordion Section */
.chapters-section {
  background: linear-gradient(180deg, var(--bg-main) 0%, #EBF2FA 100%);
}

.search-filter-box {
  max-width: 600px;
  margin: 0 auto 2rem auto;
  position: relative;
}

.search-input {
  width: 100%;
  padding: 1rem 1.25rem 1rem 3.25rem;
  border-radius: var(--radius-full);
  border: 2px solid var(--border);
  font-size: 1rem;
  background: var(--bg-card);
  box-shadow: var(--shadow-sm);
  outline: none;
  transition: var(--transition);
}

.search-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(0, 65, 124, 0.15);
}

.search-icon {
  position: absolute;
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 1.2rem;
}

.accordion-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.85rem;
  border-radius: var(--radius-full);
}

.chapters-accordion {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.chapter-group-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.chapter-group-header {
  padding: 1.5rem;
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
  transition: var(--transition);
}

.chapter-group-header:hover {
  background: var(--bg-accent);
}

.chapter-group-title {
  font-size: 1.15rem;
  color: var(--primary-dark);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.chapter-count-badge {
  background: rgba(0, 65, 124, 0.1);
  color: var(--primary);
  font-size: 0.8rem;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  font-weight: 700;
}

.accordion-arrow {
  font-size: 1.2rem;
  color: var(--primary);
  transition: transform 0.3s ease;
}

.chapter-group-card.active .accordion-arrow {
  transform: rotate(180deg);
}

.chapter-group-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
  background: #FAFCFE;
}

.chapter-group-card.active .chapter-group-body {
  max-height: 1000px;
}

.chapter-item-list {
  padding: 1rem 1.5rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border-top: 1px solid var(--border);
}

.chapter-item {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 0.6rem 0.8rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  font-size: 0.95rem;
}

.chapter-item:hover {
  background: var(--bg-card);
}

.chapter-num {
  font-weight: 800;
  color: var(--primary);
  min-width: 80px;
  font-size: 0.85rem;
}

.chapter-name {
  color: var(--text-main);
  font-weight: 600;
}

/* Key Benefits Section */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.benefit-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.benefit-check {
  width: 48px;
  height: 48px;
  background: var(--accent-light);
  color: var(--accent-hover);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
}

.benefit-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.benefit-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Calculations Section */
.calc-section {
  background: var(--primary-dark);
  color: #ffffff;
}

.calc-section h2, .calc-section p {
  color: #ffffff;
}

.calc-section .section-tag {
  background: rgba(244, 180, 0, 0.2);
  color: var(--accent);
  border-color: rgba(244, 180, 0, 0.3);
}

.calc-flow-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 3rem 0;
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.08);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  min-width: 140px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  flex: 1;
}

.flow-step-icon {
  font-size: 1.5rem;
  color: var(--accent);
}

.flow-step-title {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}

.flow-arrow {
  color: var(--accent);
  font-size: 1.5rem;
  font-weight: 800;
}

.calc-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.calc-feature-box {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.calc-feature-box::before {
  content: "✦";
  color: var(--accent);
}

/* Case Studies Section */
.case-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 2rem;
}

.case-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.case-header {
  background: var(--bg-accent);
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.case-header h3 {
  font-size: 1.3rem;
  color: var(--primary-dark);
}

.case-tag {
  background: var(--primary);
  color: #ffffff;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
}

.case-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.case-metric-row {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px dashed var(--border);
  font-size: 0.95rem;
}

.case-metric-row .label { color: var(--text-muted); }
.case-metric-row .value { font-weight: 700; color: var(--primary-dark); }

.case-disclaimer {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

/* Who Is For / Not For */
.audience-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
}

.audience-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.audience-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  list-style: none;
  margin-top: 1.5rem;
}

.audience-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.audience-list li .check-icon {
  color: #059669;
  font-weight: 800;
  font-size: 1.1rem;
}

.not-for-card {
  background: #FFF5F5;
  border: 1px solid #FEB2B2;
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.not-for-card h3 {
  color: #9B2C2C;
  margin-bottom: 1rem;
}

.not-for-card p {
  color: #742A2A;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Ebook Page Preview */
.preview-section {
  background: var(--bg-card);
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.preview-item {
  background: var(--bg-main);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
}

.preview-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.preview-thumb {
  height: 280px;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 0.5rem;
}

.preview-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.preview-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 65, 124, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.9rem;
}

.preview-item:hover .preview-overlay {
  opacity: 1;
}

.preview-caption {
  padding: 1rem;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--primary-dark);
  text-align: center;
}

/* Pricing Card Section */
.pricing-section {
  background: linear-gradient(180deg, var(--bg-main) 0%, #E6F0FA 100%);
}

.pricing-card {
  max-width: 650px;
  margin: 0 auto;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 2px solid var(--primary);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  position: relative;
}

.pricing-badge-top {
  background: var(--accent);
  color: var(--primary-dark);
  text-align: center;
  padding: 0.6rem;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pricing-body {
  padding: 3rem 2.5rem;
  text-align: center;
}

.pricing-title {
  font-size: 2rem;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.pricing-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 2rem;
}

.price-display {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.old-price {
  font-size: 1.5rem;
  color: var(--text-light);
  text-decoration: line-through;
}

.current-price {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary-dark);
  font-family: 'Outfit', sans-serif;
}

.price-savings {
  background: #DEF7EC;
  color: #03543F;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: 0.85rem;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2.5rem;
  text-align: left;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.pricing-features li::before {
  content: "✓";
  color: var(--accent-hover);
  font-weight: 800;
  font-size: 1.1rem;
}

.pricing-guarantee-box {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* Trust Signals Section */
.trust-facts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
}

.trust-fact-card {
  background: var(--bg-card);
  padding: 2rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.trust-fact-num {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--primary);
  font-family: 'Outfit', sans-serif;
  margin-bottom: 0.25rem;
}

.trust-fact-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* FAQ Accordion Section */
.faq-accordion {
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-header {
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--primary-dark);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: #FAFCFE;
}

.faq-card.active .faq-body {
  max-height: 500px;
}

.faq-content {
  padding: 1rem 1.5rem 1.5rem 1.5rem;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Prominent Disclaimer */
.disclaimer-section {
  background: #FFFBEB;
  border-top: 1px solid #FCD34D;
  border-bottom: 1px solid #FCD34D;
  padding: 3rem 0;
}

.disclaimer-box {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 2rem;
  border: 1px solid #FDE68A;
}

.disclaimer-box h3 {
  color: #92400E;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.disclaimer-box p {
  font-size: 0.88rem;
  color: #78350F;
  line-height: 1.7;
  margin-bottom: 0.85rem;
}

.disclaimer-box p:last-child {
  margin-bottom: 0;
}

/* Footer */
.site-footer {
  background: var(--primary-dark);
  color: #ffffff;
  padding: 4rem 0 2rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand h2 {
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.footer-brand p {
  color: var(--text-light);
  font-size: 0.95rem;
}

.footer-links h4 {
  color: var(--accent);
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}

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

.footer-links a {
  color: var(--text-light);
  font-size: 0.9rem;
}

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

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

/* Mobile Floating Sticky CTA */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  padding: 0.85rem 1.25rem;
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 20px rgba(0,0,0,0.1);
  align-items: center;
  justify-content: space-between;
}

.sticky-price {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary-dark);
}

.sticky-price span {
  font-size: 0.85rem;
  color: var(--text-light);
  text-decoration: line-through;
  font-weight: 400;
  margin-left: 0.3rem;
}

/* Modal Popup */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(8, 43, 73, 0.75);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

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

.modal-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  max-width: 550px;
  width: 100%;
  padding: 2.5rem;
  position: relative;
  box-shadow: var(--shadow-xl);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal-card {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-size: 1.5rem;
  background: none;
  border: none;
  color: var(--text-muted);
}

#sample-modal-img {
  max-height: 70vh;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  margin: 0 auto;
  display: block;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
  .hero-content { max-width: 100%; margin: 0 auto; }
  .hero-actions { justify-content: center; }
  .audience-grid { grid-template-columns: 1fr; }
  .case-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hero-title { font-size: 2.25rem; }
  .section-heading { font-size: 1.75rem; }
  .hero-actions { flex-direction: column; width: 100%; }
  .btn { width: 100%; }
  .calc-flow-container { flex-direction: column; }
  .flow-arrow { transform: rotate(90deg); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .mobile-sticky-cta { display: flex; }
  body { padding-bottom: 70px; }
}
