/* ============================================================================
   BLOGGING CASH WITH KAY - MAIN STYLESHEET
   PART 1: Reset, Variables, Base Styles, Top Bar, Header, Buttons, Hero,
           Trust Strips, Social Proof, How-It-Works, Niches, Benefits, eBook,
           Bonuses, and Value Stack
   ============================================================================ */

/* ============================================================================
   SECTION 1: CSS RESET, VARIABLES, AND BASE STYLES
   ============================================================================ */

:root {
  /* Primary Colors (Royal Blue-Green — trustworthy, professional, converts) */
  --color-primary: #0f766e;
  --color-primary-dark: #0d5f58;
  --color-primary-light: #14b8a6;

  /* Secondary Colors (Gold) */
  --color-secondary: #d4a843;
  --color-secondary-light: #e5b953;

  /* Accent Colors (Blue) */
  --color-accent: #3b82f6;

  /* Status Colors */
  --color-success: #10b981;
  --color-warning: #f59e0b;
  --color-error: #ef4444;

  /* Background Colors */
  --bg-white: #ffffff;
  --bg-off-white: #f8faf9;
  --bg-light: #f1f5f4;
  --bg-dark-footer: #0f2b2a;

  /* Text Colors */
  --text-dark: #1a2332;
  --text-medium: #4a5568;
  --text-light: #718096;
  --text-white: #fff;

  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

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

*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-primary);
  color: var(--text-dark);
  background-color: var(--bg-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-dark);
}

h1 {
  font-size: 47px;
  line-height: 1.15;
  margin-bottom: 20px;
}

h2 {
  font-size: 36px;
  margin-bottom: 16px;
}

h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

h4 {
  font-size: 20px;
  margin-bottom: 10px;
}

h5 {
  font-size: 18px;
  margin-bottom: 8px;
}

h6 {
  font-size: 16px;
  margin-bottom: 8px;
}

/* Paragraphs */
p {
  margin-bottom: 16px;
  line-height: 1.6;
}

/* Links */
a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--color-primary-dark);
}

/* Lists */
ul,
ol {
  margin-bottom: 16px;
  padding-left: 24px;
}

li {
  margin-bottom: 8px;
}

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

/* Forms */
input,
textarea,
select {
  font-family: var(--font-primary);
  font-size: 16px;
}

/* ============================================================================
   SECTION 2: CONTAINER
   ============================================================================ */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================================
   SECTION 3: TOP BAR
   ============================================================================ */

.top-bar {
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  color: var(--text-white);
  padding: 8px 0;
  position: relative;
  z-index: 1000;
  font-size: 14px;
  text-align: center;
  transition: all 0.3s ease;
}

.top-bar__content {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.top-bar__messages {
  flex: 1;
  text-align: center;
}

.top-bar__message {
  display: none;
}

.top-bar__message:first-child {
  display: inline;
}

.top-bar__close {
  background: none;
  border: none;
  color: var(--text-white);
  cursor: pointer;
  padding: 4px;
  margin-left: 16px;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.top-bar__close:hover {
  opacity: 1;
}

.top-bar.hidden {
  display: none;
}

/* ============================================================================
   SECTION 4: HEADER & NAVBAR
   ============================================================================ */

.header {
  background-color: var(--bg-white);
  position: sticky;
  top: 0;
  z-index: 999;
  border-bottom: 1px solid #e5e7eb;
  transition: box-shadow 0.3s ease;
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.navbar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.navbar__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.navbar__logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--text-dark);
  transition: color 0.2s ease;
}

.navbar__logo-text {
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.navbar__logo-text strong {
  color: var(--color-primary);
  font-weight: 700;
}

.navbar__logo-sub {
  font-size: 12px;
  color: var(--text-light);
  margin-top: -3px;
}

.navbar__menu {
  display: flex;
  list-style: none;
  gap: 4px;
  margin: 0;
  padding: 0;
  align-items: center;
}

.navbar__item {
  position: relative;
}

.navbar__link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  color: var(--text-medium);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
  background: none;
  border: none;
  cursor: pointer;
}

.navbar__link:hover {
  color: var(--color-primary);
  background-color: var(--bg-off-white);
}

.navbar__link svg {
  width: 10px;
  transition: transform 0.2s ease;
}

/* Mega Menu */
.navbar__item--mega {
  position: static;
}

.navbar__megamenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: var(--bg-white);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  border-top: 3px solid var(--color-primary);
  z-index: 998;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
}

.navbar__item--mega:hover .navbar__megamenu,
.navbar__megamenu.visible {
  display: block;
}

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

.navbar__megamenu-item {
  display: block;
  padding: 8px 12px;
  color: var(--text-medium);
  text-decoration: none;
  font-size: 14px;
  border-radius: var(--radius-sm);
  transition: all 0.15s ease;
}

.navbar__megamenu-item:hover {
  background-color: var(--bg-light);
  color: var(--color-primary);
}

/* Dropdown Menu */
.navbar__item--dropdown {
  position: relative;
}

.navbar__dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--bg-white);
  min-width: 200px;
  padding: 8px;
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-md);
  list-style: none;
  border-top: 3px solid var(--color-primary);
  z-index: 998;
}

.navbar__item--dropdown:hover .navbar__dropdown,
.navbar__dropdown.visible {
  display: block;
}

.navbar__dropdown li {
  margin: 0;
}

.navbar__dropdown-item {
  display: block;
  padding: 10px 14px;
  color: var(--text-medium);
  text-decoration: none;
  font-size: 14px;
  border-radius: var(--radius-sm);
  transition: all 0.15s ease;
}

.navbar__dropdown-item:hover {
  background-color: var(--bg-light);
  color: var(--color-primary);
}

/* Hamburger Menu */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.navbar__hamburger-line {
  width: 24px;
  height: 2px;
  background-color: var(--text-dark);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.navbar__hamburger.active .navbar__hamburger-line:nth-child(1) {
  transform: rotate(45deg) translateY(7px);
}

.navbar__hamburger.active .navbar__hamburger-line:nth-child(2) {
  opacity: 0;
}

.navbar__hamburger.active .navbar__hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translateY(-7px);
}

.navbar__cta {
  margin-left: 16px;
}

/* ============================================================================
   SECTION 5: BUTTONS
   ============================================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-md);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
  border: 2px solid transparent;
  line-height: 1.4;
}

/* Primary Button */
.btn--primary {
  background-color: var(--color-primary);
  color: var(--text-white);
  border-color: var(--color-primary);
}

.btn--primary:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* Secondary Button */
.btn--secondary {
  background-color: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn--secondary:hover {
  background-color: var(--color-primary);
  color: var(--text-white);
}

/* Large Button */
.btn--large {
  padding: 16px 32px;
  font-size: 17px;
}

/* Block Button */
.btn--block {
  width: 100%;
  justify-content: center;
}

/* Accent Button */
.btn--accent {
  background-color: var(--color-secondary);
  color: var(--text-white);
  border-color: var(--color-secondary);
}

.btn--accent:hover {
  background-color: var(--color-secondary-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* ============================================================================
   SECTION 6: HERO SECTION
   ============================================================================ */

.hero {
  padding: 160px 0 80px;
  background: linear-gradient(135deg, var(--bg-off-white) 0%, #e8f5f3 100%);
  overflow: hidden;
}

.hero__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero__text {
  max-width: 600px;
}

.hero__title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.hero__subtitle {
  font-size: 19px;
  line-height: 1.6;
  color: var(--text-medium);
  margin-bottom: 32px;
}

.hero__cta-group {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.hero__trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--text-medium);
}

.trust-badge svg {
  color: var(--color-primary);
}

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

.hero__image-placeholder {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 4 / 3;
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed #d1d5db;
}

.placeholder-content {
  text-align: center;
  color: var(--text-light);
}

.placeholder-content svg {
  color: var(--color-primary-light);
}

/* ============================================================================
   SECTION 7: TRUST STRIP
   ============================================================================ */

.trust-strip {
  background-color: var(--bg-white);
  padding: 48px 0;
  border-bottom: 1px solid #e5e7eb;
}

.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  text-align: center;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.trust-item svg {
  color: var(--color-primary);
  width: 32px;
  height: 32px;
}

.trust-item h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
}

.trust-item p {
  font-size: 13px;
  color: var(--text-light);
  margin: 0;
  line-height: 1.4;
}

/* ============================================================================
   SECTION 8: SOCIAL PROOF
   ============================================================================ */

.social-proof {
  background-color: var(--color-primary-dark);
  padding: 40px 0;
  color: var(--text-white);
  text-align: center;
}

.social-proof__text {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 24px;
}

.social-proof__stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat__number {
  font-size: 32px;
  font-weight: 800;
}

.stat__label {
  font-size: 14px;
  opacity: 0.8;
}

/* ============================================================================
   SECTION 9: SECTION PADDING & HEADERS
   ============================================================================ */

.section-padded {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.2;
}

.section-header p {
  font-size: 18px;
  color: var(--text-medium);
  line-height: 1.6;
}

/* ============================================================================
   SECTION 10: HOW IT WORKS & STEPS GRID
   ============================================================================ */

.how-it-works {
  background-color: var(--bg-off-white);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.step-card {
  background-color: var(--bg-white);
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  border-top: 3px solid var(--color-primary);
}

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

.step-card__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--color-primary);
  color: var(--text-white);
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 16px;
}

.step-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.step-card__description {
  font-size: 14px;
  color: var(--text-medium);
  line-height: 1.6;
}

/* ============================================================================
   SECTION 11: NICHES CAROUSEL & NICHE CARDS
   ============================================================================ */

.niches-carousel {
  background-color: var(--bg-white);
}

.carousel-wrapper {
  position: relative;
}

.carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 8px 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.carousel::-webkit-scrollbar {
  display: none;
}

.niche-card {
  flex: 0 0 240px;
  scroll-snap-align: start;
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  border: 1px solid #e5e7eb;
}

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

.niche-card__image {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  background-color: var(--bg-light);
}

.niche-card__title {
  font-size: 16px;
  font-weight: 700;
  padding: 12px 16px 4px;
  color: var(--text-dark);
}

.niche-card__description {
  font-size: 13px;
  color: var(--text-medium);
  padding: 0 16px;
  line-height: 1.5;
}

.niche-card__link {
  display: block;
  padding: 12px 16px;
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.niche-card__link:hover {
  color: var(--color-primary-dark);
}

.carousel-scroll-hint {
  text-align: center;
  padding: 16px 0;
  color: var(--text-light);
}

/* ============================================================================
   SECTION 12: WHY BLOGGING & BENEFITS GRID
   ============================================================================ */

.why-blogging {
  background-color: var(--bg-off-white);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.benefit-card {
  background-color: var(--bg-white);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

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

.benefit-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background-color: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--color-primary);
}

.benefit-card__icon svg {
  width: 32px;
  height: 32px;
}

.benefit-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.benefit-card__description {
  font-size: 14px;
  color: var(--text-medium);
  line-height: 1.7;
}

/* ============================================================================
   SECTION 13: EBOOK CONTENTS & MODULE CARDS
   ============================================================================ */

.ebook-contents {
  background-color: var(--bg-white);
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.module-card {
  display: flex;
  gap: 16px;
  padding: 24px;
  background-color: var(--bg-off-white);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  align-items: flex-start;
}

.module-card:hover {
  background-color: var(--bg-light);
  transform: translateX(4px);
}

.module-card__number {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary);
  color: var(--text-white);
  border-radius: var(--radius-sm);
  font-size: 16px;
  font-weight: 800;
}

.module-card__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.module-card__description {
  font-size: 14px;
  color: var(--text-medium);
  line-height: 1.6;
}

/* ============================================================================
   SECTION 14: BONUSES SECTION
   ============================================================================ */

.bonuses-section {
  margin-top: 40px;
  padding: 32px;
  background: linear-gradient(135deg, #fef9ee 0%, #fdf6e3 100%);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-secondary);
}

.bonuses-section__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.bonuses-list {
  list-style: none;
  padding: 0;
}

.bonuses-list li {
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
  font-size: 15px;
  color: var(--text-medium);
}

.bonuses-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-secondary);
  font-weight: 700;
}

/* ============================================================================
   SECTION 15: VALUE STACK
   ============================================================================ */

.value-stack {
  background-color: var(--bg-off-white);
}

.value-stack-visual {
  max-width: 500px;
  margin: 0 auto;
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.value-item {
  display: flex;
  justify-content: space-between;
  padding: 14px 24px;
  border-bottom: 1px solid #f0f0f0;
}

.value-item__label {
  font-size: 16px;
  color: var(--text-dark);
}

.value-item__value {
  font-size: 16px;
  color: var(--text-light);
  text-decoration: line-through;
}

.value-divider {
  height: 2px;
  background-color: var(--color-primary);
}

.value-total {
  display: flex;
  justify-content: space-between;
  padding: 14px 24px;
  background-color: var(--bg-light);
}

.value-total__label {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
}

.value-total__amount {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  text-decoration: line-through;
}

.value-offer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background-color: var(--color-primary);
}

.value-offer__label {
  font-size: 16px;
  color: var(--text-white);
  font-weight: 600;
}

.value-offer__price {
  font-size: 40px;
  font-weight: 800;
  color: var(--text-white);
}

.value-stack__note {
  text-align: center;
  margin-top: 20px;
  color: var(--text-light);
  font-size: 14px;
}

/* ============================================================================
   SECTION 16: COMPARISON TABLE
   ============================================================================ */

.comparison {
  background: white;
}

.comparison-table {
  max-width: 800px;
  margin: 0 auto;
  overflow-x: auto;
}

.comparison-table table {
  width: 100%;
  border-collapse: collapse;
}

.comparison-table th {
  padding: 14px 20px;
  background: var(--color-primary);
  color: white;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
}

.comparison-table th:first-child {
  text-align: left;
  background: var(--color-primary-dark);
}

.comparison-table td {
  padding: 14px 20px;
  border-bottom: 1px solid #f0f0f0;
  font-size: 14px;
  text-align: center;
  color: var(--text-medium);
}

.comparison-table td:first-child {
  text-align: left;
}

.comparison-table td svg {
  color: var(--color-primary);
  width: 20px;
  height: 20px;
}

.comparison-table tr:hover td {
  background: var(--bg-off-white);
}

.text-secondary {
  color: var(--text-light);
}

/* ============================================================================
   SECTION 17: PRICING
   ============================================================================ */

.pricing {
  background: var(--bg-off-white);
}

.pricing-toggle {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 40px;
  background: white;
  border-radius: 50px;
  padding: 4px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: var(--shadow-sm);
}

.toggle-btn {
  flex: 1;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 600;
  border: none;
  background: none;
  cursor: pointer;
  border-radius: 50px;
  transition: all 0.3s;
  color: var(--text-medium);
}

.toggle-btn--active {
  background: var(--color-primary);
  color: white;
  box-shadow: var(--shadow-sm);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-grid.hidden {
  display: none;
}

.pricing-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 2px solid #e5e7eb;
  position: relative;
  transition: all 0.3s;
}

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

.pricing-card--featured {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
  transform: scale(1.03);
}

.pricing-card--featured:hover {
  transform: scale(1.05);
}

.pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-secondary);
  color: white;
  padding: 4px 20px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.pricing-card__header {
  text-align: center;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #f0f0f0;
}

.pricing-card__name {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.pricing-card__price {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.price-amount {
  font-size: 48px;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}

.price-period {
  font-size: 14px;
  color: var(--text-light);
  margin-top: 4px;
}

.pricing-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.pricing-card__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  color: var(--text-medium);
}

.pricing-card__features li svg {
  flex-shrink: 0;
  color: var(--color-primary);
  width: 16px;
  height: 16px;
}

.pricing-card__cta {
  margin-top: auto;
}

.pricing-footer {
  text-align: center;
  margin-top: 32px;
  color: var(--text-medium);
  font-size: 15px;
}

/* ============================================================================
   SECTION 18: TESTIMONIALS
   ============================================================================ */

.testimonials {
  background: white;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--bg-off-white);
  padding: 28px;
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
  transition: 0.3s;
}

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

.testimonial-card__rating {
  margin-bottom: 12px;
}

.star {
  color: var(--color-secondary);
  font-size: 18px;
}

.testimonial-card__quote {
  font-size: 15px;
  color: var(--text-medium);
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}

.testimonial-card__author {
  font-size: 14px;
  color: var(--text-dark);
  line-height: 1.5;
}

/* ============================================================================
   SECTION 19: ABOUT SECTION
   ============================================================================ */

.about-section {
  background: var(--bg-off-white);
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-content h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 24px;
  text-align: center;
}

.about-content p {
  font-size: 16px;
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* ============================================================================
   SECTION 20: OBJECTIONS
   ============================================================================ */

.objections {
  background: white;
}

.objections-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.objection-card {
  padding: 28px;
  background: var(--bg-off-white);
  border-radius: var(--radius-md);
  transition: 0.3s;
}

.objection-card:hover {
  background: var(--bg-light);
}

.objection-card__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.objection-card__text {
  font-size: 14px;
  color: var(--text-medium);
  line-height: 1.7;
}

/* ============================================================================
   SECTION 21: FAQ SECTION & ACCORDION
   ============================================================================ */

.faq-section {
  background: var(--bg-off-white);
}

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

.faq-item {
  background: white;
  border-radius: var(--radius-md);
  margin-bottom: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-item__trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  text-align: left;
  transition: 0.2s;
}

.faq-item__trigger:hover {
  color: var(--color-primary);
}

.faq-item__trigger svg {
  flex-shrink: 0;
  transition: transform 0.3s;
  color: var(--text-light);
}

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

.faq-item__trigger[aria-expanded="true"] {
  color: var(--color-primary);
}

.faq-item__content {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  opacity: 0;
}

.faq-item__content:not([hidden]) {
  padding: 0 24px 18px;
  max-height: 500px;
  opacity: 1;
}

.faq-item__content[hidden] {
  display: block;
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
}

.faq-item__content p {
  font-size: 15px;
  color: var(--text-medium);
  line-height: 1.7;
}

/* ============================================================================
   SECTION 22: FINAL CTA
   ============================================================================ */

.final-cta {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  padding: 80px 0;
  text-align: center;
  color: white;
}

.final-cta__content h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 16px;
  color: white;
}

.final-cta__content p {
  font-size: 17px;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 12px;
  line-height: 1.7;
}

.final-cta__buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.final-cta .btn--primary {
  background: white;
  color: var(--color-primary);
  border-color: white;
}

.final-cta .btn--primary:hover {
  background: var(--bg-off-white);
}

.final-cta .btn--secondary {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.5);
}

.final-cta .btn--secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.final-cta__trust-badges {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.final-cta .trust-badge {
  color: rgba(255, 255, 255, 0.9);
}

.final-cta .trust-badge svg {
  color: white;
}

/* ============================================================================
   SECTION 23: FOOTER
   ============================================================================ */

.footer {
  background: var(--bg-dark-footer);
  color: rgba(255, 255, 255, 0.8);
}

.footer__content {
  padding: 60px 0 40px;
}

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

.footer__column {
  min-width: 0;
}

.footer__logo {
  text-decoration: none;
  color: white;
  display: inline-block;
  margin-bottom: 12px;
}

.footer__logo .navbar__logo-text {
  color: white;
}

.footer__logo .navbar__logo-text strong {
  color: var(--color-primary-light);
}

.footer__tagline {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
}

.footer__description {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

.footer__heading {
  font-size: 15px;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__links li {
  margin-bottom: 8px;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: 0.2s;
}

.footer__links a:hover {
  color: var(--color-primary-light);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
}

.footer__bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__bottom-content p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.footer__bottom-links {
  display: flex;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__bottom-links a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 13px;
  transition: 0.2s;
}

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

.footer__socials {
  display: flex;
  gap: 12px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: 0.2s;
}

.social-icon:hover {
  background: var(--color-primary);
  color: white;
}

/* ============================================================================
   SECTION 24: HIDDEN UTILITY
   ============================================================================ */

.hidden {
  display: none !important;
}

/* ============================================================================
   SECTION 25: ANIMATIONS
   ============================================================================ */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ============================================================================
   SECTION 26: RESPONSIVE - TABLET (1024px AND BELOW)
   ============================================================================ */

@media (max-width: 1024px) {
  .hero__content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__text {
    margin: 0 auto;
  }

  .hero__cta-group {
    justify-content: center;
  }

  .hero__trust-badges {
    justify-content: center;
  }

  .hero__image {
    order: -1;
  }

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

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .modules-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .pricing-card--featured {
    transform: none;
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .objections-grid {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

/* ============================================================================
   SECTION 26: RESPONSIVE - MOBILE (768px AND BELOW)
   ============================================================================ */

@media (max-width: 768px) {
  .navbar__menu {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100vh;
    background: white;
    flex-direction: column;
    padding: 80px 24px 24px;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    overflow-y: auto;
  }

  .navbar__menu.active {
    display: flex;
  }

  .navbar__hamburger {
    display: flex;
  }

  .navbar__cta {
    display: none;
  }

  .navbar__megamenu {
    position: static;
    box-shadow: none;
    padding: 8px 0 8px 16px;
    border-top: none;
    display: none;
  }

  .navbar__item--mega:hover .navbar__megamenu {
    display: none;
  }

  .navbar__megamenu.visible {
    display: block;
  }

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

  .navbar__dropdown {
    position: static;
    box-shadow: none;
    padding: 4px 0 4px 16px;
    border-top: none;
    display: none;
  }

  .navbar__item--dropdown:hover .navbar__dropdown {
    display: none;
  }

  .navbar__dropdown.visible {
    display: block;
  }

  .hero__title {
    font-size: 32px;
  }

  .hero__subtitle {
    font-size: 16px;
  }

  .section-header h2 {
    font-size: 28px;
  }

  .trust-strip__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .social-proof__stats {
    gap: 24px;
  }

  .stat__number {
    font-size: 24px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }

  .footer__bottom-content {
    flex-direction: column;
    text-align: center;
  }
}

/* ============================================================================
   SECTION 26: RESPONSIVE - SMALL MOBILE (480px AND BELOW)
   ============================================================================ */

@media (max-width: 480px) {
  .hero {
    padding: 80px 0 32px;
  }

  .hero__title {
    font-size: 26px;
  }

  .hero__cta-group {
    flex-direction: column;
  }

  .hero__cta-group .btn {
    width: 100%;
  }

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

  .pricing-toggle {
    max-width: 100%;
  }

  .final-cta__buttons {
    flex-direction: column;
    align-items: center;
  }

  .final-cta__trust-badges {
    flex-direction: column;
    align-items: center;
  }
}

/* ============================================================================
   SECTION 27: PRINT STYLES
   ============================================================================ */

@media print {
  /* Hide interactive elements */
  nav,
  .navbar,
  footer,
  .footer,
  .btn,
  .cta,
  .final-cta,
  .hero__cta-group,
  .pricing-toggle,
  .faq-item__trigger {
    display: none;
  }

  /* Optimize page breaks */
  body {
    font-size: 12pt;
    line-height: 1.5;
    color: black;
  }

  /* Optimize links */
  a[href] {
    color: black !important;
    text-decoration: underline !important;
  }

  a[href]::after {
    content: ' (' attr(href) ')';
    font-size: 0.8rem;
  }

  /* Optimize headings */
  h1, h2, h3, h4, h5, h6 {
    page-break-after: avoid;
  }

  /* Optimize images */
  img {
    max-width: 100% !important;
    page-break-inside: avoid;
  }

  /* Optimize content */
  p {
    page-break-inside: avoid;
    orphans: 3;
    widows: 3;
  }

  /* Optimize tables */
  table {
    border-collapse: collapse;
    width: 100%;
  }

  thead {
    display: table-header-group;
  }

  tr {
    page-break-inside: avoid;
  }

  /* Optimize sections */
  section {
    page-break-inside: avoid;
  }
}

/* ============================================================================
   SECTION 28: ACCESSIBILITY
   ============================================================================ */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* ============================================================================
   END OF STYLESHEET - PART 2
   ============================================================================ */

/* ============================================================================
   SECTION 29: BUTTON ALIASES (Non-BEM variants used across pages)
   ============================================================================ */

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

.btn-primary:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-secondary:hover {
  background-color: var(--color-primary);
  color: var(--text-white);
}

.btn-large {
  padding: 16px 32px;
  font-size: 17px;
}

.full-width {
  width: 100%;
}

/* ============================================================================
   SECTION 30: BREADCRUMBS
   ============================================================================ */

.breadcrumb,
.breadcrumbs {
  padding: 12px 24px;
  font-size: 14px;
  color: var(--text-light);
  background: linear-gradient(135deg, var(--bg-off-white) 0%, #e8f5f3 100%);
}

.breadcrumb ol,
.breadcrumbs ol {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
}

.breadcrumb li,
.breadcrumbs li {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  color: var(--text-light);
}

.breadcrumb li:not(:last-child)::after,
.breadcrumbs li:not(:last-child)::after {
  content: "›";
  margin: 0 8px;
  color: var(--text-light);
  font-size: 16px;
}

.breadcrumb li:last-child,
.breadcrumbs li:last-child {
  color: var(--text-medium);
  font-weight: 500;
}

.breadcrumb a,
.breadcrumbs a {
  color: var(--color-primary);
  text-decoration: none;
}

.breadcrumb a:hover,
.breadcrumbs a:hover {
  color: var(--color-primary-dark);
  text-decoration: underline;
}

.breadcrumb span,
.breadcrumbs span {
  margin: 0;
  color: inherit;
}

/* ============================================================================
   SECTION 31: PAGE HERO VARIANTS (non-homepage heroes)
   ============================================================================ */

.hero .container h1 {
  max-width: 800px;
}

.hero-subtitle,
.hero-subheading,
.subheading {
  font-size: 19px;
  color: var(--text-medium);
  line-height: 1.6;
  max-width: 700px;
  margin-bottom: 24px;
  margin-left: auto;
  margin-right: auto;
}

.hero-content {
  max-width: 800px;
  text-align: center;
  margin: 0 auto;
}

.hero-description {
  font-size: 17px;
  color: var(--text-medium);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-price {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 24px;
}

/* ============================================================================
   SECTION 32: GENERIC SECTION STYLING
   ============================================================================ */

.section-intro,
.intro-text {
  font-size: 18px;
  color: var(--text-medium);
  line-height: 1.7;
  max-width: 700px;
  margin-bottom: 32px;
}

section {
  padding: 64px 0;
}

main section:first-child {
  padding-top: 0;
}

.hero + section {
  padding-top: 64px;
}

/* ============================================================================
   SECTION 33: ABOUT PAGE
   ============================================================================ */

.about-kay {
  background-color: var(--bg-off-white);
}

.content-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  align-items: start;
}

.about-text p {
  font-size: 16px;
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-image {
  position: sticky;
  top: 100px;
}

.placeholder-image {
  background-color: var(--bg-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.placeholder-image img {
  width: 100%;
  height: auto;
  display: block;
}

.mission {
  background-color: var(--bg-white);
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.mission-card {
  background-color: var(--bg-off-white);
  padding: 32px;
  border-radius: var(--radius-lg);
  border-top: 3px solid var(--color-primary);
  transition: all 0.3s ease;
}

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

.mission-card h3 {
  color: var(--color-primary);
  margin-bottom: 12px;
}

.why-blog {
  background-color: var(--bg-off-white);
}

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

.reason-card {
  background-color: var(--bg-white);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

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

.reason-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--color-primary);
  color: var(--text-white);
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 16px;
}

.life-changing {
  background-color: var(--bg-white);
}

.impact-content,
.impact-text {
  max-width: 800px;
  margin: 0 auto;
}

.impact-text h3 {
  color: var(--color-primary);
  margin-top: 24px;
  margin-bottom: 8px;
}

.impact-text p {
  font-size: 16px;
  color: var(--text-medium);
  line-height: 1.8;
}

.origin-story {
  background-color: var(--bg-off-white);
}

.story-content {
  max-width: 800px;
  margin: 0 auto;
}

.story-content p {
  font-size: 16px;
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 16px;
}

.encouragement {
  background-color: var(--bg-white);
}

.encouragement-box {
  max-width: 800px;
  margin: 0 auto;
  background: linear-gradient(135deg, #f0fdf9 0%, #ecfdf5 100%);
  border: 2px solid var(--color-primary-light);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.encouragement-box h2 {
  color: var(--color-primary);
}

.encouragement-box p {
  font-size: 16px;
  color: var(--text-medium);
  line-height: 1.8;
}

.no-need-list {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.no-need-list li {
  padding: 8px 0 8px 28px;
  position: relative;
  font-size: 16px;
  color: var(--text-medium);
}

.no-need-list li::before {
  content: "✗";
  position: absolute;
  left: 0;
  color: var(--color-error);
  font-weight: 700;
}

.wealth-building {
  background-color: var(--bg-off-white);
}

.wealth-content {
  max-width: 1000px;
  margin: 0 auto;
}

.wealth-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.wealth-card {
  background-color: var(--bg-white);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

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

.wealth-card h3 {
  color: var(--color-primary);
  margin-bottom: 8px;
}

/* ============================================================================
   SECTION 34: CTA SECTIONS (shared across pages)
   ============================================================================ */

.cta-section {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  padding: 80px 0;
  text-align: center;
  color: var(--text-white);
}

.cta-section h2 {
  color: var(--text-white);
  margin-bottom: 16px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
  max-width: 600px;
  margin: 0 auto 24px;
  line-height: 1.7;
}

.cta-section .btn-primary,
.cta-section .btn {
  background-color: var(--text-white);
  color: var(--color-primary);
  border-color: var(--text-white);
}

.cta-section .btn-primary:hover,
.cta-section .btn:hover {
  background-color: var(--bg-off-white);
  transform: translateY(-2px);
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-subtext {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 16px;
}

/* ============================================================================
   SECTION 35: EBOOK PAGE
   ============================================================================ */

.problem-section {
  background-color: var(--bg-off-white);
}

.problem-content {
  max-width: 800px;
  margin: 0 auto;
}

.problem-content h2 {
  margin-bottom: 16px;
}

.problem-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.problem-list li {
  padding: 10px 0 10px 32px;
  position: relative;
  font-size: 16px;
  color: var(--text-medium);
  line-height: 1.6;
}

.problem-list li::before {
  content: "✗";
  position: absolute;
  left: 0;
  color: var(--color-error);
  font-weight: 700;
  font-size: 18px;
}

.problem-summary {
  margin-top: 24px;
  padding: 20px;
  background-color: var(--bg-white);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-sm);
}

.solution-section {
  background-color: var(--bg-white);
}

.solution-intro {
  font-size: 18px;
  color: var(--text-medium);
  line-height: 1.7;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 24px;
}

.solution-highlight {
  max-width: 800px;
  margin: 0 auto;
  padding: 28px;
  background: linear-gradient(135deg, #f0fdf9 0%, #ecfdf5 100%);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

.solution-highlight p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-dark);
}

.whats-inside {
  background-color: var(--bg-off-white);
}

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

.module {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  background-color: var(--bg-white);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

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

.module-number {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary);
  color: var(--text-white);
  border-radius: var(--radius-sm);
  font-size: 18px;
  font-weight: 800;
}

.bonuses-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.bonus-card {
  background-color: var(--bg-white);
  padding: 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--color-secondary);
  transition: all 0.3s ease;
}

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

.bonus-value {
  color: var(--color-secondary);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 8px;
}

.bonuses-intro {
  font-size: 18px;
  color: var(--text-medium);
  text-align: center;
  margin-bottom: 32px;
}

.bonuses-note {
  text-align: center;
  font-size: 14px;
  color: var(--text-light);
  margin-top: 24px;
}

.value-list {
  max-width: 600px;
  margin: 0 auto;
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.value-item {
  display: flex;
  justify-content: space-between;
  padding: 14px 24px;
  border-bottom: 1px solid #f0f0f0;
}

.value-left {
  font-size: 16px;
  color: var(--text-dark);
}

.value-right {
  font-size: 16px;
  color: var(--text-light);
}

.value-item.total {
  background-color: var(--bg-light);
  border-bottom: 2px solid var(--color-primary);
}

.value-item.total .value-right {
  color: var(--text-dark);
  text-decoration: line-through;
}

.value-item.special {
  background-color: var(--color-primary);
  color: var(--text-white);
}

.value-item.special .value-left,
.value-item.special .value-right {
  color: var(--text-white);
}

.value-item.special .value-right {
  font-size: 24px;
}

.who-section {
  background-color: var(--bg-off-white);
}

.who-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.who-card {
  background-color: var(--bg-white);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.who-card h3 {
  color: var(--color-primary);
  margin-bottom: 16px;
}

.who-card ul {
  list-style: none;
  padding: 0;
}

.who-card ul li {
  padding: 8px 0 8px 28px;
  position: relative;
  font-size: 15px;
  color: var(--text-medium);
}

.who-card:first-child ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-success);
  font-weight: 700;
}

.who-card:last-child ul li::before {
  content: "✗";
  position: absolute;
  left: 0;
  color: var(--color-error);
  font-weight: 700;
}

.testimonials-section {
  background-color: var(--bg-white);
}

.testimonial-stars {
  color: var(--color-secondary);
  font-size: 18px;
  margin-bottom: 12px;
}

.testimonial-text {
  font-size: 15px;
  color: var(--text-medium);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 16px;
}

.testimonial-content {
  font-size: 15px;
  line-height: 1.7;
}

.testimonial-content p {
  font-style: italic;
  color: var(--text-medium);
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 12px;
}

.testimonial-author strong {
  color: var(--text-dark);
  font-size: 15px;
}

.testimonial-author span {
  font-size: 13px;
  color: var(--text-light);
}

.guarantee-section {
  background: linear-gradient(135deg, #f0fdf9 0%, #ecfdf5 100%);
  text-align: center;
}

.guarantee-section h2 {
  color: var(--color-primary);
}

.guarantee-section p {
  max-width: 700px;
  margin: 0 auto 16px;
  font-size: 17px;
  color: var(--text-medium);
  line-height: 1.7;
}

.guarantee-note {
  font-weight: 600;
  color: var(--text-dark);
}

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

.faq-list details.faq-item {
  background-color: var(--bg-white);
  border-radius: var(--radius-md);
  margin-bottom: 8px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-list details.faq-item summary {
  padding: 18px 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  list-style: none;
  transition: color 0.2s ease;
}

.faq-list details.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-list details.faq-item summary::after {
  content: "+";
  float: right;
  font-size: 20px;
  color: var(--text-light);
  transition: transform 0.3s;
}

.faq-list details[open].faq-item summary::after {
  content: "−";
  color: var(--color-primary);
}

.faq-list details.faq-item summary:hover {
  color: var(--color-primary);
}

.faq-list details.faq-item p {
  padding: 0 24px 18px;
  font-size: 15px;
  color: var(--text-medium);
  line-height: 1.7;
}

.ps-section {
  background-color: var(--bg-off-white);
}

.ps-section .container {
  max-width: 800px;
}

.ps-section h3 {
  color: var(--color-primary);
  margin-bottom: 12px;
}

.ps-section p {
  font-size: 16px;
  color: var(--text-medium);
  line-height: 1.8;
}

.buy-section {
  background-color: var(--bg-white);
  padding: 80px 0;
}

.buy-card {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
  background-color: var(--bg-white);
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.buy-price {
  font-size: 56px;
  font-weight: 800;
  color: var(--color-primary);
  margin: 16px 0 24px;
}

.buy-features {
  list-style: none;
  padding: 0;
  text-align: left;
  margin-bottom: 32px;
}

.buy-features li {
  padding: 8px 0;
  font-size: 16px;
  color: var(--text-medium);
  border-bottom: 1px solid #f0f0f0;
}

.buy-note {
  font-size: 13px;
  color: var(--text-light);
  margin-top: 16px;
}

/* ============================================================================
   SECTION 36: BLOG PAGE
   ============================================================================ */

.featured-post {
  background-color: var(--bg-white);
}

.featured-card {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 32px;
  background-color: var(--bg-off-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-content {
  padding: 32px 32px 32px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-content h2 {
  margin-bottom: 12px;
}

.featured-content p {
  font-size: 15px;
  color: var(--text-medium);
  line-height: 1.7;
}

.category-badge {
  display: inline-block;
  padding: 4px 14px;
  background-color: var(--color-primary);
  color: var(--text-white);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.featured-meta {
  display: flex;
  gap: 16px;
  font-size: 13px;
  color: var(--text-light);
  margin: 12px 0 16px;
}

.date,
.reading-time {
  font-size: 13px;
  color: var(--text-light);
}

.blog-filters {
  background-color: var(--bg-off-white);
  padding: 32px 0;
}

.category-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.filter-btn {
  padding: 8px 16px;
  background-color: var(--bg-white);
  border: 1px solid #e5e7eb;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-medium);
  cursor: pointer;
  transition: all 0.2s;
}

.filter-btn:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.filter-btn.active {
  background-color: var(--color-primary);
  color: var(--text-white);
  border-color: var(--color-primary);
}

.blog-grid {
  background-color: var(--bg-white);
}

.posts-sidebar-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.blog-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

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

.post-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.post-content {
  padding: 20px;
}

.post-category {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.post-content h3 {
  font-size: 17px;
  margin-bottom: 8px;
}

.post-content h3 a {
  color: var(--text-dark);
  text-decoration: none;
}

.post-content h3 a:hover {
  color: var(--color-primary);
}

.post-content p {
  font-size: 14px;
  color: var(--text-medium);
  line-height: 1.6;
  margin-bottom: 12px;
}

.post-meta {
  display: flex;
  gap: 12px;
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 12px;
}

.post-date,
.post-reading {
  font-size: 12px;
}

.read-more {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
}

.read-more:hover {
  text-decoration: underline;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
  padding: 16px 0;
}

.page-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-medium);
  text-decoration: none;
  transition: 0.2s;
}

.page-number:hover {
  background-color: var(--bg-light);
  color: var(--color-primary);
}

.page-number.active {
  background-color: var(--color-primary);
  color: var(--text-white);
}

.prev, .next {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  padding: 8px 16px;
}

.prev.disabled, .next.disabled {
  color: var(--text-light);
  pointer-events: none;
}

/* Blog Sidebar */
.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sidebar-box {
  background-color: var(--bg-off-white);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.sidebar-box h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.sidebar-box p {
  font-size: 14px;
  color: var(--text-medium);
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}

.newsletter-form input {
  padding: 10px 14px;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-sm);
  font-size: 14px;
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.1);
}

.popular-list {
  list-style: none;
  padding: 0;
}

.popular-list li {
  padding: 8px 0;
  border-bottom: 1px solid #e5e7eb;
}

.popular-list li:last-child {
  border-bottom: none;
}

.popular-list a {
  font-size: 14px;
  color: var(--text-dark);
  text-decoration: none;
}

.popular-list a:hover {
  color: var(--color-primary);
}

.category-list {
  list-style: none;
  padding: 0;
}

.category-list li {
  padding: 6px 0;
  font-size: 14px;
  color: var(--text-light);
}

.category-list a {
  color: var(--text-dark);
  text-decoration: none;
}

.category-list a:hover {
  color: var(--color-primary);
}

.cta-banner {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: var(--text-white);
}

.cta-banner h4 {
  color: var(--text-white);
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.9);
}

.blog-cta {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  text-align: center;
  color: var(--text-white);
}

.blog-cta h2 {
  color: var(--text-white);
  margin-bottom: 16px;
}

.blog-cta p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto 24px;
}

.blog-cta .btn {
  background-color: var(--text-white);
  color: var(--color-primary);
  border-color: var(--text-white);
}

.blog-cta .btn:hover {
  background-color: var(--bg-off-white);
}

/* ============================================================================
   SECTION 37: LEGAL PAGES
   ============================================================================ */

.content-wrapper {
  padding: 48px 0 80px;
}

.legal-page {
  max-width: 800px;
  margin: 0 auto;
}

.legal-page h1 {
  font-size: 36px;
  margin-bottom: 8px;
}

.last-updated {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 32px;
}

.toc {
  background-color: var(--bg-off-white);
  padding: 24px 32px;
  border-radius: var(--radius-md);
  margin-bottom: 40px;
}

.toc h2 {
  font-size: 18px;
  margin-bottom: 12px;
}

.toc ul {
  list-style: none;
  padding: 0;
  columns: 2;
  column-gap: 24px;
}

.toc ul li {
  padding: 4px 0;
}

.toc ul li a {
  font-size: 14px;
  color: var(--color-primary);
  text-decoration: none;
}

.toc ul li a:hover {
  text-decoration: underline;
}

.legal-page section {
  padding: 24px 0;
  border-bottom: 1px solid #f0f0f0;
}

.legal-page section:last-child {
  border-bottom: none;
}

.legal-page section h2 {
  font-size: 22px;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.legal-page section p {
  font-size: 16px;
  color: var(--text-medium);
  line-height: 1.8;
}

.legal-page section ul {
  margin: 16px 0;
  padding-left: 24px;
}

.legal-page section ul li {
  font-size: 16px;
  color: var(--text-medium);
  line-height: 1.7;
  margin-bottom: 8px;
}

.legal-page address {
  font-style: normal;
  padding: 20px;
  background-color: var(--bg-off-white);
  border-radius: var(--radius-md);
  line-height: 1.8;
}

/* ============================================================================
   SECTION 38: CHECKOUT PAGE
   ============================================================================ */

.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 24px;
}

.order-summary {
  background-color: var(--bg-off-white);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.order-summary h2 {
  font-size: 22px;
  margin-bottom: 24px;
}

.order-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #e5e7eb;
}

.item-details {
  flex: 1;
}

.item-name {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 16px;
}

.item-price {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-primary);
}

.item-description {
  font-size: 14px;
  color: var(--text-light);
  margin-top: 4px;
}

.order-breakdown {
  margin-top: 24px;
}

.order-breakdown h4 {
  margin-bottom: 12px;
}

.benefit-list {
  list-style: none;
  padding: 0;
}

.benefit-list li {
  padding: 6px 0;
  font-size: 14px;
  color: var(--text-medium);
  display: flex;
  gap: 8px;
}

.checkmark {
  color: var(--color-success);
  font-weight: 700;
}

.order-total {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 2px solid #e5e7eb;
}

.total-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 15px;
  color: var(--text-medium);
}

.total-row.grand-total {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  border-top: 2px solid var(--color-primary);
  padding-top: 12px;
  margin-top: 8px;
}

.order-bump {
  margin-top: 24px;
  padding: 20px;
  background: linear-gradient(135deg, #fef9ee 0%, #fdf6e3 100%);
  border: 2px dashed var(--color-secondary);
  border-radius: var(--radius-md);
}

.order-bump h4 {
  color: var(--color-secondary);
}

.bump-description {
  font-size: 14px;
  color: var(--text-medium);
}

.bump-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
}

.bump-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--color-primary);
}

.bump-note {
  font-size: 12px;
  color: var(--text-light);
}

.payment-section {
  padding: 32px;
}

.payment-section h2 {
  font-size: 22px;
  margin-bottom: 20px;
}

.payment-info-box {
  padding: 16px;
  background-color: var(--bg-light);
  border-radius: var(--radius-md);
  margin-bottom: 24px;
}

.payment-message {
  font-size: 14px;
  color: var(--text-medium);
  margin: 0;
}

.payment-processors h4 {
  margin-bottom: 16px;
}

.processor-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.processor-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 20px 16px;
  background-color: var(--bg-white);
  border: 2px solid #e5e7eb;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.2s ease;
}

.processor-btn:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-sm);
}

.processor-logo {
  font-size: 20px;
  font-weight: 800;
  color: var(--color-primary);
  background-color: var(--bg-light);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
}

.processor-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
}

.processor-desc {
  font-size: 12px;
  color: var(--text-light);
}

.processor-embed {
  padding: 24px;
  background-color: var(--bg-off-white);
  border-radius: var(--radius-md);
  text-align: center;
}

.placeholder-text {
  color: var(--text-light);
  font-size: 14px;
}

.trust-section {
  margin-top: 28px;
}

.trust-section h4 {
  margin-bottom: 16px;
}

.security-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.security-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.security-icon {
  font-size: 20px;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-light);
  border-radius: var(--radius-sm);
}

.security-text strong {
  display: block;
  font-size: 14px;
  color: var(--text-dark);
}

.security-text p {
  font-size: 13px;
  color: var(--text-light);
  margin: 2px 0 0;
}

.payment-badges {
  display: flex;
  gap: 8px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.badge {
  padding: 6px 14px;
  background-color: var(--bg-light);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-medium);
}

/* ============================================================================
   SECTION 39: NICHE PAGES
   ============================================================================ */

.why-niche {
  background-color: var(--bg-off-white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background-color: var(--bg-white);
  padding: 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  border-top: 3px solid var(--color-primary);
}

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

.feature-card h3 {
  font-size: 18px;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 14px;
  color: var(--text-medium);
  line-height: 1.7;
}

.monetisation {
  background-color: var(--bg-white);
}

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

.monetisation-card {
  padding: 28px;
  background-color: var(--bg-off-white);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-secondary);
  transition: all 0.3s ease;
}

.monetisation-card:hover {
  box-shadow: var(--shadow-sm);
}

.monetisation-card h3 {
  font-size: 17px;
  margin-bottom: 8px;
}

.monetisation-card p {
  font-size: 14px;
  color: var(--text-medium);
  line-height: 1.7;
}

.content-ideas {
  background-color: var(--bg-off-white);
}

.content-list {
  max-width: 800px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}

.content-list li {
  padding: 12px 16px 12px 32px;
  position: relative;
  background-color: var(--bg-white);
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
  font-size: 15px;
  color: var(--text-medium);
  line-height: 1.6;
}

.content-list li::before {
  content: "→";
  position: absolute;
  left: 12px;
  color: var(--color-primary);
  font-weight: 700;
}

.getting-started {
  background-color: var(--bg-white);
}

.tools-resources {
  background-color: var(--bg-off-white);
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.tool-item {
  background-color: var(--bg-white);
  padding: 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.tool-item h4 {
  color: var(--color-primary);
  margin-bottom: 8px;
}

.tool-item p {
  font-size: 14px;
  color: var(--text-medium);
  line-height: 1.6;
}

/* Niche pricing card (non-BEM variant) */
.pricing-card .price {
  font-size: 40px;
  font-weight: 800;
  color: var(--color-primary);
  margin: 8px 0 20px;
}

.pricing-card .price span {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-light);
}

.pricing-card.featured {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
  transform: scale(1.03);
}

.pricing-card.featured:hover {
  transform: scale(1.05);
}

/* Niche Testimonial */
.testimonial {
  background-color: var(--bg-off-white);
}

.testimonial-quote {
  font-size: 18px;
  font-style: italic;
  color: var(--text-medium);
  line-height: 1.7;
  margin-bottom: 16px;
}

p.testimonial-author {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
}

/* Related Niches */
.related-niches {
  background-color: var(--bg-white);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.related-card {
  display: block;
  padding: 24px;
  background-color: var(--bg-off-white);
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid #e5e7eb;
}

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

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

.related-card p {
  font-size: 13px;
  color: var(--text-light);
}

/* Niche FAQ grid */
.faq {
  background-color: var(--bg-off-white);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
}

.faq-grid .faq-item {
  padding: 24px;
}

.faq-grid .faq-item h4 {
  color: var(--color-primary);
  margin-bottom: 8px;
}

.faq-grid .faq-item p {
  font-size: 14px;
  color: var(--text-medium);
  line-height: 1.7;
}

/* ============================================================================
   SECTION 40: ADDITIONAL RESPONSIVE OVERRIDES
   ============================================================================ */

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

  .about-image {
    position: static;
  }

  .wealth-grid {
    grid-template-columns: 1fr;
  }

  .who-grid {
    grid-template-columns: 1fr;
  }

  .bonuses-grid {
    grid-template-columns: 1fr;
  }

  .featured-card {
    grid-template-columns: 1fr;
  }

  .featured-content {
    padding: 24px;
  }

  .posts-sidebar-layout {
    grid-template-columns: 1fr;
  }

  .checkout-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tools-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .toc ul {
    columns: 1;
  }
}

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

  .features-grid {
    grid-template-columns: 1fr;
  }

  .tools-grid {
    grid-template-columns: 1fr;
  }

  .related-grid {
    grid-template-columns: 1fr;
  }

  .posts-grid {
    grid-template-columns: 1fr;
  }

  .processor-grid {
    grid-template-columns: 1fr;
  }

  .hero-subtitle,
  .hero-subheading,
  .subheading {
    font-size: 16px;
  }

  .buy-price {
    font-size: 40px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 26px;
  }

  section {
    padding: 48px 0;
  }
}

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

  .featured-meta {
    flex-direction: column;
    gap: 4px;
  }

  .encouragement-box {
    padding: 24px;
  }

  .buy-card {
    padding: 24px;
  }
}

/* ============================================================================
   SECTION 41: ADDITIONAL PAGE COMPONENTS
   ============================================================================ */

/* Contact / Support forms */
.contact-form,
.support-form {
  max-width: 700px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-sm);
  font-size: 15px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.1);
}

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

/* Knowledgebase */
.kb-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.kb-card {
  background-color: var(--bg-off-white);
  padding: 28px;
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

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

.kb-card h3 {
  color: var(--color-primary);
  margin-bottom: 8px;
}

.kb-card a {
  display: block;
  padding: 4px 0;
  font-size: 14px;
}

/* Thank You / Upsell pages */
.thank-you-section {
  text-align: center;
  padding: 80px 0;
}

.thank-you-section h1 {
  color: var(--color-primary);
}

.success-icon {
  font-size: 64px;
  margin-bottom: 16px;
}

.next-steps {
  max-width: 600px;
  margin: 32px auto 0;
  text-align: left;
}

.next-steps li {
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 16px;
  color: var(--text-medium);
}

.upsell-hero {
  background: linear-gradient(135deg, #fef9ee 0%, #fdf6e3 100%);
  text-align: center;
}

.upsell-hero h1 {
  color: var(--text-dark);
}

.urgency-bar {
  background-color: var(--color-error);
  color: var(--text-white);
  text-align: center;
  padding: 12px;
  font-weight: 600;
  font-size: 15px;
}

.countdown {
  font-size: 28px;
  font-weight: 800;
}

/* Sitemap page */
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.sitemap-grid h3 {
  color: var(--color-primary);
  margin-bottom: 12px;
  font-size: 18px;
}

.sitemap-grid ul {
  list-style: none;
  padding: 0;
}

.sitemap-grid ul li {
  padding: 4px 0;
}

.sitemap-grid ul li a {
  font-size: 14px;
}

/* Community page */
.community-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.community-card {
  background-color: var(--bg-off-white);
  padding: 28px;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all 0.3s ease;
}

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

/* Case studies */
.case-study-card {
  background-color: var(--bg-off-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 32px;
  box-shadow: var(--shadow-sm);
}

.case-study-card .content {
  padding: 32px;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.result-item {
  text-align: center;
  padding: 16px;
  background-color: var(--bg-white);
  border-radius: var(--radius-md);
}

.result-item .number {
  font-size: 28px;
  font-weight: 800;
  color: var(--color-primary);
}

.result-item .label {
  font-size: 13px;
  color: var(--text-light);
}

/* Free resources page */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.resource-card {
  background-color: var(--bg-off-white);
  padding: 28px;
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
  border: 1px solid #e5e7eb;
}

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

.resource-card h3 {
  margin-bottom: 8px;
}

.resource-card .resource-type {
  display: inline-block;
  padding: 2px 10px;
  background-color: var(--color-primary);
  color: var(--text-white);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* Done for you page */
.service-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 2px solid #e5e7eb;
  text-align: center;
  transition: all 0.3s ease;
}

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

.service-card.featured {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

.service-price {
  font-size: 40px;
  font-weight: 800;
  color: var(--color-primary);
  margin: 12px 0;
}

/* How it Works page */
.process-section {
  background-color: var(--bg-off-white);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.process-step {
  background-color: var(--bg-white);
  padding: 32px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--color-primary);
}

.process-step .step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--color-primary);
  color: var(--text-white);
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 16px;
}

/* Testimonials page */
.testimonials-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* Start a Blog page */
.niche-overview {
  background-color: var(--bg-off-white);
}

.niche-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

.niche-item {
  display: block;
  padding: 20px;
  background-color: var(--bg-white);
  border-radius: var(--radius-md);
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid #e5e7eb;
}

.niche-item:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .kb-grid,
  .community-features,
  .resources-grid,
  .service-tiers,
  .sitemap-grid,
  .results-grid,
  .testimonials-page-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================================
   END OF EXTENDED STYLESHEET
   ============================================================================ */

/* ============================================================================
   SECTION 42: REMAINING PAGE COMPONENTS - BATCH 2
   ============================================================================ */

/* --- Back to Top --- */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background-color: var(--color-primary);
  color: var(--text-white);
  border: none;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-2px);
}

/* --- Cookie Banner --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--bg-dark-footer);
  color: var(--text-white);
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  z-index: 1100;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
}

.cookie-banner p {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  margin: 0;
}

.btn-decline {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 13px;
}

.btn-decline:hover {
  color: var(--text-white);
  border-color: var(--text-white);
}

.btn--sm {
  padding: 8px 16px;
  font-size: 13px;
}

/* ============================================================================
   SECTION 43: HOW IT WORKS PAGE
   ============================================================================ */

.steps-section,
.steps-container {
  background-color: var(--bg-off-white);
}

.step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 28px;
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

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

.step-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
}

.step-number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary);
  color: var(--text-white);
  border-radius: 50%;
  font-size: 20px;
  font-weight: 800;
}

.step-content {
  flex: 1;
}

.step-content h3 {
  margin-bottom: 8px;
}

.step-content p {
  font-size: 15px;
  color: var(--text-medium);
  line-height: 1.7;
}

.step-subtitle {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 8px;
}

.step-benefits {
  list-style: none;
  padding: 0;
  margin-top: 12px;
}

.step-benefits li {
  padding: 4px 0 4px 20px;
  position: relative;
  font-size: 14px;
  color: var(--text-medium);
}

.step-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-success);
  font-weight: 700;
}

/* What to Expect */
.what-to-expect,
.response-expectations {
  background-color: var(--bg-off-white);
}

.expect-grid,
.expectations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.expect-step {
  text-align: center;
  padding: 28px;
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.expectation-item {
  padding: 24px;
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.expectation-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--color-primary);
  color: var(--text-white);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
}

/* ============================================================================
   SECTION 44: DONE-FOR-YOU PAGE
   ============================================================================ */

.services-section {
  background-color: var(--bg-off-white);
}

.services-list {
  max-width: 800px;
  margin: 0 auto;
}

.service-item {
  display: flex;
  gap: 20px;
  padding: 20px;
  background-color: var(--bg-white);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
}

.complete-system-cta {
  text-align: center;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: var(--text-white);
}

.complete-system-cta h2 {
  color: var(--text-white);
}

/* Plan Details */
.plan-display {
  max-width: 900px;
  margin: 0 auto;
}

.plan-header {
  text-align: center;
  margin-bottom: 24px;
}

.plan-price {
  font-size: 48px;
  font-weight: 800;
  color: var(--color-primary);
}

.plan-description {
  font-size: 16px;
  color: var(--text-medium);
}

.plan-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.price-label {
  font-size: 14px;
  color: var(--text-light);
}

.price-desc {
  font-size: 14px;
  color: var(--text-medium);
}

.pricing-note {
  text-align: center;
  font-size: 14px;
  color: var(--text-light);
  margin-top: 16px;
}

/* Comparison Section */
.comparison-section {
  background-color: var(--bg-white);
}

.comparison-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  border-bottom: 1px solid #f0f0f0;
}

.comparison-col {
  padding: 14px 20px;
  font-size: 14px;
  color: var(--text-medium);
}

.comparison-col:first-child {
  font-weight: 600;
  color: var(--text-dark);
}

.authority-col {
  padding: 14px 20px;
  font-size: 14px;
}

/* Difference Section */
.difference-section {
  background-color: var(--bg-off-white);
}

/* Included / Not included */
.included-section {
  background-color: var(--bg-white);
}

.included,
.not-included,
.whats-included {
  max-width: 800px;
  margin: 0 auto;
}

.included-intro {
  font-size: 18px;
  color: var(--text-medium);
  margin-bottom: 24px;
}

.included-note {
  font-size: 14px;
  color: var(--text-light);
  margin-top: 16px;
}

/* Check Lists */
.check-list,
.checklist {
  list-style: none;
  padding: 0;
}

.check-list li,
.checklist li {
  padding: 10px 0 10px 28px;
  position: relative;
  font-size: 15px;
  color: var(--text-medium);
  border-bottom: 1px solid #f0f0f0;
}

.check-list li::before,
.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-success);
  font-weight: 700;
}

.checklist-content {
  max-width: 700px;
  margin: 0 auto;
}

.basic-list {
  padding-left: 24px;
}

.basic-list li {
  font-size: 15px;
  color: var(--text-medium);
  margin-bottom: 8px;
}

/* ============================================================================
   SECTION 45: CASE STUDIES PAGE
   ============================================================================ */

.case-title-section {
  text-align: center;
}

.case-studies-grid,
.studies-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.case-section {
  background-color: var(--bg-off-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: var(--shadow-sm);
}

.case-header {
  padding: 28px;
  background-color: var(--bg-white);
  border-bottom: 1px solid #e5e7eb;
}

.case-niche {
  display: inline-block;
  padding: 4px 14px;
  background-color: var(--color-primary);
  color: var(--text-white);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.case-image {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.case-content {
  padding: 28px;
}

.case-intro {
  font-size: 16px;
  color: var(--text-medium);
  line-height: 1.7;
  margin-bottom: 20px;
}

.case-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 20px 0;
}

.stat-box,
.stat-item {
  text-align: center;
  padding: 16px;
  background-color: var(--bg-white);
  border-radius: var(--radius-md);
}

.stat-number,
.stat-value {
  font-size: 28px;
  font-weight: 800;
  color: var(--color-primary);
  display: block;
}

.stat-label {
  font-size: 13px;
  color: var(--text-light);
}

.case-studies-cta {
  text-align: center;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: var(--text-white);
}

.case-studies-cta h2 {
  color: var(--text-white);
}

/* ============================================================================
   SECTION 46: TESTIMONIALS PAGE
   ============================================================================ */

.testimonial-title {
  text-align: center;
}

.featured-testimonials,
.featured-testimonials-grid {
  max-width: 900px;
  margin: 0 auto;
}

.featured-testimonial-card {
  background-color: var(--bg-off-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 24px;
  border-left: 4px solid var(--color-primary);
}

.testimonial-image {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 12px;
}

.testimonial-intro {
  font-size: 18px;
  color: var(--text-medium);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 32px;
}

.short-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.video-testimonials {
  text-align: center;
  background-color: var(--bg-off-white);
}

.video-placeholder {
  max-width: 640px;
  margin: 24px auto;
  aspect-ratio: 16/9;
  background-color: var(--bg-light);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: var(--color-primary);
}

.testimonial-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.star-rating,
.stars {
  color: var(--color-secondary);
  font-size: 18px;
  margin-bottom: 8px;
}

.share-story {
  text-align: center;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: var(--text-white);
}

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

/* ============================================================================
   SECTION 47: KNOWLEDGEBASE PAGE
   ============================================================================ */

.search-section {
  background: linear-gradient(135deg, var(--bg-off-white) 0%, #e8f5f3 100%);
  text-align: center;
}

.search-wrapper {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  gap: 8px;
}

.search-input {
  flex: 1;
  padding: 14px 20px;
  border: 2px solid #e5e7eb;
  border-radius: var(--radius-md);
  font-size: 16px;
  transition: border-color 0.2s;
}

.search-input:focus {
  outline: none;
  border-color: var(--color-primary);
}

.search-button {
  padding: 14px 24px;
  background-color: var(--color-primary);
  color: var(--text-white);
  border: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s;
}

.search-button:hover {
  background-color: var(--color-primary-dark);
}

.search-hint {
  font-size: 13px;
  color: var(--text-light);
  margin-top: 12px;
}

.categories-section {
  background-color: var(--bg-white);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.category-card {
  background-color: var(--bg-off-white);
  padding: 28px;
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

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

.card-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.card-description {
  font-size: 14px;
  color: var(--text-medium);
  margin-bottom: 12px;
}

.card-link {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
}

.card-link:hover {
  text-decoration: underline;
}

.article-count {
  font-size: 13px;
  color: var(--text-light);
}

.popular-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.popular-item {
  padding: 20px;
  background-color: var(--bg-off-white);
  border-radius: var(--radius-md);
  transition: all 0.2s;
}

.popular-item:hover {
  background-color: var(--bg-light);
}

.article-meta {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 4px;
}

.still-need-help,
.cant-find {
  text-align: center;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: var(--text-white);
}

.still-need-help h2,
.cant-find h2 {
  color: var(--text-white);
}

.cant-find-content {
  max-width: 600px;
  margin: 0 auto;
}

.cant-find-buttons,
.help-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 24px;
  flex-wrap: wrap;
}

/* ============================================================================
   SECTION 48: FAQs PAGE
   ============================================================================ */

.faq-filters,
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 32px;
}

.filter-tab {
  padding: 8px 16px;
  background-color: var(--bg-white);
  border: 1px solid #e5e7eb;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-medium);
  cursor: pointer;
  transition: all 0.2s;
}

.filter-tab:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.filter-tab.active {
  background-color: var(--color-primary);
  color: var(--text-white);
  border-color: var(--color-primary);
}

.faq-category {
  margin-bottom: 40px;
}

.faq-category h3 {
  margin-bottom: 16px;
  color: var(--color-primary);
}

.faq-question {
  padding: 18px 24px;
  background-color: var(--bg-white);
  border-radius: var(--radius-md);
  margin-bottom: 8px;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.faq-answer {
  padding: 0 24px 18px;
  font-size: 15px;
  color: var(--text-medium);
  line-height: 1.7;
}

.faq-icon {
  float: right;
  color: var(--text-light);
}

/* ============================================================================
   SECTION 49: SUPPORT PAGE
   ============================================================================ */

.support-section {
  background-color: var(--bg-off-white);
}

.support-options {
  padding: 60px 0;
}

.support-options h2 {
  text-align: center;
  margin-bottom: 40px;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.support-card,
.help-option {
  background-color: var(--bg-white);
  padding: 28px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.support-card:hover,
.help-option:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.support-icon {
  font-size: 36px;
  margin-bottom: 12px;
}

.help-content {
  max-width: 800px;
  margin: 0 auto;
}

.support-form-section {
  background-color: var(--bg-white);
}

.support-contact {
  text-align: center;
  background-color: var(--bg-off-white);
}

.before-submitting {
  max-width: 700px;
  margin: 0 auto;
  padding: 24px;
  background-color: var(--bg-off-white);
  border-radius: var(--radius-md);
}

.response-time {
  text-align: center;
  padding: 24px;
  background-color: var(--bg-light);
  border-radius: var(--radius-md);
  margin-top: 24px;
}

.response-icon {
  font-size: 32px;
  margin-bottom: 8px;
}

.response-text,
.response-content {
  font-size: 15px;
  color: var(--text-medium);
}

/* ============================================================================
   SECTION 50: CONTACT PAGE
   ============================================================================ */

.contact-info-section {
  background-color: var(--bg-off-white);
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.contact-card {
  background-color: var(--bg-white);
  padding: 28px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.contact-link {
  display: inline-block;
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
}

.contact-link:hover {
  text-decoration: underline;
}

.contact-note {
  font-size: 13px;
  color: var(--text-light);
  margin-top: 8px;
}

.contact-form-section {
  background-color: var(--bg-white);
}

.form-wrapper {
  max-width: 700px;
  margin: 0 auto;
}

.form-hint,
.form-note {
  font-size: 13px;
  color: var(--text-light);
  margin-top: 4px;
}

.required {
  color: var(--color-error);
}

.optional {
  color: var(--text-light);
  font-size: 12px;
}

.file-upload {
  border: 2px dashed #e5e7eb;
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  cursor: pointer;
}

.file-label {
  font-size: 14px;
  color: var(--text-medium);
}

.error-message {
  color: var(--color-error);
  font-size: 13px;
  margin-top: 4px;
}

.success-message {
  color: var(--color-success);
  font-size: 14px;
  padding: 12px 16px;
  background-color: #ecfdf5;
  border-radius: var(--radius-sm);
}

/* Social links */
.social-buttons,
.social-links {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 20px;
}

.social-btn,
.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--bg-light);
  color: var(--text-medium);
  text-decoration: none;
  font-size: 16px;
  transition: all 0.2s;
}

.social-btn:hover,
.social-link:hover {
  background-color: var(--color-primary);
  color: var(--text-white);
}

.facebook { background-color: #1877f2; color: white; }
.twitter { background-color: #1da1f2; color: white; }
.linkedin { background-color: #0077b5; color: white; }

.social-sharing {
  display: flex;
  gap: 8px;
  align-items: center;
}

/* ============================================================================
   SECTION 51: COMMUNITY PAGE
   ============================================================================ */

.additional-help {
  background-color: var(--bg-off-white);
  text-align: center;
}

/* ============================================================================
   SECTION 52: FREE RESOURCES PAGE
   ============================================================================ */

.resources-section {
  background-color: var(--bg-off-white);
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.resource-item {
  background-color: var(--bg-white);
  padding: 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.resource-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.resource-icon,
.placeholder-icon {
  font-size: 36px;
  margin-bottom: 12px;
}

.resource-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.resource-badge {
  display: inline-block;
  padding: 2px 10px;
  background-color: var(--color-primary);
  color: var(--text-white);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 8px;
}

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

.early-access-section {
  background-color: var(--bg-white);
}

.early-access-form {
  max-width: 500px;
  margin: 24px auto 0;
}

.download-section,
.download-resources {
  background-color: var(--bg-off-white);
}

.download-box {
  max-width: 600px;
  margin: 0 auto;
  padding: 32px;
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.download-cta {
  margin-top: 24px;
}

.download-info {
  font-size: 13px;
  color: var(--text-light);
  margin-top: 12px;
}

.sources-list {
  list-style: none;
  padding: 0;
}

.sources-list li {
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
}

/* ============================================================================
   SECTION 53: THANK YOU PAGE
   ============================================================================ */

.thank-you-container,
.thank-you-main {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 24px;
  text-align: center;
}

.success-title {
  font-size: 36px;
  color: var(--color-primary);
  margin-bottom: 16px;
}

.success-subtitle {
  font-size: 18px;
  color: var(--text-medium);
  margin-bottom: 32px;
}

/* ============================================================================
   SECTION 54: UPSELL PAGES
   ============================================================================ */

.upsell-1-main,
.upsell-2-main,
.upsell-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.upsell-headline,
.upsell-title {
  font-size: 32px;
  font-weight: 800;
  text-align: center;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.upsell-subheading {
  font-size: 18px;
  color: var(--text-medium);
  text-align: center;
  max-width: 700px;
  margin: 0 auto 32px;
}

.upsell-section {
  margin-bottom: 48px;
}

.upsell-intro {
  font-size: 17px;
  color: var(--text-medium);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto 24px;
  text-align: center;
}

.upsell-content {
  max-width: 800px;
  margin: 0 auto;
}

.upsell-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.upsell-card {
  background-color: var(--bg-off-white);
  padding: 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.upsell-features {
  list-style: none;
  padding: 0;
}

.upsell-features li {
  padding: 8px 0 8px 24px;
  position: relative;
  font-size: 15px;
  color: var(--text-medium);
}

.upsell-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-success);
  font-weight: 700;
}

.upsell-value {
  text-align: center;
  margin: 32px 0;
}

.value-breakdown {
  max-width: 500px;
  margin: 0 auto;
}

.value-label,
.value-total-label {
  font-size: 16px;
  color: var(--text-dark);
}

.value-price,
.value-total-price {
  font-size: 16px;
  color: var(--text-light);
}

.upsell-offer {
  text-align: center;
  padding: 40px;
  background: linear-gradient(135deg, #fef9ee 0%, #fdf6e3 100%);
  border: 2px solid var(--color-secondary);
  border-radius: var(--radius-lg);
}

.upsell-pitch {
  font-size: 17px;
  color: var(--text-medium);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto 24px;
}

.upsell-note {
  font-size: 13px;
  color: var(--text-light);
  margin-top: 12px;
}

.upsell-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
}

.upsell-teaser {
  text-align: center;
  background-color: var(--bg-off-white);
}

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

.urgency-icon {
  font-size: 20px;
}

/* Future pacing */
.future-pacing {
  background-color: var(--bg-off-white);
}

.pacing-content {
  max-width: 700px;
  margin: 0 auto;
}

.vision-section {
  background-color: var(--bg-white);
}

/* Paths */
.paths-section {
  background-color: var(--bg-off-white);
}

.paths-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.path-card {
  background-color: var(--bg-white);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.path-features {
  list-style: none;
  padding: 0;
  margin-top: 16px;
}

.path-features li {
  padding: 6px 0 6px 24px;
  position: relative;
  font-size: 14px;
  color: var(--text-medium);
}

.path-features li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--color-primary);
}

/* ============================================================================
   SECTION 55: START A BLOG PAGE
   ============================================================================ */

.niches-section {
  background-color: var(--bg-off-white);
  padding: 80px 0;
}

.niches-section .niche-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.niches-section .niche-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  border: 1px solid #e5e7eb;
  box-shadow: var(--shadow-sm);
  padding: 24px 20px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.niches-section .niche-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary);
}

.niches-section .niche-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.niches-section .niche-card p {
  font-size: 13.5px;
  color: var(--text-medium);
  line-height: 1.55;
  margin-bottom: 16px;
  flex-grow: 1;
}

.niche-icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.niche-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  margin-top: auto;
}

.niche-link:hover {
  text-decoration: underline;
}

/* ============================================================================
   SECTION 56: CHECKOUT PAGE EXTENDED
   ============================================================================ */

.checkout-container,
.checkout-main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 24px;
}

.table-responsive {
  overflow-x: auto;
}

/* ============================================================================
   SECTION 57: MISC PATTERNS & BLOG TEASERS
   ============================================================================ */

.blog-teaser-section {
  background-color: var(--bg-off-white);
}

.blog-teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-teaser-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.blog-teaser-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

/* Stats strips used across pages */
.stats-strip,
.stats-grid {
  display: flex;
  justify-content: center;
  gap: 48px;
  padding: 40px 0;
  flex-wrap: wrap;
}

/* CTA variants */
.cta-final,
.cta-ready,
.ebook-cta,
.interim-cta {
  text-align: center;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: var(--text-white);
}

.cta-final h2,
.cta-ready h2,
.ebook-cta h2,
.interim-cta h2 {
  color: var(--text-white);
}

.cta-final p,
.cta-ready p,
.ebook-cta p,
.interim-cta p {
  color: rgba(255,255,255,0.9);
}

.cta-box {
  max-width: 600px;
  margin: 0 auto;
  padding: 40px;
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-description {
  font-size: 17px;
  color: var(--text-medium);
  line-height: 1.7;
}

.cta-alternatives {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  background-color: var(--color-primary);
  color: var(--text-white);
  border-radius: var(--radius-md);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  border: none;
  cursor: pointer;
}

.cta-button:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-1px);
}

/* Offer boxes */
.offer-box {
  max-width: 600px;
  margin: 32px auto;
  padding: 32px;
  background: linear-gradient(135deg, #fef9ee 0%, #fdf6e3 100%);
  border: 2px solid var(--color-secondary);
  border-radius: var(--radius-lg);
  text-align: center;
}

.offer-note {
  font-size: 13px;
  color: var(--text-light);
}

.savings {
  display: inline-block;
  padding: 4px 14px;
  background-color: var(--color-success);
  color: var(--text-white);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
}

/* Pricing section alias */
.pricing-section {
  background-color: var(--bg-off-white);
}

/* Intro section */
.intro-section {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

/* For You If / Not For You */
.for-you-if {
  background-color: var(--bg-off-white);
}

.for-you-note {
  font-size: 14px;
  color: var(--text-light);
  text-align: center;
  margin-top: 16px;
}

/* Solution and problem variations */
.solution-checklist {
  list-style: none;
  padding: 0;
}

.solution-checklist li {
  padding: 8px 0 8px 28px;
  position: relative;
  font-size: 15px;
  color: var(--text-medium);
}

.solution-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-success);
  font-weight: 700;
}

.solution-pitch {
  max-width: 700px;
  margin: 0 auto;
}

.solution-result,
.solution-subtext {
  font-size: 15px;
  color: var(--text-medium);
}

.problem-intro,
.problem-close {
  font-size: 17px;
  color: var(--text-medium);
  line-height: 1.7;
}

/* Monetization list */
.monetization-list {
  list-style: none;
  padding: 0;
}

.monetization-list li {
  padding: 12px 16px 12px 32px;
  position: relative;
  background-color: var(--bg-off-white);
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
  font-size: 15px;
  color: var(--text-medium);
}

.monetization-list li::before {
  content: "$";
  position: absolute;
  left: 12px;
  color: var(--color-secondary);
  font-weight: 700;
}

/* Patterns grid */
.patterns {
  background-color: var(--bg-off-white);
}

.patterns-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pattern-card {
  background-color: var(--bg-white);
  padding: 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

/* Feature grid alias */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-item {
  padding: 24px;
  background-color: var(--bg-off-white);
  border-radius: var(--radius-lg);
}

.feature-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

/* Timeline */
.timeline-section {
  background-color: var(--bg-off-white);
}

.timeline {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  padding-left: 32px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: var(--color-primary-light);
}

.timeline-item {
  position: relative;
  padding: 20px 0 20px 24px;
}

.timeline-marker {
  position: absolute;
  left: -26px;
  top: 24px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--color-primary);
  border: 2px solid var(--bg-white);
}

/* Quick links section */
.quick-links-section {
  background-color: var(--bg-off-white);
}

.quick-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.quick-link-card {
  display: block;
  padding: 20px;
  background-color: var(--bg-white);
  border-radius: var(--radius-md);
  text-decoration: none;
  text-align: center;
  transition: all 0.2s;
  border: 1px solid #e5e7eb;
}

.quick-link-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-sm);
}

/* View all CTA */
.view-all-cta {
  text-align: center;
  margin-top: 32px;
}

/* Newsletter section */
.newsletter-section {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  text-align: center;
  color: var(--text-white);
}

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

.newsletter-section p {
  color: rgba(255,255,255,0.9);
}

/* Trust grid */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.trust-card {
  padding: 24px;
  background-color: var(--bg-off-white);
  border-radius: var(--radius-lg);
  text-align: center;
}

/* What's coming */
.whats-coming {
  background-color: var(--bg-off-white);
}

/* Author */
.author {
  font-weight: 600;
  color: var(--text-dark);
}

/* Hero CTAs */
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Final note */
.final-note {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  font-size: 15px;
  color: var(--text-medium);
}

/* Sitemap section */
.sitemap-section {
  background-color: var(--bg-white);
}

.sitemap-category {
  margin-bottom: 32px;
}

.sitemap-category h3 {
  color: var(--color-primary);
  margin-bottom: 12px;
}

/* ============================================================================
   SECTION 58: RESPONSIVE OVERRIDES BATCH 2
   ============================================================================ */

@media (max-width: 1024px) {
  .upsell-grid,
  .paths-grid,
  .plan-details {
    grid-template-columns: 1fr;
  }

  .short-testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-teaser-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 768px) {
  .categories-grid,
  .popular-grid,
  .support-grid,
  .support-options,
  .contact-cards,
  .resource-grid,
  .patterns-grid,
  .feature-grid,
  .trust-grid,
  .blog-teaser-grid,
  .short-testimonials-grid {
    grid-template-columns: 1fr;
  }

  .search-wrapper {
    flex-direction: column;
  }

  .comparison-row {
    grid-template-columns: 1fr;
  }

  .social-buttons,
  .social-links {
    flex-wrap: wrap;
  }

  .upsell-headline,
  .upsell-title {
    font-size: 26px;
  }

  .cant-find-buttons,
  .help-buttons,
  .cta-alternatives {
    flex-direction: column;
    align-items: center;
  }
}

/* ============================================================================
   END OF COMPLETE STYLESHEET
   ============================================================================ */

/* Final missing class aliases */
.categories { /* sidebar categories box - inherits .sidebar-box */ }
.checkout-left { min-width: 0; }
.checkout-right { min-width: 0; }
.guarantee-content { max-width: 700px; margin: 0 auto; text-align: center; }
.help-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.navbar__link--dropdown,
.navbar__link--megamenu { /* inherits .navbar__link styles */ }
.newsletter-box { /* inherits .sidebar-box styles */ }
.popular-articles { background-color: var(--bg-off-white); }
.popular-posts { /* inherits .sidebar-box styles */ }
.posts-main { min-width: 0; }
.subtotal { font-size: 15px; color: var(--text-medium); }
.tax { font-size: 14px; color: var(--text-light); }

/* ============================================================================
   SECTION 59: START A BLOG GREY TAB BUTTON & PRICING LINK
   ============================================================================ */

.navbar__link--megamenu.navbar__link--tab {
  background-color: #6b7280;
  color: var(--text-white) !important;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  letter-spacing: 0.5px;
  font-size: 13px;
  transition: all 0.25s ease;
}

.navbar__link--megamenu.navbar__link--tab:hover {
  background-color: #4b5563;
  color: var(--text-white) !important;
}

.navbar__link--megamenu.navbar__link--tab svg {
  color: rgba(255,255,255,0.8);
}

/* Niche page hero with illustration */
.niche-hero {
  padding: 160px 0 80px;
  background: linear-gradient(135deg, var(--bg-off-white) 0%, #e8f5f3 100%);
  overflow: hidden;
}

.niche-hero__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.niche-hero__text {
  max-width: 560px;
}

.niche-hero__text h1 {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}

.niche-hero__text .subheading {
  font-size: 18px;
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: 12px;
}

.niche-hero__text .hero-description {
  margin-bottom: 28px;
}

.niche-hero__text .hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.niche-hero__image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.niche-hero__image svg {
  width: 100%;
  max-width: 420px;
  height: auto;
}

/* Toggle pricing on niche pages */
.niche-pricing {
  background-color: var(--bg-off-white);
  padding: 80px 0;
}

.niche-pricing .pricing-toggle {
  margin-bottom: 40px;
}

.niche-pricing .pricing-grid {
  max-width: 1000px;
}

.niche-pricing .pricing-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.niche-pricing .pricing-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  color: var(--text-medium);
}

.niche-pricing .pricing-card__features li::before {
  content: "✓";
  color: var(--color-primary);
  font-weight: 700;
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .niche-hero__content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .niche-hero__text {
    margin: 0 auto;
  }
  .niche-hero__text .hero-ctas {
    justify-content: center;
  }
  .niche-hero__image {
    order: -1;
  }
}

@media (max-width: 768px) {
  .niche-hero__text h1 {
    font-size: 30px;
  }
}

/* No padding on main - hero sections handle their own spacing */
main {
  padding-top: 0;
}
