/*
 * LeadJaw - Public Website Stylesheet
 * www.leadjaw.com
 * Brand: #1e2340 navy, #8DC63F lime green
 * Theme: Light, editorial, clean B2B
 * v1.1.9 - CTA button styles for comparison pages (.cta-button)
 * v1.1.8 - Comparison table styles for CMS competitor pages (.comparison-table)
 * v1.1.7 - Add top padding to promo banner section
 * v1.1.6 - Footer social icon styles
 * v1.1.5 - Breadcrumb explicit colours for contrast on green hero background
 * v1.1.4 - Breadcrumb bar styles
 * v1.1.3 - Page hero background #eefadf; scale down article h2/h3/h4
 * v1.1.2 - Article body section padding-top reduced to 10px
 * v1.1.1 - Further tighten article h2/h3 margins and section top padding
 * v1.1.0 - Reduce article h2/h3 margin-top from 2em to 1em
 * v1.0.9 - Remove top margin from first h2/h3 in article body
 * v1.0.8 - Reduce article body top padding; section--article-body modifier
 * v1.0.7 - Article content full width; reduce page-hero bottom padding
 * v1.0.6 - Promo banner slot styles
 * v1.0.5 - Fix mobile nav: remove overflow:hidden from site-nav, add mobile breakpoint for hamburger menu
 * v1.0.4 - Features page: subnav, hero variant, split-head, mock panels, compare table, detail cards
 * v1.0.3 - Added hero-inner--split two-column layout and hero-visual styles
 * v1.0.2 - Remove first-child top margin in page-content; reduce page-hero + section top padding
 * v1.0.1 - Added page-hero--no-excerpt modifier
 * v1.0.0
 */

/* ============================================================
   FONTS
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,300;1,9..40,400&family=DM+Serif+Display:ital@0;1&display=swap');

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  /* Brand */
  --navy:          #1e2340;
  --navy-mid:      #2b3260;
  --navy-light:    #3d4a7a;
  --green:         #8DC63F;
  --green-dark:    #6fa32e;
  --green-light:   #b2d96e;

  /* Page */
  --bg:            #f5f5f3;
  --bg-white:      #ffffff;
  --bg-muted:      #eeecea;
  --surface:       #ffffff;
  --border:        #e0ddd8;
  --border-light:  #ece9e4;

  /* Text */
  --text-head:     #1e2340;
  --text-body:     #3a3830;
  --text-muted:    #7a7568;
  --text-light:    #a8a298;

  /* UI */
  --radius:        6px;
  --radius-lg:     12px;
  --radius-pill:   100px;
  --shadow-sm:     0 1px 3px rgba(30,35,64,0.06), 0 1px 2px rgba(30,35,64,0.04);
  --shadow:        0 4px 16px rgba(30,35,64,0.08), 0 1px 4px rgba(30,35,64,0.05);
  --shadow-lg:     0 16px 48px rgba(30,35,64,0.12), 0 4px 12px rgba(30,35,64,0.06);

  /* Layout */
  --max-w:         1160px;
  --max-w-text:    680px;
  --gutter:        24px;

  /* Type scale */
  --font-sans:     'DM Sans', system-ui, sans-serif;
  --font-display:  'DM Serif Display', Georgia, serif;
}

/* ============================================================
   RESET + BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-body);
  background: var(--bg);
}

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

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

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

ul, ol {
  list-style: none;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--text-head);
  line-height: 1.2;
  font-weight: 400;
}

h1 { font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.2rem; font-family: var(--font-sans); font-weight: 600; }
h5 { font-size: 1rem; font-family: var(--font-sans); font-weight: 600; }

p { margin-bottom: 1.2em; }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  color: var(--text-muted);
  font-weight: 400;
  line-height: 1.7;
}

.label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-dark);
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.container--narrow {
  max-width: var(--max-w-text);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.container--prose {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section {
  padding: 80px 0;
}

.section--lg {
  padding: 120px 0;
}

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

.section--dark {
  background: var(--navy);
  color: #fff;
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: #fff;
}

.section--dark .lead {
  color: rgba(255,255,255,0.65);
}

.section--muted {
  background: var(--bg-muted);
}

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

.text-center { text-align: center; }
.text-left   { text-align: left; }

.mt-4  { margin-top: 1rem; }
.mt-8  { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mb-4  { margin-bottom: 1rem; }
.mb-8  { margin-bottom: 2rem; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.18s ease;
  text-decoration: none;
  white-space: nowrap;
}

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

.btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: var(--navy);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(141,198,63,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--border);
}

.btn-outline:hover {
  border-color: var(--navy);
  color: var(--navy);
  background: var(--bg-white);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.3);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
  color: #fff;
}

.btn-sm {
  padding: 9px 20px;
  font-size: 0.82rem;
}

.btn-lg {
  padding: 17px 36px;
  font-size: 1rem;
}

/* CTA button - comparison and alternative pages */
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 36px;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  border: 2px solid var(--green);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  background: var(--green);
  color: #fff !important;
              transform 0.2s ease, box-shadow 0.2s ease;
  margin: 8px 0;
}

.cta-button:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(141,198,63,0.55),
              0 2px 8px rgba(141,198,63,0.3);
}

.cta-button:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(141,198,63,0.35);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.site-nav.scrolled {
  border-bottom-color: rgba(255,255,255,0.12);
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}

/* Starfield canvas sits behind nav content */
.nav-stars {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* All nav content sits above stars */
.nav-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo img {
  height: 44px;
  width: auto;
}

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

.nav-links a {
  display: block;
  padding: 7px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  border-radius: var(--radius);
  transition: color 0.15s, background 0.15s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
  background: rgba(255,255,255,0.1);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-cta .btn {
  padding: 9px 22px;
  font-size: 0.86rem;
}

.nav-cta .btn-outline {
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.35);
  background: transparent;
}

.nav-cta .btn-outline:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.08);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: #fff;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  margin: 4px 0;
  transition: all 0.2s;
}

/* ============================================================
   MOBILE NAV
   ============================================================ */
@media (max-width: 860px) {

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

  .nav-links,
  .nav-cta {
    display: none;
  }

  /* When open, both panels drop down as a unified panel.
     nav-links and nav-cta are siblings inside nav-inner so we
     use absolute positioning with auto stacking via flex column
     on the nav-inner itself when open. */
  .site-nav.open .nav-inner {
    flex-wrap: wrap;
    height: auto;
    padding-bottom: 0;
    align-items: flex-start;
  }

  .site-nav.open .nav-logo {
    height: 68px;
  }

  .site-nav.open .nav-toggle {
    height: 68px;
  }

  .site-nav.open .nav-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    width: 100%;
    padding: 4px 0 8px;
    border-top: 1px solid rgba(255,255,255,0.08);
    order: 3;
  }

  .site-nav.open .nav-cta {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    width: 100%;
    padding: 8px 0 20px;
    order: 4;
  }

  .nav-links a {
    font-size: 0.95rem;
    padding: 10px 8px;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    border-radius: 0;
  }

  .nav-links li:last-child a {
    border-bottom: none;
  }

  .nav-cta .btn {
    width: 100%;
    justify-content: center;
    padding: 12px 22px;
  }

}

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

.hero-content {
  /* left column - no change to existing single-column behaviour */
}

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

.hero-visual img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
  .hero-inner--split {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-visual {
    order: -1;
  }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: 160px 0 100px;
  background: var(--bg-white);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(141,198,63,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -40px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(30,35,64,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(141,198,63,0.1);
  border: 1px solid rgba(141,198,63,0.25);
  border-radius: var(--radius-pill);
  padding: 5px 14px 5px 10px;
  margin-bottom: 28px;
}

.hero-label-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

.hero-label-text {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--green-dark);
  letter-spacing: 0.04em;
}

.hero h1 {
  max-width: 700px;
  margin-bottom: 24px;
}

.hero h1 em {
  font-style: italic;
  color: var(--green-dark);
}

.hero .lead {
  max-width: 520px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-note {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 20px;
}

/* ============================================================
   LOGOS / SOCIAL PROOF STRIP
   ============================================================ */
.proof-strip {
  padding: 36px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  background: var(--bg-white);
}

.proof-strip-label {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 20px;
  text-align: center;
}

.proof-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.proof-logo-item {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.proof-logo-item:hover {
  color: var(--text-muted);
}

/* ============================================================
   FEATURES GRID
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.feature-card {
  background: var(--bg-white);
  padding: 36px 32px;
  position: relative;
  transition: background 0.2s;
}

.feature-card:hover {
  background: #fafaf8;
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: rgba(141,198,63,0.12);
  border: 1px solid rgba(141,198,63,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-icon svg {
  width: 20px;
  height: 20px;
  color: var(--green-dark);
}

.feature-card h4 {
  margin-bottom: 10px;
  font-size: 1rem;
}

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

/* ============================================================
   SECTION HEADER
   ============================================================ */
.section-header {
  max-width: 560px;
  margin-bottom: 56px;
}

.section-header.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-header .label {
  display: block;
  margin-bottom: 12px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* ============================================================
   SPLIT SECTION (feature detail)
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.split.reverse .split-visual {
  order: -1;
}

.split-visual {
  border-radius: var(--radius-lg);
  background: var(--bg-muted);
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.split-visual-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.15);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.split-content .label {
  display: block;
  margin-bottom: 14px;
}

.split-content h2 {
  margin-bottom: 18px;
}

.split-content p {
  color: var(--text-muted);
  margin-bottom: 20px;
}

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-body);
}

.check-list li::before {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpolyline points='2,6 5,9 10,3' fill='none' stroke='%231e2340' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 75% 75%;
  background-position: center;
  background-repeat: no-repeat;
}

/* ============================================================
   STATS ROW
   ============================================================ */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.stat-item {
  padding: 40px 32px;
  background: rgba(255,255,255,0.04);
  text-align: center;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--green);
  line-height: 1;
  margin-bottom: 8px;
  display: block;
}

.stat-label {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.4;
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
  text-align: center;
}

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

.pricing-card.featured {
  border-color: var(--navy);
  border-width: 2px;
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.pricing-tier {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.pricing-price {
  margin-bottom: 6px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 2px;
}

.pricing-amount {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--text-head);
  line-height: 1;
}

.pricing-currency {
  font-size: 1.4rem;
  color: var(--text-muted);
  padding-top: 4px;
  font-family: var(--font-sans);
  font-weight: 500;
}

.pricing-period {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  text-align: left;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-body);
}

.pricing-features li::before {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(141,198,63,0.15);
  border: 1px solid rgba(141,198,63,0.3);
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpolyline points='2,6 5,9 10,3' fill='none' stroke='%236fa32e' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 70% 70%;
  background-position: center;
  background-repeat: no-repeat;
}

.pricing-card .btn {
  width: 100%;
  justify-content: center;
}

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

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

.testimonial-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.testimonial-stars span {
  color: var(--green);
  font-size: 14px;
}

.testimonial-quote {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.65;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--green);
  flex-shrink: 0;
}

.testimonial-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
}

.testimonial-role {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-white);
}

.faq-item {
  border-bottom: 1px solid var(--border-light);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-head);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  transition: background 0.15s;
  font-family: var(--font-sans);
}

.faq-question:hover {
  background: var(--bg-muted);
}

.faq-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--bg-muted);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
}

.faq-icon::after {
  content: '+';
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1;
}

.faq-item.open .faq-icon {
  background: var(--navy);
  transform: rotate(45deg);
}

.faq-item.open .faq-icon::after {
  color: #fff;
}

.faq-answer {
  display: none;
  padding: 0 28px 22px;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  display: block;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 72px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -40px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(141,198,63,0.15) 0%, transparent 65%);
  pointer-events: none;
}

.cta-banner-content {
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  color: #fff;
  margin-bottom: 12px;
}

.cta-banner p {
  color: rgba(255,255,255,0.6);
  font-size: 1.05rem;
  margin: 0;
}

.cta-banner-actions {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

/* ============================================================
   ARTICLES
   ============================================================ */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.article-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}

.article-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.article-thumb {
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.article-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-thumb-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
}

.article-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.article-cat {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-dark);
}

.article-date {
  font-size: 0.76rem;
  color: var(--text-light);
}

.article-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--border);
}

.article-card h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--text-head);
  line-height: 1.3;
  margin-bottom: 10px;
  font-weight: 400;
}

.article-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 20px;
}

.article-card .btn {
  align-self: flex-start;
}

/* Single article */
.article-content {
  max-width: 100%;
  margin: 0 auto;
}

.article-content h1 {
  margin-bottom: 16px;
}

.article-content .article-meta {
  margin-bottom: 36px;
}

.article-content .article-body-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-body);
}

.article-content .article-body-text h2,
.article-content .article-body-text h3 {
  margin-top: 0.5em;
  margin-bottom: 0.4em;
}

.article-content .article-body-text h2 { font-size: 1.4rem; }
.article-content .article-body-text h3 { font-size: 1.15rem; }
.article-content .article-body-text h4 { font-size: 1rem; }

.article-content .article-body-text p {
  margin-bottom: 1.4em;
}

.article-content .article-body-text ul,
.article-content .article-body-text ol {
  list-style: disc;
  padding-left: 1.5em;
  margin-bottom: 1.4em;
}

.article-content .article-body-text li {
  margin-bottom: 0.4em;
}

.article-content .article-body-text a {
  color: var(--green-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Green links in FAQ answers and support page answer blocks */
.faq-answer a,
.faq-answer p a,
.sp-faq-a-inner a,
.page-content a {
  color: var(--green-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.faq-answer a:hover,
.faq-answer p a:hover,
.sp-faq-a-inner a:hover,
.page-content a:hover {
  color: var(--green);
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}

.contact-info h3 {
  margin-bottom: 14px;
}

.contact-info p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 28px;
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-detail-item {
  font-size: 0.88rem;
}

.contact-detail-label {
  font-weight: 600;
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 2px;
}

.contact-detail-value {
  color: var(--text-body);
}

.form-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

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

.form-group label {
  display: block;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-head);
  margin-bottom: 7px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--text-body);
  background: var(--bg-white);
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(30,35,64,0.08);
}

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

/* ============================================================
   INNER PAGE
   ============================================================ */
.page-hero {
  padding: 120px 0 40px;
  background: #eefadf;
  border-bottom: 1px solid var(--border-light);
}

.page-hero .label {
  display: block;
  margin-bottom: 14px;
}

.page-hero--no-excerpt {
  padding-bottom: 40px;
}

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

.section--article-body,
.page-hero + .section--article-body {
  padding-top: 10px;
  padding-bottom: 60px;
}

.page-content {
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--text-body);
}

.page-content h2 { margin: 2.2em 0 0.6em; font-size: clamp(1.2rem, 2vw, 1.5rem); }
.page-content h3 { margin: 1.8em 0 0.5em; font-size: clamp(1rem, 1.6vw, 1.2rem); }
.page-content > *:first-child { margin-top: 0; }
.page-content p  { margin-bottom: 1.3em; }
.page-content ul,
.page-content ol {
  padding-left: 1.4em;
  margin-bottom: 1.3em;
}
.page-content ul { list-style: disc; }
.page-content ol { list-style: decimal; }
.page-content li { margin-bottom: 0.4em; }
.page-content a  {
  color: var(--green-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.page-content a:hover {
  color: var(--green);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.65);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0;
}

.footer-col-title {
  font-family: var(--font-sans);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}

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

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.15s;
}

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

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  text-align: center;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.6;
}

/* ============================================================
   SCHEMA / STRUCTURED DATA HELPERS
   ============================================================ */
.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;
}

/* ============================================================
   ALERTS / FLASH MESSAGES
   ============================================================ */
.alert {
  padding: 14px 20px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  border: 1px solid transparent;
  margin-bottom: 20px;
}

.alert-success {
  background: rgba(141,198,63,0.1);
  border-color: rgba(141,198,63,0.3);
  color: var(--green-dark);
}

.alert-error {
  background: rgba(220,50,50,0.06);
  border-color: rgba(220,50,50,0.2);
  color: #b03030;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-up {
  animation: fadeUp 0.5s ease both;
}

.fade-up-1 { animation-delay: 0.1s; }
.fade-up-2 { animation-delay: 0.2s; }
.fade-up-3 { animation-delay: 0.3s; }
.fade-up-4 { animation-delay: 0.4s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .pricing-grid .pricing-card:last-child {
    grid-column: span 2;
    max-width: 400px;
    margin: 0 auto;
    width: 100%;
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .footer-brand {
    grid-column: span 2;
    max-width: none;
  }
}

@media (max-width: 768px) {
  :root { --gutter: 18px; }

  .section { padding: 56px 0; }
  .section--lg { padding: 72px 0; }

  .hero { padding: 120px 0 72px; }

  .nav-links,
  .nav-cta .btn-outline {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav.open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--navy);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 12px 0;
    gap: 0;
  }

  .site-nav.open .nav-links li {
    padding: 0 var(--gutter);
  }

  .features-grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .split.reverse .split-visual { order: 0; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .articles-grid { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; gap: 36px; }

  .cta-banner {
    flex-direction: column;
    padding: 48px 32px;
    text-align: center;
  }

  .cta-banner-actions {
    flex-direction: column;
    width: 100%;
  }

  .cta-banner-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-grid .pricing-card:last-child {
    grid-column: span 1;
    max-width: none;
  }

  .form-row { grid-template-columns: 1fr; }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-brand { grid-column: 1; }

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

@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }

  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .proof-logos { gap: 24px; }
}

/* ============================================================
   PRICING BILLING TOGGLE
   ============================================================ */
.pricing-divider {
  height: 1px;
  background: var(--border-light);
  margin: 24px 0;
}

.pricing-toggle-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.pricing-toggle-label {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-body);
  transition: font-weight 0.15s;
}

#toggle-monthly-label {
  font-weight: 600;
}

.pricing-toggle-track {
  position: relative;
  width: 48px;
  height: 26px;
  background: var(--border);
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background 0.2s;
  flex-shrink: 0;
  padding: 0;
}

.pricing-toggle-track.active {
  background: var(--navy);
}

.pricing-toggle-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.18);
  transition: transform 0.2s;
  display: block;
}

.pricing-toggle-track.active .pricing-toggle-thumb {
  transform: translateX(22px);
}

.pricing-annual-badge {
  display: inline-flex;
  align-items: center;
  background: var(--green);
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  box-shadow: 0 2px 8px rgba(141,198,63,0.4);
  opacity: 0;
  transform: translateY(4px) scale(0.95);
  transition: opacity 0.2s, transform 0.2s;
  pointer-events: none;
}

.pricing-annual-badge.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ============================================================
   SECTION STARFIELD CANVAS
   ============================================================ */
.section-stars {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* ============================================================
   PRICING TEASER (homepage snippet - 3 cards, name + price + CTA)
   ============================================================ */
.pricing-teaser {
  width: 100%;
}

.pricing-teaser__inner {
  max-width: 900px;
  margin: 0 auto;
}

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

.pricing-teaser__card {
  background: var(--bg-card, #fff);
  border: 1px solid var(--border, #e5e7eb);
  border-radius: var(--radius-lg, 12px);
  padding: 32px 28px;
  text-align: center;
  position: relative;
  transition: box-shadow 0.2s ease;
}

.pricing-teaser__card:hover {
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.pricing-teaser__card--featured {
  border-color: var(--green, #7bff4f);
  border-width: 2px;
  box-shadow: 0 4px 24px rgba(123,255,79,0.12);
}

.pricing-teaser__name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-head, #0f1729);
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pricing-teaser__price {
  margin: 0 0 24px;
  line-height: 1;
}

.pricing-teaser__amount {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--text-head, #0f1729);
}

.pricing-teaser__period {
  display: block;
  font-size: 0.82rem;
  color: var(--text-muted, #6b7280);
  margin-top: 6px;
}

.pricing-teaser__card .btn {
  width: 100%;
  text-align: center;
}

.pricing-teaser__foot {
  text-align: center;
  font-size: 0.84rem;
  color: var(--text-muted, #6b7280);
  margin: 0;
}

.pricing-teaser__foot a {
  color: var(--green, #7bff4f);
  text-decoration: none;
  font-weight: 600;
}

.pricing-teaser__foot a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .pricing-teaser__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ============================================================
   FEATURES PAGE
   Subnav, hero variant, split-head header, mock UI panels,
   detail cards, compare table, FAQ static grid
   ============================================================ */

/* Subnav - sticks below the fixed site-nav (68px) */
.features-subnav {
  position: sticky;
  top: 68px;
  z-index: 90;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 2px 8px rgba(30,35,64,0.06);
}

.features-subnav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
  height: 52px;
}

.features-subnav-inner::-webkit-scrollbar { display: none; }

.fsn-pill {
  flex-shrink: 0;
  padding: 5px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  border: 1px solid transparent;
  background: none;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.fsn-pill:hover {
  color: var(--navy);
  background: var(--bg-muted);
}

.fsn-pill.active {
  color: var(--green-dark);
  background: rgba(141,198,63,0.1);
  border-color: rgba(141,198,63,0.25);
}

/* ============================================================
   FOOTER SOCIAL ICONS
   ============================================================ */

.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.6);
  transition: background .2s, color .2s;
  text-decoration: none;
}

.footer-social-link:hover {
  background: var(--primary);
  color: #fff;
}

/* ============================================================
   BREADCRUMBS
   ============================================================ */

.breadcrumb-bar {
  background: #eefadf;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  padding: 10px 0;
}

.breadcrumb-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  font-size: .8rem;
  color: #4a5568;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
  gap: 4px;
}

.breadcrumb-item a {
  color: #4a5568;
  text-decoration: none;
  transition: color .15s;
}

.breadcrumb-item a:hover {
  color: var(--primary);
}

.breadcrumb-item span[itemprop="name"] {
  color: #1e2340;
  font-weight: 500;
}

.breadcrumb-item a span[itemprop="name"] {
  color: #4a5568;
  font-weight: 400;
}

.breadcrumb-sep {
  color: #4a5568;
  font-size: .75rem;
}

/* ============================================================
   PROMO BANNER
   ============================================================ */

.section--promo-banner {
  padding: 48px 0 56px;
  background: var(--bg-white);
}

.promo-banner-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.section--promo-banner a {
  display: block;
  border-radius: var(--radius-lg);
  transition: opacity 0.2s ease;
}

.section--promo-banner a:hover {
  opacity: 0.9;
}

@media (max-width: 768px) {
  .section--promo-banner { padding: 0 0 40px; }
}

/* ============================================================
   FEATURES PAGE SPECIFIC
   ============================================================ */
.features-hero {
  padding: 100px 0 80px;
  background: var(--bg-white);
  position: relative;
  overflow: hidden;
}

.features-hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -60px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(141,198,63,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.features-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.features-hero h1      { margin-bottom: 20px; }
.features-hero .lead   { margin-bottom: 32px; }

.features-hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.features-hero-note {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 18px;
  margin-bottom: 0;
}

/* Two-column section header: title left, outcome blurb right */
.section-header.split-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  max-width: 100%;
  margin-bottom: 56px;
}

.section-header.split-head h2 { margin-bottom: 0; }

.section-header.split-head .head-right { padding-top: 4px; }

.section-header.split-head .head-right p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 0;
}

.outcome-pill {
  display: inline-block;
  background: rgba(141,198,63,0.1);
  color: var(--green-dark);
  border: 1px solid rgba(141,198,63,0.25);
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* Left-aligned section header */
.section-header.left {
  max-width: 640px;
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

/* Detail card grid - extends .feature-card with a proof line */
.detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.feature-card-detail {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}

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

.feature-card-detail .feature-icon { margin-bottom: 18px; }
.feature-card-detail h4 { margin-bottom: 10px; }

.feature-card-detail p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 16px;
}

.card-proof {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--green-dark);
  border-top: 1px solid var(--border-light);
  padding-top: 12px;
  margin-top: auto;
  margin-bottom: 0;
}

/* Mock UI panels */
.mock-panel {
  background: var(--bg-muted);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.mock-topbar {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-light);
  padding: 11px 16px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.mock-topbar .mock-dot { width: 10px; height: 10px; border-radius: 50%; }

.mock-topbar .mock-title {
  margin-left: 8px;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--text-light);
}

.mock-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mock-row {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 11px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.mock-row-co {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-head);
  margin-bottom: 0;
}

.mock-row-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.mock-badge {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  flex-shrink: 0;
}

.mock-badge-hot  { background: #FEF3C7; color: #92400E; }
.mock-badge-warm { background: rgba(141,198,63,0.15); color: var(--green-dark); }
.mock-badge-new  { background: #EFF6FF; color: #1D4ED8; }
.mock-badge-cold { background: var(--bg-muted); color: var(--text-muted); }

.mock-session-block {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 12px 14px;
  font-size: 0.82rem;
}

.mock-session-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 4px;
}

.mock-session-title { font-weight: 600; color: var(--text-head); margin-bottom: 0; }
.mock-session-dur   { font-size: 0.75rem; color: var(--text-light); }
.mock-session-pages { color: var(--text-muted); line-height: 1.5; margin-bottom: 0; }

.mock-session-utm {
  margin-top: 5px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 0;
}

.mock-form-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 16px;
}

.mock-form-person {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--border-light);
}

.mock-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(141,198,63,0.12);
  border: 1px solid rgba(141,198,63,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--green-dark);
  flex-shrink: 0;
}

.mock-form-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-head);
  margin-bottom: 0;
}

.mock-form-role {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.mock-kv {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 2px 12px;
  font-size: 0.78rem;
}

.mock-kv dt { color: var(--text-light); font-weight: 500; padding: 3px 0; }
.mock-kv dd { color: var(--text-body);  padding: 3px 0; margin: 0; }
.mock-kv dd.link-col { color: var(--navy); font-weight: 600; }

/* Comparison table */
.compare-wrap {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  overflow-x: auto;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  background: var(--bg-white);
}

.compare-table th {
  padding: 14px 24px;
  text-align: left;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--text-muted);
  background: var(--bg-muted);
  border-bottom: 1px solid var(--border);
}

.compare-table th.col-hl {
  background: rgba(141,198,63,0.1);
  color: var(--green-dark);
}

.compare-table td {
  padding: 13px 24px;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-body);
  vertical-align: middle;
}

.compare-table tr:last-child td { border-bottom: none; }
.compare-table td.col-hl { background: rgba(141,198,63,0.05); font-weight: 600; }

.compare-table .tick  { color: var(--green-dark); font-weight: 700; }
.compare-table .cross { color: #DC2626; }
.compare-table .part  { color: #D97706; font-size: 0.8rem; }

/* Comparison table - CMS competitor pages (.comparison-table class) */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  margin: 24px 0;
}

.comparison-table th {
  padding: 14px 24px;
  text-align: left;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--text-muted);
  background: var(--bg-muted);
  border-bottom: 1px solid var(--border);
}

.comparison-table th:nth-child(2) {
  background: rgba(141,198,63,0.1);
  color: var(--green-dark);
}

.comparison-table td {
  padding: 13px 24px;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-body);
  vertical-align: middle;
}

.comparison-table td:nth-child(2) {
  background: rgba(141,198,63,0.05);
  font-weight: 600;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

@media (max-width: 480px) {
  .comparison-table th,
  .comparison-table td { padding: 11px 14px; }
}

/* FAQ static grid (2-col, no accordion needed on features page) */
.faq-static-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  max-width: 900px;
}

.faq-static-item h4 {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-head);
}

.faq-static-item p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 0;
}

/* Features page responsive additions */
@media (max-width: 900px) {
  .section-header.split-head { grid-template-columns: 1fr; gap: 16px; }
}

@media (max-width: 768px) {
  .features-hero    { padding: 80px 0 56px; }
  .features-subnav  { top: 0; }
  .detail-grid      { grid-template-columns: 1fr; }
  .features-hero-actions { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .compare-table th,
  .compare-table td { padding: 11px 14px; }
}
