/*
 * BetterWell Pro - Marketing Site Styles
 * ======================================
 * 
 * Table of Contents:
 * 1. CSS Variables & Reset
 * 2. Typography & Base
 * 3. Layout & Containers
 * 4. Navigation
 * 5. Buttons & CTAs
 * 6. Sections & Subsections
 * 7. Hero Section
 * 8. Cards & Grids
 * 9. Steps Component
 * 10. Pricing Section
 * 11. Demo Section
 * 12. Contact Section
 * 13. Forms
 * 14. Footer
 * 15. Utilities & Animations
 * 16. Responsive Breakpoints
 */

/* ==========================================================================
   1. CSS VARIABLES & RESET
   ========================================================================== */

:root {
  /* Brand Colors */
  --navy: #162D50;
  --navy-dark: #0F2342;
  --teal: #007A8A;
  --teal-light: #1F8A9E;
  --accent: #F59E0B;
  --accent-dark: #D97706;
  --success: #34D399;

  /* Text Opacity Scale (5 levels on --text base #F5F7FF) */
  --text: #F5F7FF;
  --text-strong: rgba(245, 247, 255, 0.96);
  --text-default: rgba(245, 247, 255, 0.88);
  --text-muted: rgba(245, 247, 255, 0.72);
  --text-subtle: rgba(245, 247, 255, 0.55);
  --text-faint: rgba(245, 247, 255, 0.40);

  /* Backward compat */
  --muted: var(--text-muted);

  /* Surfaces (card / hover / active) */
  --surface-card: rgba(9, 106, 119, 0.08);
  --surface-hover: rgba(0, 122, 138, 0.12);
  --surface-active: rgba(0, 122, 138, 0.18);

  /* Borders & Shadows */
  --border: rgba(245, 247, 255, 0.12);
  --border-teal: rgba(0, 122, 138, 0.20);
  --border-teal-hover: rgba(0, 122, 138, 0.30);
  --shadow: rgba(0, 0, 0, 0.28);

  /* Icon badge */
  --icon-bg: rgba(0, 122, 138, 0.35);
  --icon-border: rgba(0, 122, 138, 0.40);

  /* Card header gradient */
  --header-gradient: linear-gradient(135deg, rgba(0, 122, 138, 0.15), rgba(0, 122, 138, 0.08));

  /* Motion */
  --ease-out: cubic-bezier(0.22, 0.61, 0.36, 1);
  --duration-fast: 120ms;
  --duration-normal: 200ms;
  --duration-slow: 320ms;
  --duration-reveal: 500ms;

  /* Layout */
  --maxw: 1200px;
  --radius: 18px;
  --radius-sm: 14px;
  --radius-lg: 20px;
}

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

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  height: 100%;
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--navy-dark);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Screen-reader-only utility */
.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;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 10000;
  padding: 12px 20px;
  background: var(--accent);
  color: var(--navy-dark);
  font-weight: 600;
  font-size: 14px;
  border-radius: 0 0 12px 12px;
  text-decoration: none;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 0;
}

/* ==========================================================================
   2. TYPOGRAPHY & BASE
   ========================================================================== */

h1 {
  font-family: Sora, Inter, system-ui;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 14px 0 12px;
  color: rgba(245, 247, 255, 0.96);
}

.accent-text {
  color: var(--accent);
  font-weight: 600;
}

.section-title {
  font-family: Sora, Inter, system-ui;
  font-size: clamp(22px, 2.5vw, 32px);
  letter-spacing: -0.03em;
  margin: 0 0 14px;
  color: rgba(245, 247, 255, 0.98);
}

/* Pricing section: headline "Pricing" + chip "Launch Price (limited time)" */
.section-title-with-chip {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.pricing-launch-chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  background: linear-gradient(135deg, rgba(0, 122, 138, 0.2), rgba(0, 122, 138, 0.08));
  border: 1px solid rgba(0, 122, 138, 0.35);
  border-radius: 20px;
  font-family: Inter, system-ui, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(129, 212, 218, 0.98);
  white-space: nowrap;
  line-height: 1.2;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}

.section-sub {
  color: var(--muted);
  line-height: 1.6;
  max-width: 120ch;
  margin: 0 0 26px;
}

.subsection-title {
  font-family: Sora, Inter, system-ui;
  font-size: clamp(24px, 3vw, 36px);
  letter-spacing: -0.03em;
  margin: 0 0 12px;
  color: rgba(245, 247, 255, 0.98);
}

.subsection-sub {
  color: var(--muted);
  line-height: 1.6;
  max-width: 120ch;
  margin: 0;
  font-size: 16px;
}

/* Plan Badges - Trust & Clarity */
.plan-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
  vertical-align: middle;
  margin-left: 8px;
  line-height: 1;
}

/* Badge variants */
.plan-badge.basic-plus {
  background: rgba(76, 175, 80, 0.15);
  color: rgba(129, 199, 132, 0.95);
  border: 1px solid rgba(76, 175, 80, 0.3);
}

.plan-badge.standard {
  background: rgba(33, 150, 243, 0.15);
  color: rgba(100, 181, 246, 0.95);
  border: 1px solid rgba(33, 150, 243, 0.3);
}

.plan-badge.standard-plus {
  background: rgba(33, 150, 243, 0.15);
  color: rgba(100, 181, 246, 0.95);
  border: 1px solid rgba(33, 150, 243, 0.3);
}

.plan-badge.premium {
  background: rgba(245, 158, 11, 0.15);
  color: rgba(251, 191, 36, 0.95);
  border: 1px solid rgba(245, 158, 11, 0.4);
}

.plan-badge.planned,
.plan-badge.later {
  background: rgba(255, 152, 0, 0.15);
  color: rgba(255, 183, 77, 0.95);
  border: 1px solid rgba(255, 152, 0, 0.3);
}

/* Inline badges in lists */
li .plan-badge {
  margin-left: 4px;
  font-size: 10px;
  padding: 3px 8px;
}

/* Capability strip under hero */
.capability-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
  padding: 16px 20px;
  background: rgba(0, 122, 138, 0.08);
  border-radius: 12px;
  border: 1px solid rgba(0, 122, 138, 0.15);
}

.capability-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(245, 247, 255, 0.85);
}

.capability-item::before {
  content: '->';
  color: var(--teal);
  font-weight: 700;
}

/* ==========================================================================
   3. LAYOUT & CONTAINERS
   ========================================================================== */

.container {
  width: min(var(--maxw), calc(100% - 32px));
  margin: 0 auto;
}

main {
  position: relative;
  z-index: 1;
}

/* Grain texture overlay */
.grain::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.07;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.06), transparent 40%),
    radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.04), transparent 40%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.02) 1px, transparent 1px, transparent 3px);
  mix-blend-mode: overlay;
  z-index: 0;
}

/* ==========================================================================
   4. NAVIGATION
   ========================================================================== */

.nav-wrap {
  position: fixed;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: min(var(--maxw), calc(100% - 24px));
  z-index: 999;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.60);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.04);
  transition: background var(--duration-slow) var(--ease-out), border-color var(--duration-slow) var(--ease-out), box-shadow var(--duration-slow) var(--ease-out);
}

.nav-wrap.scrolled {
  background: rgba(15, 35, 66, 0.75);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  backdrop-filter: blur(24px) saturate(160%);
  border: 1px solid rgba(245, 247, 255, 0.14);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.nav {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: Sora, Inter, system-ui;
  letter-spacing: -0.02em;
  font-weight: 700;
  font-size: 16px;
  color: rgba(15, 35, 66, 0.95);
  transition: color 320ms ease;
}

.nav-wrap.scrolled .brand {
  color: rgba(245, 247, 255, 0.95);
}

.logo-wrap {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 35, 66, 0.08);
  border: 1px solid rgba(15, 35, 66, 0.15);
  transition: all 320ms ease;
}

.nav-wrap.scrolled .logo-wrap {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

footer .logo-wrap {
  background: rgba(255, 255, 255, 0.95) !important;
  border-color: rgba(255, 255, 255, 0.3) !important;
}

.logo {
  width: 22px;
  height: 22px;
  object-fit: contain;
  display: block;
  filter: none;
  opacity: 0.95;
  transition: opacity 320ms ease;
}

.brand-text {
  display: inline-block;
  line-height: 1;
}

.brand-name {
  font-weight: 700;
}

.brand-pro {
  font-weight: 300;
  color: var(--teal-light);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: rgba(15, 35, 66, 0.80);
  font-weight: 500;
  font-size: 14px;
  transition: color 320ms ease;
}

.nav-links a:hover {
  color: rgba(15, 35, 66, 1);
}

.nav-wrap.scrolled .nav-links {
  color: rgba(245, 247, 255, 0.85);
}

.nav-wrap.scrolled .nav-links a:hover {
  color: rgba(245, 247, 255, 1);
}

.nav-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.nav-link-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 12px;
  color: rgba(15, 35, 66, 0.85);
  font-weight: 600;
  font-size: 14px;
  transition: all 200ms ease;
  white-space: nowrap;
  text-decoration: none;
  border-radius: 8px;
}

.nav-link-secondary:hover {
  color: rgba(15, 35, 66, 1);
  background: rgba(15, 35, 66, 0.06);
}

.nav-wrap.scrolled .nav-link-secondary {
  color: rgba(245, 247, 255, 0.85);
}

.nav-wrap.scrolled .nav-link-secondary:hover {
  color: rgba(245, 247, 255, 1);
  background: rgba(255, 255, 255, 0.08);
}

.nav-link-subtle {
  opacity: 0.7;
}

.nav-link-subtle:hover {
  opacity: 1;
}

/* Hamburger Menu */
.burger {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(15, 35, 66, 0.15);
  background: rgba(15, 35, 66, 0.08);
  color: rgba(15, 35, 66, 0.9);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 320ms ease;
}

.nav-wrap.scrolled .burger {
  border-color: rgba(245, 247, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(245, 247, 255, 0.9);
}

.burger span {
  width: 18px;
  height: 2px;
  background: rgba(15, 35, 66, 0.9);
  display: block;
  position: relative;
  transition: background 320ms ease;
}

.nav-wrap.scrolled .burger span {
  background: rgba(245, 247, 255, 0.9);
}

.burger span::before,
.burger span::after {
  content: "";
  width: 18px;
  height: 2px;
  background: rgba(15, 35, 66, 0.9);
  position: absolute;
  left: 0;
  transition: background 320ms ease;
}

.nav-wrap.scrolled .burger span::before,
.nav-wrap.scrolled .burger span::after {
  background: rgba(245, 247, 255, 0.9);
}

.burger span::before {
  top: -6px;
}

.burger span::after {
  top: 6px;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: absolute;
  top: 88px;
  right: 12px;
  width: min(320px, calc(100% - 24px));
  border-radius: 18px;
  background: rgba(15, 35, 66, 0.96);
  -webkit-backdrop-filter: blur(24px) saturate(170%);
  backdrop-filter: blur(24px) saturate(170%);
  border: 1px solid rgba(245, 247, 255, 0.18);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  padding: 10px;
}

.mobile-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 12px;
  border-radius: 14px;
  color: rgba(245, 247, 255, 0.95);
  font-weight: 600;
}

.mobile-menu a:hover {
  background: rgba(255, 255, 255, 0.10);
}

.mobile-cta-primary {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(245, 158, 11, 0.08));
  border-left: 3px solid var(--accent) !important;
  font-weight: 600;
  color: var(--accent) !important;
}

.mobile-link-subtle {
  opacity: 0.7;
}

/* ==========================================================================
   5. BUTTONS & CTAs
   ========================================================================== */

.cta {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 14px;
  border-radius: 12px;
  background: var(--accent);
  color: var(--navy-dark);
  font-weight: 700;
  letter-spacing: -0.01em;
  box-shadow: 0 14px 28px rgba(245, 158, 11, 0.25);
  transition: transform var(--duration-normal) var(--ease-out), box-shadow var(--duration-normal) var(--ease-out), filter var(--duration-normal) var(--ease-out);
  white-space: nowrap;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.cta:hover {
  transform: translateY(-1px);
  filter: saturate(1.08) brightness(1.05);
  box-shadow: 0 18px 34px rgba(245, 158, 11, 0.35);
}

.ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 42px;
  padding: 0 18px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(245, 247, 255, 0.20);
  color: var(--text-strong);
  font-weight: 600;
  font-size: 14px;
  transition: all var(--duration-normal) var(--ease-out);
  white-space: nowrap;
  cursor: pointer;
}

.ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: var(--border-teal-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.ghost::after {
  content: '>';
  font-size: 16px;
  transition: transform var(--duration-normal) var(--ease-out);
}

.ghost:hover::after {
  transform: translateX(3px);
}

/* ==========================================================================
   6. SECTIONS & SUBSECTIONS
   ========================================================================== */

/* Main Sections - Consistent gradient background for all non-hero sections */
.site-section {
  position: relative;
  padding: 0;
  margin: 0;
  background: linear-gradient(180deg, var(--navy-dark) 0%, var(--navy) 45%, var(--teal) 100%);
}

/* Clear visual separator between major sections */
.site-section + .site-section {
  border-top: 2px solid rgba(0, 122, 138, 0.6);
  box-shadow: 0 -1px 0 rgba(245, 247, 255, 0.1);
}

/* Subsections within a section */
.site-subsection {
  padding: 80px 0;
  position: relative;
}

.site-subsection:first-child {
  padding-top: 80px;
}

.site-subsection:last-child {
  padding-bottom: 80px;
}

/* Light divider between subsections within same section */
.site-subsection + .site-subsection::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(90%, 1000px);
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(0, 122, 138, 0.2) 20%,
    rgba(0, 122, 138, 0.2) 80%,
    transparent 100%
  );
}

/* Product section layouts */
.product-intro-content {
  margin-bottom: 32px;
}

.outcomes-section {
  width: 100%;
  padding: 0;
  margin-top: 48px;
}

.subsection-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 48px;
}

.subsection-two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.subsection-content-col {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.subsection-content-col .subsection-title {
  margin-top: 0;
  margin-bottom: 12px;
}

.subsection-content-col .subsection-sub {
  margin-top: 0;
  margin-bottom: 0;
}

.subsection-image-col {
  position: sticky;
  top: 120px;
  align-self: start;
}

.subsection-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-teal);
}

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

/* Dual image layout */
.subsection-image-dual {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0;
  padding: 0;
  overflow: visible;
}

.subsection-image-dual .subsection-image {
  flex-shrink: 0;
  max-width: 70%;
  width: auto;
  position: relative;
  z-index: 1;
  transition: transform 300ms ease, box-shadow 300ms ease, z-index 300ms ease;
}

.subsection-image-dual .subsection-image:first-child {
  margin-right: -25%;
  z-index: 2;
}

.subsection-image-dual .subsection-image:last-child {
  z-index: 1;
}

.subsection-image-dual .subsection-image:hover {
  transform: translateY(-4px);
  z-index: 10;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4), 0 8px 16px rgba(0, 0, 0, 0.25);
}

.clickable-image {
  cursor: pointer;
}

.clickable-image:hover {
  opacity: 0.9;
}

/* ==========================================================================
   6b. TRUST STRIP
   ========================================================================== */

.trust-strip {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.trust-items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  white-space: nowrap;
}

.trust-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* ==========================================================================
   7. HERO SECTION
   ========================================================================== */

.hero {
  min-height: 92vh;
  padding-top: 120px;
  display: flex;
  align-items: center;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--navy-dark) 0%, rgba(22, 45, 80, 0.88) 40%, rgba(0, 122, 138, 0.4) 75%, rgba(0, 122, 138, 0.12) 100%),
    var(--hero-image, url('/assets/img/hero-nutritionist.webp'));
  background-position: 0 0, var(--hero-pos-x, 70%) var(--hero-pos-y, 62%);
  background-size: auto, cover;
  filter: contrast(1.05) saturate(1.05);
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: -1px;
  background: radial-gradient(900px 450px at 20% 25%, rgba(0, 122, 138, 0.12), transparent 55%);
  z-index: -1;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: center;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(245, 247, 255, 0.82);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(245, 158, 11, 0.2);
}

.subhead {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(245, 247, 255, 0.88);
  max-width: 62ch;
  margin: 0 0 20px;
  font-weight: 400;
}

.subhead-highlight {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(245, 247, 255, 0.75);
  max-width: 62ch;
  margin: 0 0 20px;
  padding: 12px 16px;
  background: rgba(0, 122, 138, 0.15);
  border-left: 3px solid var(--teal);
  border-radius: 0 12px 12px 0;
}

.hero-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 16px;
  margin-bottom: 6px;
}

/* Hero sidebar */
.hero-side {
  border-radius: 22px;
  background: rgba(22, 45, 80, 0.60);
  border: 1px solid rgba(0, 122, 138, 0.25);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.30), inset 0 1px 0 rgba(0, 122, 138, 0.3);
  padding: 18px;
}

.side-title {
  font-family: Sora, Inter, system-ui;
  letter-spacing: -0.02em;
  font-weight: 700;
  font-size: 16px;
  margin: 0 0 10px;
  color: rgba(245, 247, 255, 0.92);
}

.side-item {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  border-radius: 16px;
  border: 1px solid var(--border-teal);
  background: var(--surface-card);
  margin-bottom: 10px;
  transition: all var(--duration-normal) var(--ease-out);
  overflow: hidden;
}

.side-item:hover {
  background: var(--surface-hover);
  border-color: var(--border-teal-hover);
}

.side-item-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: var(--header-gradient);
  border-bottom: 1px solid var(--border-teal);
}

.side-item-body {
  padding: 10px 12px 12px;
}

.side-icon {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  background: var(--icon-bg);
  border: 1px solid var(--icon-border);
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 122, 138, 0.15);
}

.side-icon svg {
  width: 18px;
  height: 18px;
  stroke: rgba(245, 247, 255, 0.85);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.side-item-header h4,
.side-item-header .side-item-title {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: rgba(245, 247, 255, 0.92);
  flex: 1;
  line-height: 1.3;
}

.side-item-body p {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  color: var(--muted);
}

/* ==========================================================================
   8. CARDS & GRIDS
   ========================================================================== */

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

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

.card {
  border-radius: var(--radius);
  padding: 18px;
  background: var(--surface-card);
  border: 1px solid var(--border-teal);
  -webkit-backdrop-filter: blur(14px) saturate(130%);
  backdrop-filter: blur(14px) saturate(130%);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.18);
  transition: transform var(--duration-normal) var(--ease-out), background var(--duration-normal) var(--ease-out), border-color var(--duration-normal) var(--ease-out), box-shadow var(--duration-normal) var(--ease-out);
}

.card:hover {
  transform: translateY(-3px);
  background: var(--surface-hover);
  border-color: var(--border-teal-hover);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.22);
}

.card-header-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: -18px -18px 16px -18px;
  padding: 14px 18px;
  background: var(--header-gradient);
  border-bottom: 1px solid var(--border-teal);
  border-radius: var(--radius) var(--radius) 0 0;
}

.card .mini {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--icon-bg);
  border: 1px solid var(--icon-border);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 122, 138, 0.15);
}

.card .mini svg {
  width: 18px;
  height: 18px;
  stroke: rgba(245, 247, 255, 0.85);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card h3,
.card h4 {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: rgba(245, 247, 255, 0.92);
  flex: 1;
  line-height: 1.3;
}

.card p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

/* Check icon */
.check {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: rgba(0, 122, 138, 0.2);
  border: 1px solid rgba(245, 247, 255, 0.10);
  flex: 0 0 auto;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.check svg {
  width: 10px;
  height: 10px;
  stroke: rgba(245, 247, 255, 0.85);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ==========================================================================
   9. STEPS COMPONENT
   ========================================================================== */

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

.step {
  border-radius: var(--radius);
  padding: 0;
  background: var(--surface-card);
  border: 1px solid var(--border-teal);
  min-height: 160px;
  overflow: hidden;
  transition: transform var(--duration-normal) var(--ease-out), background var(--duration-normal) var(--ease-out), border-color var(--duration-normal) var(--ease-out), box-shadow var(--duration-normal) var(--ease-out);
}

.step:hover {
  transform: translateY(-3px);
  background: var(--surface-hover);
  border-color: var(--border-teal-hover);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.22);
}

.step-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--header-gradient);
  border-bottom: 1px solid var(--border-teal);
}

.step-body {
  padding: 14px 18px 18px;
}

.step .num {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--icon-bg);
  border: 1px solid var(--icon-border);
  font-weight: 900;
  color: var(--text-strong);
  font-size: 14px;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 122, 138, 0.15);
}

.step h3,
.step h4 {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: rgba(245, 247, 255, 0.92);
  flex: 1;
  line-height: 1.3;
}

.step p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
}

/* ==========================================================================
   10. PRICING SECTION
   ========================================================================== */

/* Pricing Toggle */
.pricing-toggle-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 32px 0 48px;
  flex-wrap: wrap;
}

.pricing-toggle {
  display: flex;
  position: relative;
  background: rgba(0, 122, 138, 0.12);
  border-radius: 12px;
  padding: 4px;
  border: 1px solid rgba(0, 122, 138, 0.25);
}

.toggle-btn {
  position: relative;
  z-index: 2;
  padding: 10px 24px;
  border: none;
  background: transparent;
  color: rgba(245, 247, 255, 0.7);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border-radius: 10px;
  transition: color 200ms ease;
}

.toggle-btn:hover {
  color: rgba(245, 247, 255, 0.9);
}

.toggle-btn.active {
  color: #fff;
}

.toggle-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.toggle-indicator {
  position: absolute;
  top: 4px;
  left: 4px;
  width: calc(50% - 4px);
  height: calc(100% - 8px);
  background: linear-gradient(135deg, rgba(0, 122, 138, 0.6), rgba(0, 122, 138, 0.4));
  border-radius: 10px;
  transition: transform 200ms ease;
  z-index: 1;
  box-shadow: 0 2px 8px rgba(0, 122, 138, 0.3);
}

.pricing-toggle[data-period="year"] .toggle-indicator {
  transform: translateX(100%);
}

.savings-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(245, 158, 11, 0.1));
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 20px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  opacity: 0.5;
  transition: opacity 200ms ease;
}

.pricing-toggle[data-period="year"] ~ .savings-badge {
  opacity: 1;
}

/* Pricing Cards */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  scroll-margin-top: 100px;
  margin-bottom: 48px;
}

.pricing-card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  background: var(--surface-card);
  border: 1.5px solid var(--border-teal);
  display: flex;
  flex-direction: column;
  transition: transform var(--duration-normal) var(--ease-out), border-color var(--duration-normal) var(--ease-out), box-shadow var(--duration-normal) var(--ease-out);
}

.pricing-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-teal-hover);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.pricing-card.recommended {
  background: linear-gradient(180deg, rgba(0, 122, 138, 0.15), rgba(0, 122, 138, 0.08));
  border-color: rgba(0, 122, 138, 0.4);
  box-shadow: 0 12px 32px rgba(0, 122, 138, 0.2);
}

.pricing-card.recommended:hover {
  border-color: rgba(0, 122, 138, 0.6);
  box-shadow: 0 24px 48px rgba(0, 122, 138, 0.3);
}

.recommended-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 16px;
  background: linear-gradient(135deg, var(--teal), rgba(0, 122, 138, 0.8));
  border-radius: 20px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0, 122, 138, 0.4);
}

.card-top {
  text-align: center;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0, 122, 138, 0.15);
  margin-bottom: 24px;
}

.plan-name {
  margin: 0 0 8px;
  font-size: 24px;
  font-weight: 800;
  color: rgba(245, 247, 255, 0.98);
  font-family: Sora, Inter, system-ui;
  letter-spacing: -0.02em;
}

.plan-motto {
  font-size: 0.85em;
  font-weight: 600;
  color: var(--teal, #007A8A);
  letter-spacing: 0.02em;
}

.plan-tagline {
  margin: 0 0 20px;
  font-size: 14px;
  color: rgba(245, 247, 255, 0.6);
}

.plan-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 12px;
}

.price-amount {
  font-size: 42px;
  font-weight: 800;
  color: rgba(245, 247, 255, 0.98);
  font-family: Sora, Inter, system-ui;
  letter-spacing: -0.03em;
  transition: opacity 150ms ease;
}

.price-period {
  font-size: 16px;
  color: rgba(245, 247, 255, 0.6);
  font-weight: 500;
}

.plan-client-limit {
  margin: 0;
  font-size: 13px;
  color: rgba(245, 247, 255, 0.7);
  font-weight: 500;
}

.plan-addon {
  margin: 8px 0 0;
  font-size: 12px;
  color: rgba(245, 247, 255, 0.5);
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  flex: 1;
}

.plan-features li {
  position: relative;
  padding: 8px 0 8px 24px;
  font-size: 14px;
  color: rgba(245, 247, 255, 0.8);
  line-height: 1.5;
}

.plan-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 12px;
  height: 6px;
  border-left: 2px solid var(--teal);
  border-bottom: 2px solid var(--teal);
  transform: rotate(-45deg);
}

.plan-features li strong {
  color: rgba(245, 247, 255, 0.95);
}

.plan-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 24px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(245, 247, 255, 0.20);
  color: rgba(245, 247, 255, 0.95);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: all 200ms ease;
  cursor: pointer;
}

.plan-cta:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(245, 247, 255, 0.30);
  transform: translateY(-2px);
}

.plan-footnote {
  margin: 12px 0 20px 0;
  font-size: 12px;
  color: rgba(245, 247, 255, 0.6);
  font-style: italic;
}

.pricing-card.recommended .plan-cta.cta {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--navy-dark);
  box-shadow: 0 8px 20px rgba(245, 158, 11, 0.25);
}

.pricing-card.recommended .plan-cta.cta:hover {
  filter: saturate(1.08) brightness(1.05);
  box-shadow: 0 12px 28px rgba(245, 158, 11, 0.35);
}

.pricing-helper {
  text-align: center;
  margin-top: 24px;
  font-size: 15px;
  color: rgba(245, 247, 255, 0.7);
}

.pricing-helper a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 500;
  transition: color 200ms ease;
}

.pricing-helper a:hover {
  color: #fbbf24;
}

/* Pricing Table */
.pricing-table-wrap {
  margin-top: 48px;
  overflow-x: auto;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(0, 122, 138, 0.08), rgba(22, 45, 80, 0.12));
  border: 1.5px solid rgba(0, 122, 138, 0.25);
  padding: 0;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(0, 122, 138, 0.2);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  backdrop-filter: blur(20px) saturate(150%);
}

.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 14px;
}

.pricing-table thead th {
  background: linear-gradient(180deg, rgba(0, 122, 138, 0.18), rgba(0, 122, 138, 0.08));
  border-bottom: 2px solid rgba(0, 122, 138, 0.35);
  padding: 32px 24px;
  text-align: center;
  font-weight: 600;
  vertical-align: top;
}

.pricing-table thead th.highlight {
  background: linear-gradient(180deg, rgba(0, 122, 138, 0.35), rgba(0, 122, 138, 0.20));
  border-left: 2px solid rgba(0, 122, 138, 0.5);
  border-right: 2px solid rgba(0, 122, 138, 0.5);
  position: relative;
  box-shadow: 0 0 30px rgba(0, 122, 138, 0.15);
}

.pricing-table thead th.highlight::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -2px;
  right: -2px;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(0, 122, 138, 0.6), transparent);
  border-radius: 24px 24px 0 0;
}

.pricing-table thead th:first-child {
  border-top-left-radius: 24px;
  text-align: left;
  padding-left: 32px;
  background: linear-gradient(135deg, rgba(22, 45, 80, 0.25), rgba(22, 45, 80, 0.15));
}

.pricing-table thead th:last-child {
  border-top-right-radius: 24px;
}

.feature-col {
  width: 45%;
  min-width: 220px;
}

.plan-col {
  width: 18.33%;
  min-width: 160px;
}

.plan-header h3 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 800;
  color: rgba(245, 247, 255, 0.98);
  font-family: Sora, Inter, system-ui;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.pricing-table .plan-header .plan-motto {
  font-size: 0.72em;
  font-weight: 600;
}

.plan-desc {
  margin: 0;
  font-size: 12px;
  color: rgba(245, 247, 255, 0.70);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-table tbody tr {
  border-bottom: 1px solid rgba(0, 122, 138, 0.12);
  transition: all 200ms ease;
}

.pricing-table tbody tr:hover {
  background: rgba(0, 122, 138, 0.06);
}

.pricing-table tbody tr:last-child {
  border-bottom: none;
}

.pricing-table tbody tr:last-child td:first-child {
  border-bottom-left-radius: 24px;
}

.pricing-table tbody tr:last-child td:last-child {
  border-bottom-right-radius: 24px;
}

.pricing-table .feature-name {
  padding: 12px 12px;
  text-align: left;
  color: rgba(245, 247, 255, 0.92);
  font-weight: 600;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.02);
  border-right: 1px solid rgba(0, 122, 138, 0.10);
}

.plan-feature {
  padding: 22px 24px;
  text-align: center;
  color: rgba(245, 247, 255, 0.75);
  font-size: 14px;
  background: rgba(255, 255, 255, 0.01);
  vertical-align: middle;
}

.pricing-table tbody tr:nth-child(odd) .plan-feature {
  background: rgba(0, 122, 138, 0.03);
}

.pricing-table tbody tr td.plan-feature.highlight,
.pricing-table tbody tr:nth-child(odd) td.plan-feature.highlight {
  background: rgba(0, 122, 138, 0.08);
}

.tick {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 122, 138, 0.4), rgba(0, 122, 138, 0.25));
  color: #fff;
  border: 2px solid rgba(0, 122, 138, 0.6);
  box-shadow: 0 4px 12px rgba(0, 122, 138, 0.25), inset 0 1px 2px rgba(255, 255, 255, 0.2);
}

.tick svg {
  width: 14px;
  height: 14px;
  stroke: #fff;
}

.dash {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: rgba(245, 247, 255, 0.3);
}

.dash svg {
  width: 14px;
  height: 14px;
  stroke: rgba(245, 247, 255, 0.3);
}

.feature-group-header {
  background: linear-gradient(135deg, rgba(22, 45, 80, 0.35), rgba(22, 45, 80, 0.20)) !important;
  border-top: 1px solid rgba(0, 122, 138, 0.25) !important;
  cursor: pointer;
}

.feature-group-header:hover {
  background: linear-gradient(135deg, rgba(22, 45, 80, 0.42), rgba(22, 45, 80, 0.28)) !important;
}

.feature-group-header td {
  padding: 16px 32px !important;
  text-align: left !important;
}

.feature-group-header h4 {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: rgba(0, 122, 138, 0.95);
}

/* Feature Group Accordion Toggle */
.feature-group-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-align: left;
  transition: all 200ms ease;
  /* Ensure icon uses white as currentColor */
  color: rgba(245, 247, 255, 0.9);
}

.feature-group-toggle:hover h4 {
  color: rgba(0, 122, 138, 1);
}

.feature-group-toggle .toggle-icon {
  flex-shrink: 0;
  stroke: rgba(245, 247, 255, 0.9) !important;
  fill: none;
  transition: transform 200ms ease;
  color: rgba(245, 247, 255, 0.9);
}

.feature-group-toggle .toggle-icon polyline {
  stroke: rgba(245, 247, 255, 0.9) !important;
}

.feature-group-header[data-expanded="false"] .toggle-icon {
  transform: rotate(-90deg);
}

.feature-group-header[data-expanded="true"] .toggle-icon {
  transform: rotate(0deg);
}

/* Feature rows (visibility controlled via JS) */
.feature-row[data-group] {
  transition: opacity 200ms ease;
}

.planned-badge {
  display: inline-block;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255, 193, 7, 0.95);
  background: rgba(255, 193, 7, 0.15);
  border: 1px solid rgba(255, 193, 7, 0.35);
  border-radius: 12px;
}

.premium-tag {
  display: inline-block;
  margin-left: 6px;
  font-size: 11px;
  font-weight: 600;
  color: var(--teal, #007A8A);
  white-space: nowrap;
}

.coming-soon-strip {
  margin-top: 12px;
  font-size: 13px;
  color: rgba(245, 247, 255, 0.75);
}

.highlight {
  border-color: rgba(0, 122, 138, 0.35) !important;
}

/* Pricing FAQ */
.pricing-faq {
  display: grid;
  gap: 12px;
  max-width: 800px;
  margin: 32px auto 0;
}

.faq-item {
  border-radius: var(--radius-sm);
  background: var(--surface-card);
  border: 1px solid var(--border-teal);
  overflow: hidden;
  transition: border-color var(--duration-normal) var(--ease-out);
}

.faq-item:hover {
  border-color: var(--border-teal-hover);
}

.faq-item[open] {
  background: var(--surface-hover);
  border-color: var(--border-teal-hover);
}

.faq-question {
  padding: 18px 24px;
  font-size: 15px;
  font-weight: 600;
  color: rgba(245, 247, 255, 0.95);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: '+';
  font-size: 20px;
  font-weight: 400;
  color: rgba(245, 247, 255, 0.5);
  transition: transform 200ms ease;
}

.faq-item[open] .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 24px 18px;
  margin: 0;
  font-size: 14px;
  color: rgba(245, 247, 255, 0.75);
  line-height: 1.6;
}

/* FAQ Table for extra client batches */
.faq-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
  font-size: 13px;
}

.faq-table th,
.faq-table td {
  padding: 8px 10px;
  border-bottom: 1px solid rgba(0, 122, 138, 0.25);
  text-align: left;
}

.faq-table th {
  font-weight: 600;
  color: rgba(245, 247, 255, 0.9);
  background: rgba(0, 122, 138, 0.18);
}

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

/* ==========================================================================
   10a. SOCIAL PROOF SECTION
   ========================================================================== */

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.proof-stat {
  text-align: center;
  padding: 32px 24px;
}

.proof-stat-number {
  font-family: Sora, Inter, system-ui;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--accent);
  margin-bottom: 4px;
}

.proof-stat-label {
  font-size: 16px;
  font-weight: 600;
  color: rgba(245, 247, 255, 0.96);
  margin-bottom: 8px;
}

.proof-stat-detail {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

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

.proof-quote {
  padding: 28px;
}

.proof-quote blockquote {
  margin: 0 0 20px 0;
  padding: 0;
}

.proof-quote blockquote p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(245, 247, 255, 0.88);
  font-style: italic;
  margin: 0;
}

.proof-quote blockquote::before {
  content: '\201C';
  display: block;
  font-family: Georgia, serif;
  font-size: 48px;
  line-height: 1;
  color: var(--teal);
  opacity: 0.5;
  margin-bottom: 8px;
}

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

.proof-avatar {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 122, 138, 0.4), rgba(0, 122, 138, 0.25));
  border: 2px solid rgba(0, 122, 138, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
  color: rgba(245, 247, 255, 0.9);
}

.proof-name {
  font-size: 14px;
  font-weight: 600;
  color: rgba(245, 247, 255, 0.92);
}

.proof-role {
  font-size: 13px;
  color: var(--muted);
}

/* ==========================================================================
   10b. WHAT'S INCLUDED SECTION
   ========================================================================== */

.included-header {
  margin-top: 64px;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.included-card {
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
}

.included-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--header-gradient);
  border-bottom: 1px solid var(--border-teal);
}

.included-card-header h4 {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: rgba(245, 247, 255, 0.96);
}

.included-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: var(--radius-sm);
  background: var(--icon-bg);
  border: 1px solid var(--icon-border);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 122, 138, 0.15);
}

.included-icon svg {
  width: 18px;
  height: 18px;
  stroke: rgba(245, 247, 255, 0.85);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.included-list {
  list-style: none;
  padding: 16px 18px;
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(245, 247, 255, 0.85);
}

.included-list li {
  padding: 6px 0 6px 24px;
  position: relative;
}

.included-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: rgba(0, 122, 138, 0.30);
  border-radius: 50%;
  border: 1px solid rgba(0, 122, 138, 0.45);
}

.included-list li::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 4px;
  height: 8px;
  border-bottom: 2px solid rgba(245, 247, 255, 0.85);
  border-right: 2px solid rgba(245, 247, 255, 0.85);
}

/* ==========================================================================
   11. DEMO SECTION
   ========================================================================== */

.demo-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  margin-top: 40px;
  align-items: start;
}

.demo-form-card,
.demo-info-card {
  border-radius: var(--radius-lg);
  padding: 32px;
  background: var(--surface-card);
  border: 1px solid var(--border-teal);
}

.demo-form-card h3,
.demo-info-card h3 {
  margin: 0 0 20px;
  font-size: 20px;
  font-weight: 700;
  color: rgba(245, 247, 255, 0.95);
  font-family: Sora, Inter, system-ui;
}

.demo-info-card p {
  margin: 0 0 16px;
  color: rgba(245, 247, 255, 0.75);
  font-size: 14px;
}

.demo-checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.demo-check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(245, 247, 255, 0.88);
}

.demo-check-item .check {
  width: 24px;
  height: 24px;
  min-width: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0, 122, 138, 0.20);
  border: 1px solid rgba(0, 122, 138, 0.35);
}

.demo-check-item .check svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: var(--teal);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.form-note {
  margin-top: 16px;
  font-size: 13px;
  color: rgba(245, 247, 255, 0.55);
  text-align: center;
}

/* ==========================================================================
   12. CONTACT SECTION
   ========================================================================== */

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

.contact-card {
  border-radius: var(--radius);
  padding: 28px;
  background: var(--surface-card);
  border: 1px solid var(--border-teal);
  text-align: center;
  transition: transform var(--duration-normal) var(--ease-out), background var(--duration-normal) var(--ease-out), border-color var(--duration-normal) var(--ease-out), box-shadow var(--duration-normal) var(--ease-out);
}

.contact-card:hover {
  transform: translateY(-3px);
  background: var(--surface-hover);
  border-color: var(--border-teal-hover);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.22);
}

.contact-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(0, 122, 138, 0.25);
  border: 1px solid rgba(0, 122, 138, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 4px 12px rgba(0, 122, 138, 0.15);
}

.contact-icon svg {
  width: 28px;
  height: 28px;
  stroke: rgba(245, 247, 255, 0.9);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-card:nth-child(2) .contact-icon svg {
  stroke: none;
  fill: rgba(245, 247, 255, 0.9);
  width: 26px;
  height: 26px;
}

.contact-card h4 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  color: rgba(245, 247, 255, 0.95);
  font-family: Sora, Inter, system-ui;
}

.contact-card p {
  margin: 0 0 12px;
  font-size: 14px;
  color: rgba(245, 247, 255, 0.65);
  line-height: 1.5;
}

.contact-link-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.contact-link {
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  transition: color 200ms ease;
}

.contact-link:hover {
  color: rgba(245, 158, 11, 0.85);
  text-decoration: underline;
}

.contact-copy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: none;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(245, 247, 255, 0.85);
  cursor: pointer;
  transition: background 200ms ease, color 200ms ease;
  flex-shrink: 0;
}

.contact-copy-btn:hover {
  background: rgba(255, 255, 255, 0.14);
  color: var(--accent);
}

.contact-copy-btn:active {
  background: rgba(255, 255, 255, 0.2);
}

.contact-copy-btn.copied {
  color: var(--success);
}

.contact-copy-icon {
  stroke: currentColor;
  fill: none;
}

/* ==========================================================================
   13. FORMS
   ========================================================================== */

.form {
  display: grid;
  gap: 10px;
}

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

.input,
.textarea {
  width: 100%;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 0 12px;
  font: inherit;
  outline: none;
  transition: border-color var(--duration-normal) var(--ease-out), background var(--duration-normal) var(--ease-out);
}

.input:focus,
.textarea:focus {
  border-color: var(--teal);
  background: rgba(255, 255, 255, 0.08);
}

.input::placeholder,
.textarea::placeholder {
  color: rgba(245, 247, 255, 0.45);
}

.input {
  height: 44px;
}

.textarea {
  padding: 10px 12px;
  resize: vertical;
}

/* ==========================================================================
   14. FOOTER
   ========================================================================== */

footer {
  padding: 48px 0 32px;
  color: rgba(245, 247, 255, 0.72);
  border-top: 1px solid rgba(0, 122, 138, 0.25);
  font-size: 13px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

.footer-col nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col nav a {
  color: rgba(245, 247, 255, 0.72);
  transition: color 0.15s ease;
}

.footer-col nav a:hover {
  color: rgba(245, 247, 255, 1);
}

.footer-heading {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(245, 247, 255, 0.96);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: rgba(245, 247, 255, 0.96);
}

.footer-tagline {
  margin: 10px 0 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: rgba(245, 247, 255, 0.5);
}

/* (Legacy footer classes removed — footer now uses .footer-grid layout) */

/* Legal policy pages */
.legal-main {
  padding: 104px 0 56px;
}

.legal-card {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(22px, 4vw, 40px);
  border-radius: 20px;
  border: 1px solid rgba(245, 247, 255, 0.2);
  background: rgba(15, 35, 66, 0.72);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
}

.legal-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.legal-top-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.legal-nav-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(245, 247, 255, 0.32);
  background: rgba(245, 247, 255, 0.08);
  color: rgba(245, 247, 255, 0.95);
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease,
    transform 0.2s ease;
}

.legal-nav-chip:hover {
  background: rgba(245, 247, 255, 0.16);
  border-color: rgba(245, 247, 255, 0.56);
  color: rgba(245, 247, 255, 1);
  transform: translateY(-1px);
}

.legal-nav-chip:focus-visible {
  outline: 2px solid rgba(245, 247, 255, 0.75);
  outline-offset: 2px;
}

.legal-updated {
  margin: 0 0 20px;
  color: rgba(245, 247, 255, 0.7);
  font-size: 14px;
}

.legal-content h1 {
  font-size: clamp(28px, 4vw, 40px);
  margin: 0 0 8px;
}

.legal-content h2 {
  font-family: Sora, Inter, system-ui;
  font-size: clamp(20px, 2.4vw, 28px);
  letter-spacing: -0.02em;
  margin: 26px 0 10px;
  color: rgba(245, 247, 255, 0.98);
}

.legal-content h3 {
  font-family: Sora, Inter, system-ui;
  font-size: clamp(16px, 2vw, 20px);
  margin: 18px 0 8px;
  color: rgba(245, 247, 255, 0.95);
}

.legal-content p,
.legal-content li {
  color: rgba(245, 247, 255, 0.88);
  line-height: 1.7;
}

.legal-content ul {
  margin: 0 0 14px;
  padding-left: 22px;
}

.legal-content p {
  margin: 0 0 14px;
}

/* ==========================================================================
   15. UTILITIES & ANIMATIONS
   ========================================================================== */

/* Image Lightbox */
.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 300ms ease, visibility 300ms ease;
  pointer-events: none;
}

.image-lightbox.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(8px);
}

.lightbox-content {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 90vh;
  width: auto;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.5);
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  border: none;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: rgba(245, 247, 255, 0.95);
  font-size: 32px;
  line-height: 1;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 200ms ease, transform 200ms ease;
  z-index: 2;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.1);
}

.lightbox-close:active {
  transform: scale(0.95);
}

/* (Start Plan Modal — removed; no HTML uses this component) */

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .card,
  .step,
  .pricing-card,
  .contact-card,
  .faq-item,
  .cta,
  .ghost,
  .bwp-card,
  button,
  .btn,
  .button {
    transition: none !important;
  }
}

/* ==========================================================================
   16. RESPONSIVE BREAKPOINTS
   ========================================================================== */

/* Tablet */
@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .pricing-cards {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .pricing-card.recommended {
    order: -1;
  }

  .proof-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .proof-quotes {
    grid-template-columns: 1fr;
  }

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

/* Mobile - Sections */
@media (max-width: 860px) {
  .site-subsection {
    padding: 60px 0;
  }

  .site-subsection:first-child {
    padding-top: 60px;
  }

  .site-subsection:last-child {
    padding-bottom: 60px;
  }

  .product-intro-content {
    margin-bottom: 24px;
  }

  .outcomes-section {
    margin-top: 32px;
  }

  .subsection-header {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 32px;
  }

  .subsection-two-column {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .subsection-image-col {
    position: static;
    order: -1;
  }

  .grid-2x2 {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .subsection-image-dual {
    flex-direction: column;
    gap: 16px;
  }

  .subsection-image-dual .subsection-image:first-child {
    margin-right: 0;
    margin-bottom: -12%;
  }

  .subsection-image-dual .subsection-image {
    width: 100%;
    max-width: 70%;
  }

  .lightbox-content {
    padding: 20px;
    max-width: 95vw;
  }

  .lightbox-close {
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    font-size: 28px;
  }

  .demo-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .demo-form-card,
  .demo-info-card {
    padding: 24px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contact-card {
    padding: 24px;
  }

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

  /* Pricing Table Mobile */
  .pricing-table-wrap {
    overflow-x: scroll;
    border-radius: 20px;
    margin-left: -16px;
    margin-right: -16px;
    border-left: none;
    border-right: none;
  }

  .pricing-table {
    min-width: 650px;
  }

  .feature-col {
    min-width: 200px;
  }

  .plan-col {
    min-width: 150px;
  }

  .plan-header h3 {
    font-size: 17px;
  }

  .pricing-table .plan-header .plan-motto {
    font-size: 0.68em;
  }

  .plan-desc {
    font-size: 11px;
  }

  .pricing-table .feature-name {
    padding: 18px 20px;
    font-size: 13px;
  }

  .plan-feature {
    padding: 18px 16px;
  }

  .tick {
    width: 24px;
    height: 24px;
    font-size: 16px;
  }

  .pricing-table thead th {
    padding: 24px 16px;
  }

  .pricing-table thead th:first-child {
    padding-left: 20px;
  }

  .feature-group-header td {
    padding: 14px 20px !important;
  }

  .feature-group-header h4 {
    font-size: 12px;
    letter-spacing: 1px;
  }

  .planned-badge {
    padding: 3px 8px;
    font-size: 10px;
  }
}

/* Mobile - Navigation */
@media (max-width: 760px) {
  .nav-links {
    display: none !important;
  }

  .nav-link-secondary {
    display: none !important;
  }

  .burger {
    display: flex !important;
    flex-shrink: 0;
  }

  .nav {
    height: 72px;
    flex-wrap: nowrap !important;
    justify-content: space-between;
    gap: 8px;
    padding: 0 12px;
  }

  .nav .brand {
    flex-shrink: 0;
    min-width: 0;
    font-size: 15px;
  }

  .nav .brand-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 120px;
  }

  .nav-actions {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 8px;
    align-items: center;
    flex-shrink: 0;
  }

  .nav-actions .cta {
    flex-shrink: 0;
    padding: 0 10px;
    font-size: 13px;
    height: 38px;
  }

  .nav-actions .burger {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
  }

  .hero {
    padding-top: 116px;
  }

  .pricing-toggle-wrap {
    flex-direction: column;
    gap: 12px;
  }

  .toggle-btn {
    padding: 10px 20px;
    font-size: 13px;
  }

  .price-amount {
    font-size: 36px;
  }

  .pricing-card {
    padding: 28px 20px;
  }

  .legal-main {
    padding-top: 92px;
  }

  .legal-top {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .faq-table th,
  .faq-table td {
    padding: 6px 8px;
    font-size: 12px;
  }
}

/* ==========================================================================
   STICKY MOBILE CTA BAR
   ========================================================================== */

.mobile-sticky-cta {
  display: none;
}

@media (max-width: 860px) {
  .mobile-sticky-cta {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 12px 16px;
    gap: 10px;
    background: rgba(15, 35, 66, 0.95);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
    backdrop-filter: blur(16px) saturate(140%);
    border-top: 1px solid rgba(0, 122, 138, 0.30);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform var(--duration-slow) var(--ease-out);
  }

  .mobile-sticky-cta.is-visible {
    transform: translateY(0);
  }

  .mobile-sticky-cta .cta,
  .mobile-sticky-cta .ghost {
    flex: 1;
    text-align: center;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 12px;
  }

  /* Add bottom padding to body so content isn't hidden behind sticky bar */
  body {
    padding-bottom: 72px;
  }
}

/* ===== No-JS fallback ===== */
.no-js .reveal {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

/* ===== Scroll reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity var(--duration-reveal) var(--ease-out), transform var(--duration-reveal) var(--ease-out);
  transition-delay: var(--d, 0ms);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Micro-interactions ===== */
.bwp-card {
  transition: transform var(--duration-normal) var(--ease-out), box-shadow var(--duration-normal) var(--ease-out);
}
.bwp-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.10);
}
button, .btn, .button {
  transition: transform var(--duration-fast) var(--ease-out);
}
button:active, .btn:active, .button:active {
  transform: translateY(1px);
}

/* (Reduced motion rules consolidated in section 15 above) */
