/* ═══════════════════════════════════════════════════════════════
   Tula AI WordPress Theme — main.css
   Global design tokens, shared components, layout utilities.
   Per-page styles are scoped by body.page-template-{slug} class.
   Language switching handled by Polylang (URL-based, no CSS needed).
   ═══════════════════════════════════════════════════════════════ */

/* ─── Polylang language visibility (Polylang sets html[lang]) ── */
html[lang^="en"] [data-lang="sr"] { display: none !important; }
html[lang^="sr"] [data-lang="en"] { display: none !important; }
/* Fallback: if no html[lang] set, show EN by default */
html:not([lang]) [data-lang="sr"] { display: none; }

/* Cycling items use data-lang-item — same visibility rules */
html[lang^="en"] [data-lang-item="sr"] { display: none !important; }
html[lang^="sr"] [data-lang-item="en"] { display: none !important; }
html:not([lang]) [data-lang-item="sr"] { display: none; }

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

:root {
  --bg:        #06090e;
  --bg-card:   #130d1e;
  --bg-card2:  #180d28;
  --border:    rgba(156,67,254,0.12);
  --border-2:  #220d3a;
  --gold:      #9C43FE;
  --gold-dim:  #7B2FD4;
  --cream:     #EEF2F8;
  --muted:     #8B6BAE;
  --accent:    #9C43FE;
  --accent2:   #7B2FD4;
  --white:     #FFFFFF;
  --serif:     'Instrument Serif', Georgia, serif;
  --sans:      'Inter Tight', system-ui, sans-serif;
  --radius:    14px;
  --radius-lg: 20px;
  /* DRY tokens for rgba() use in page styles */
  --accent-raw:     156, 67, 254;
  --accent-dim-raw: 123, 47, 212;
  --bg-raw:         6, 9, 14;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Serif italic emphasis */
em {
  font-family: var(--serif); font-style: italic;
  font-weight: 400; color: var(--gold);
}

/* ─── Noise texture overlay ─────────────────────────────────── */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

/* ─── Ambient glow blobs ────────────────────────────────────── */
.ambient {
  position: fixed; pointer-events: none; z-index: 0;
  border-radius: 50%; filter: blur(120px); opacity: 0.18;
}
.ambient-1 { width: 700px; height: 700px; background: #3D1070; top: -250px; left: -200px; opacity: 0.22; }
.ambient-2 { width: 500px; height: 500px; background: #9C43FE; top: 50%; right: -220px; opacity: 0.07; }
.ambient-3 { width: 350px; height: 350px; background: #200844; bottom: 15%; left: 25%; opacity: 0.15; }

/* ─── Nav (glassmorphic pill) ───────────────────────────────── */
nav#main-nav {
  position: fixed; top: 16px; left: 50%; transform: translateX(-50%);
  width: min(900px, calc(100% - 32px));
  z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 24px;
  background: rgba(19,13,30,0.80);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid var(--border);
  border-radius: 100px;
  gap: 24px;
  overflow: visible;
}

.nav-logo {
  font-family: var(--sans);
  font-size: 1.1rem; font-weight: 700;
  color: var(--cream); text-decoration: none;
  letter-spacing: -0.02em; white-space: nowrap;
}
.nav-logo span { color: var(--gold); }

.nav-links {
  display: flex; gap: 28px; list-style: none;
  flex: 1; justify-content: center; align-items: center;
}
.nav-links a {
  color: var(--muted); text-decoration: none;
  font-size: 0.825rem; font-weight: 500; letter-spacing: 0.03em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--cream); }

/* Dropdown */
.nav-has-dropdown { position: relative; display: flex; align-items: center; }
.nav-dropdown-trigger {
  color: var(--muted);
  font-size: 0.825rem; font-weight: 500; letter-spacing: 0.03em;
  cursor: default; user-select: none;
  display: inline-flex; align-items: center; gap: 4px;
  transition: color 0.2s;
  line-height: 1;
}
.nav-has-dropdown:hover .nav-dropdown-trigger { color: var(--cream); }
.nav-dropdown-trigger::after { content: '▾'; font-size: 0.6rem; margin-top: 1px; }
.nav-dropdown {
  /* Initial state — JS moves this to body and positions it via fixed */
  position: absolute; top: calc(100% + 8px); left: 50%;
  transform: translateX(-50%);
  background: rgba(19,10,34,0.97);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 8px;
  list-style: none;
  min-width: 200px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.18s;
  z-index: 9999;
}
.nav-dropdown::before { display: none; }
/* CSS-only hover fallback — works even without JS */
nav#main-nav .nav-has-dropdown:hover > .nav-dropdown,
nav#main-nav .nav-has-dropdown:focus-within > .nav-dropdown {
  opacity: 1 !important;
  pointer-events: auto !important;
  transform: translateX(-50%) !important;
}
.nav-dropdown li a {
  display: block;
  padding: 9px 14px;
  border-radius: 8px;
  font-size: 0.8rem; font-weight: 500;
  color: var(--muted); text-decoration: none;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.nav-dropdown li a:hover { background: rgba(255,255,255,0.06); color: var(--cream); }

.nav-right { display: flex; align-items: center; gap: 12px; white-space: nowrap; }

/* Polylang language switcher in nav */
.pll-parent-menu-item > a {
  appearance: none;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border) !important;
  border-radius: 100px;
  font-family: var(--sans); font-size: 0.75rem; font-weight: 600;
  color: var(--cream) !important; padding: 5px 12px;
  text-decoration: none !important;
  transition: border-color 0.2s, background 0.2s;
  letter-spacing: 0.04em;
}
.pll-parent-menu-item > a:hover { border-color: rgba(255,255,255,0.18) !important; background: rgba(255,255,255,0.09); }

/* Custom #nav-lang-switcher injected by functions.php */
.nav-lang-switcher {
  display: flex; gap: 4px; align-items: center;
}
.nav-lang-switcher a {
  font-family: var(--sans); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.06em; color: var(--muted);
  text-decoration: none;
  padding: 5px 10px; border-radius: 100px;
  border: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.nav-lang-switcher a:hover {
  color: var(--cream);
  border-color: var(--border);
  background: rgba(255,255,255,0.05);
}
.nav-lang-switcher a.lang-active {
  color: var(--cream);
  border-color: var(--border);
  background: rgba(156,67,254,0.12);
}

/* Burger button */
.burger {
  display: none;
  background: none; border: none; cursor: pointer;
  padding: 6px; color: var(--cream);
  width: 36px; height: 36px;
  align-items: center; justify-content: center;
  border-radius: 8px;
  transition: background 0.2s;
  flex-shrink: 0;
  position: relative;
}
.burger:hover { background: rgba(255,255,255,0.06); }
.burger svg { display: block; transition: opacity 0.15s, transform 0.2s; }
.burger .icon-burger { opacity: 1; transform: scale(1); }
.burger .icon-x     { opacity: 0; transform: scale(0.7); position: absolute; }
.burger.open .icon-burger { opacity: 0; transform: scale(0.7); }
.burger.open .icon-x      { opacity: 1; transform: scale(1); }

/* Mobile nav menu */
.nav-mobile-menu {
  display: none;
  width: 100%;
  border-top: 1px solid var(--border);
  padding: 16px 0 4px;
  flex-direction: column; gap: 4px;
}
.nav-mobile-menu a {
  color: var(--muted); text-decoration: none;
  font-size: 0.9rem; font-weight: 500; letter-spacing: 0.02em;
  padding: 10px 4px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
  display: block;
}
.nav-mobile-menu a:hover { color: var(--cream); background: rgba(255,255,255,0.04); padding-left: 8px; }
.nav-mobile-group-label {
  font-size: 0.62rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(180,168,140,0.4);
  padding: 10px 4px 4px; cursor: default; user-select: none;
}
.nav-mobile-menu a.indented { padding-left: 12px; font-size: 0.85rem; }
.nav-mobile-menu a.indented:hover { padding-left: 18px; }

/* ─── Shared layout ─────────────────────────────────────────── */
section { position: relative; z-index: 1; margin: 0; margin-block-start: 0 !important; margin-block-end: 0 !important; }

/* WP block wrapper — zero out any block-gap margin WP injects */
.wp-block-html { margin-top: 0 !important; margin-bottom: 0 !important; margin-block-start: 0 !important; margin-block-end: 0 !important; }

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

.wp-site-blocks {
  max-width: none;
  padding: 0;
}

/* Ensure FSE header template-part wrapper never clips the nav dropdown */
.wp-block-template-part,
header.wp-block-template-part {
  overflow: visible !important;
  position: relative;
  z-index: 200;
}

.eyebrow {
  display: inline-block;
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.18em; color: var(--gold);
  text-transform: uppercase; margin-bottom: 20px;
}

.section-label {
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.2em; color: var(--muted);
  text-transform: uppercase; margin-bottom: 16px;
  display: block;
}

/* ─── Divider ───────────────────────────────────────────────── */
/* Use !important to beat WP block library's hr normalization */
.divider {
  border: none !important;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 0 !important;
  padding: 0;
}

/* ─── Buttons ───────────────────────────────────────────────── */
.btn-nav {
  background: var(--gold); color: #FFFFFF;
  border: none; cursor: pointer;
  font-family: var(--sans); font-size: 0.8rem; font-weight: 600;
  padding: 8px 18px; border-radius: 100px;
  text-decoration: none; transition: opacity 0.2s;
  letter-spacing: 0.02em; white-space: nowrap;
}
.btn-nav:hover { opacity: 0.85; }

.btn-primary {
  background: var(--gold); color: #FFFFFF;
  border: none; cursor: pointer;
  font-family: var(--sans); font-size: 0.9rem; font-weight: 600;
  padding: 14px 28px; border-radius: 100px;
  text-decoration: none; transition: all 0.2s;
  letter-spacing: 0.02em;
  display: inline-block;
}
.btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }

.btn-secondary {
  background: transparent; color: var(--cream);
  border: 1px solid var(--border); cursor: pointer;
  font-family: var(--sans); font-size: 0.9rem; font-weight: 500;
  padding: 14px 28px; border-radius: 100px;
  text-decoration: none; transition: all 0.2s;
  letter-spacing: 0.02em;
  display: inline-block;
}
.btn-secondary:hover { border-color: rgba(255,255,255,0.2); background: rgba(255,255,255,0.04); }

.btn-ghost {
  background: transparent; color: var(--muted);
  border: 1px solid var(--border); cursor: pointer;
  font-family: var(--sans); font-size: 0.85rem; font-weight: 500;
  padding: 11px 22px; border-radius: 100px;
  text-decoration: none; transition: all 0.2s;
  letter-spacing: 0.02em;
  display: inline-block;
}
.btn-ghost:hover { color: var(--cream); border-color: rgba(255,255,255,0.18); }

.btn-outline {
  background: transparent; color: var(--gold);
  border: 1px solid rgba(var(--accent-raw),0.35); cursor: pointer;
  font-family: var(--sans); font-size: 0.88rem; font-weight: 600;
  padding: 12px 24px; border-radius: 100px; text-decoration: none;
  transition: all 0.2s; letter-spacing: 0.02em; display: inline-block;
}
.btn-outline:hover { background: rgba(var(--accent-raw),0.08); border-color: var(--gold); }

.link-arrow {
  font-size: 0.8rem; color: var(--gold); font-weight: 500;
  text-decoration: none; letter-spacing: 0.03em;
  display: inline-flex; align-items: center; gap: 4px;
  transition: gap 0.2s;
}
.link-arrow:hover { gap: 8px; }

/* ─── WP Buttons block overrides ───────────────────────────── */
.wp-block-buttons.cta-group {
  display: flex; gap: 14px; flex-wrap: wrap;
  justify-content: center; margin-bottom: 40px;
}
.wp-block-button__link {
  background: var(--gold); color: #FFF;
  font-family: var(--sans); font-size: 0.9rem; font-weight: 600;
  padding: 14px 28px; border-radius: 100px;
  text-decoration: none; transition: all 0.2s;
  letter-spacing: 0.02em;
}
.wp-block-button__link:hover { opacity: 0.88; transform: translateY(-1px); }
.wp-block-button.is-style-secondary .wp-block-button__link {
  background: transparent; color: var(--cream);
  border: 1px solid var(--border);
}
.wp-block-button.is-style-secondary .wp-block-button__link:hover {
  border-color: rgba(255,255,255,0.2); background: rgba(255,255,255,0.04);
}

/* ─── Section head (shared heading pattern) ─────────────────── */
.section-head,
.section-intro {
  text-align: center; margin-bottom: 60px;
}
.section-head h1,
.section-intro h1 {
  font-family: var(--sans);
  font-size: 3.2rem;
  font-weight: 500; color: var(--cream); line-height: 1.08;
  margin-bottom: 28px; letter-spacing: -0.03em;
  text-align: center;
}
.section-head h2,
.section-intro h2 {
  font-family: var(--sans);
  font-size: 2.2rem;
  font-weight: 500; color: var(--cream); line-height: 1.15;
  margin-bottom: 16px; letter-spacing: -0.03em;
  text-align: center;
}
.section-head h3,
.section-intro h3 {
  font-family: var(--sans);
  font-size: 1.5rem;
  font-weight: 500; color: var(--cream); line-height: 1.2;
  margin-bottom: 16px; letter-spacing: -0.02em;
  text-align: center;
}
.section-head p,
.section-intro p {
  font-size: 0.95rem; color: var(--muted); max-width: 560px; margin: 0 auto;
}

/* ─── Hero section (homepage) ──────────────────────────────── */
/* .hero-section = WP block build; #hero = raw HTML pattern */
.hero-section, #hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  background: #000; padding: 120px 24px 220px;
  text-align: center;
}
/* Suppress ambient blobs — hero uses WebGL sphere */
.hero-section ~ .ambient-1,
.hero-section ~ .ambient-2,
.hero-section ~ .ambient-3 { display: none; }
body.page-template-front-page .ambient-1,
body.page-template-front-page .ambient-2,
body.page-template-front-page .ambient-3,
body.page-template-page-home .ambient-1,
body.page-template-page-home .ambient-2,
body.page-template-page-home .ambient-3 { display: none; }

#planet-webgl {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none; z-index: 0;
}
#hero-shader-overlay {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 52%, rgb(0,0,0) 100%);
  pointer-events: none; z-index: 1;
}
.hero-content,
#hero .container {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center;
  width: 100%; max-width: 1080px; margin: 0 auto;
}

/* Eyebrow label in hero */
.hero-section .wp-block-paragraph.hero-eyebrow {
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.18em; color: var(--gold);
  text-transform: uppercase; margin-bottom: 20px;
}

/* Hero H1 */
.hero-section .wp-block-heading,
#hero h1 {
  font-family: var(--sans);
  font-size: 3.2rem;
  font-weight: 500; line-height: 1.08;
  color: var(--cream); margin-bottom: 28px;
  letter-spacing: -0.03em;
}

/* Cycling list */
.cycling-wrapper {
  height: 2.2em; overflow: hidden; margin: 0 auto 32px;
  position: relative;
  width: 100%; max-width: 560px;
  list-style: none; padding: 0;
}
#cycling-container {
  position: relative; width: 100%; height: 100%;
}
.cycling-wrapper li,
.cycling-wrapper .cycling-item {
  font-family: var(--sans); font-size: clamp(1rem, 2.2vw, 1.25rem);
  font-weight: 300; color: var(--muted); line-height: 1.6;
  position: absolute; top: 0; left: 0; width: 100%; text-align: center;
  opacity: 0; transform: translateY(12px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.cycling-wrapper li.active,
.cycling-wrapper .cycling-item.active { opacity: 1; transform: translateY(0); }
.cycling-wrapper li.out,
.cycling-wrapper .cycling-item.out    { opacity: 0; transform: translateY(-12px); }
.cycling-highlight { color: var(--cream); font-weight: 500; }

/* Hero body text */
.hero-section .wp-block-paragraph.hero-body,
#hero .hero-body {
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  color: var(--muted); max-width: 560px;
  margin-bottom: 44px; line-height: 1.8;
}

/* Trust signals (below CTAs) */
.trust-signals { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; list-style: none; }
.trust-signals li { font-size: 0.78rem; color: var(--muted); display: flex; align-items: center; gap: 6px; }
.trust-signals li::before { content: '✦'; color: var(--gold); font-size: 0.6rem; }

/* ─── Page hero (inner pages — legacy #hero selector) ────────── */
.page-hero {
  padding: 160px 24px 80px;
  text-align: center;
  position: relative; z-index: 1;
}
.page-hero h1 {
  font-family: var(--sans);
  font-size: 3.2rem;
  font-weight: 500; color: var(--cream);
  line-height: 1.1; letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.page-hero p {
  font-size: 1rem; color: var(--muted);
  max-width: 560px; margin: 0 auto 36px;
  line-height: 1.8;
}

/* ─── Pricing cards (shared) ────────────────────────────────── */
.pricing-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  max-width: 1000px; margin: 0 auto;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 24px;
  display: flex; flex-direction: column;
  transition: border-color 0.3s, transform 0.3s;
}
.pricing-card:hover { border-color: rgba(var(--accent-raw), 0.3); transform: translateY(-4px); }
.pricing-card.featured {
  border-color: rgba(var(--accent-raw), 0.35);
  background: linear-gradient(135deg, rgba(var(--accent-raw), 0.06) 0%, var(--bg-card) 60%);
}
.pricing-badge {
  display: inline-block; font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.12em; color: #FFFFFF;
  background: var(--gold); border-radius: 100px;
  padding: 3px 10px; margin-bottom: 16px;
  text-transform: uppercase; width: fit-content;
}
.pricing-name {
  font-family: var(--sans); font-size: 1.1rem; font-weight: 600;
  color: var(--cream); margin-bottom: 8px; letter-spacing: -0.01em;
}
.pricing-price {
  font-family: var(--serif); font-size: 2.4rem; font-weight: 300;
  color: var(--cream); line-height: 1; margin-bottom: 4px;
}
.pricing-price sup { font-size: 1.1rem; vertical-align: super; margin-right: 2px; }
.pricing-price span { font-size: 0.85rem; color: var(--muted); font-family: var(--sans); font-weight: 400; }
.pricing-qs { font-size: 0.8rem; color: var(--gold); font-weight: 500; margin-bottom: 16px; }
.pricing-divider { border: none; height: 1px; background: var(--border); margin: 16px 0; }
.pricing-desc { font-size: 0.82rem; color: var(--muted); line-height: 1.6; flex: 1; }
.pricing-cta { text-align: center; margin-top: 44px; }
.pricing-trial { font-size: 0.82rem; color: var(--muted); margin-top: 24px; display: block; line-height: 1.8; }

/* ─── Testimonials ──────────────────────────────────────────── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testimonial-card {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px;
}
.quote-mark {
  font-family: var(--serif); font-size: 4rem; font-weight: 300;
  color: var(--gold); line-height: 0.6; margin-bottom: 20px; display: block; opacity: 0.5;
}
.testimonial-card blockquote {
  font-family: var(--serif); font-size: 1.1rem; font-weight: 400;
  color: var(--cream); line-height: 1.65; margin-bottom: 24px; font-style: italic;
}
.testimonial-author { font-size: 0.8rem; color: var(--muted); }
.testimonial-author strong { color: var(--cream); display: block; margin-bottom: 2px; }

/* ─── Final CTA band ────────────────────────────────────────── */
#final-cta {
  padding: 120px 24px; text-align: center; position: relative;
}
#final-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(var(--accent-raw), 0.10) 0%, transparent 70%);
  pointer-events: none;
}
#final-cta h1 {
  font-family: var(--sans);
  font-size: 3.2rem;
  font-weight: 500; color: var(--cream);
  line-height: 1.08; margin-bottom: 20px; letter-spacing: -0.03em;
}
#final-cta h2 {
  font-family: var(--sans);
  font-size: 2.2rem;
  font-weight: 500; color: var(--cream);
  line-height: 1.12; margin-bottom: 20px; letter-spacing: -0.03em;
}
#final-cta .tagline {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.4rem); color: var(--gold); margin-bottom: 20px;
}
#final-cta p {
  font-size: 0.95rem; color: var(--muted);
  max-width: 480px; margin: 0 auto 44px; line-height: 1.8;
}
.final-subtext { font-size: 0.8rem; color: var(--muted); margin-top: 16px; display: block; }

/* CTA band block pattern */
.cta-band {
  padding: 80px 24px; text-align: center; position: relative;
  background: linear-gradient(180deg, transparent 0%, rgba(var(--accent-raw),0.06) 50%, transparent 100%);
}
.cta-band h1 {
  font-family: var(--sans); font-size: 3.2rem;
  font-weight: 500; color: var(--cream); letter-spacing: -0.03em; line-height: 1.08;
  margin-bottom: 16px;
}
.cta-band h2 {
  font-family: var(--sans); font-size: 2.2rem;
  font-weight: 500; color: var(--cream); letter-spacing: -0.03em; line-height: 1.12;
  margin-bottom: 16px;
}
.cta-band .tagline {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1rem, 1.8vw, 1.25rem); color: var(--gold); margin-bottom: 20px;
}
.cta-band p {
  font-size: 0.92rem; color: var(--muted); max-width: 480px;
  margin: 0 auto 36px; line-height: 1.8;
}
.cta-group { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-bottom: 40px; }

/* ─── Info tooltip ─────────────────────────────────────────── */
.info-tip {
  display: inline-flex; align-items: center; justify-content: center;
  width: 15px; height: 15px; border-radius: 50%;
  border: 1px solid var(--muted); color: var(--muted);
  font-size: 0.65rem; font-family: var(--sans); font-style: normal;
  line-height: 1; cursor: default; position: relative;
  margin-left: 5px; vertical-align: middle; flex-shrink: 0;
}
.info-tip::after {
  content: attr(data-tip);
  position: absolute; bottom: calc(100% + 6px); left: 50%;
  transform: translateX(-50%);
  background: rgba(30,28,24,0.97); color: var(--cream);
  font-size: 0.72rem; line-height: 1.45; padding: 7px 10px; border-radius: 6px;
  white-space: nowrap; pointer-events: none; opacity: 0;
  transition: opacity 0.15s; z-index: 100; border: 1px solid var(--border);
}
.info-tip:hover::after { opacity: 1; }

/* ─── System tags ───────────────────────────────────────────── */
.system-tag {
  display: inline-block; font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; border-radius: 6px; padding: 4px 10px;
}
.system-tag.vedic   { color: var(--gold); background: rgba(var(--accent-raw), 0.10); border: 1px solid rgba(var(--accent-raw), 0.25); }
.system-tag.western { color: #a8bfd4; background: rgba(168,191,212,0.08); border: 1px solid rgba(168,191,212,0.2); }
.system-tag.hd      { color: #b0c4b1; background: rgba(176,196,177,0.08); border: 1px solid rgba(176,196,177,0.2); }

/* ─── Footer ────────────────────────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  padding: 64px 24px 40px;
  position: relative; z-index: 1;
  max-width: 1200px; margin: 0 auto;
}
.footer-inner {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-brand .footer-logo {
  font-family: var(--sans); font-size: 1.1rem; font-weight: 700;
  color: var(--muted); text-decoration: none; letter-spacing: -0.02em;
  display: inline-block; margin-bottom: 12px;
}
.footer-logo span { color: var(--gold); }
.footer-brand p { font-size: 0.8rem; color: rgba(180,168,140,0.7); line-height: 1.6; max-width: 240px; }
.footer-col h4 {
  font-family: var(--sans); font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(180,168,140,0.55); margin-bottom: 16px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 0.85rem; color: rgba(180,168,140,0.75);
  text-decoration: none; transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 8px;
}
.footer-bottom p { font-size: 0.72rem; color: rgba(180,168,140,0.65); }
.footer-bottom a {
  font-size: 0.72rem; color: rgba(180,168,140,0.65);
  text-decoration: none; margin-right: 16px; transition: color 0.2s;
}
.footer-bottom a:hover { color: var(--gold); }
.footer-bottom a:last-child { margin-right: 0; }

/* ─── Contact Form 7 ────────────────────────────────────────── */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form textarea,
.wpcf7-form select {
  width: 100%;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  border-radius: 10px; color: var(--cream);
  font-family: var(--sans); font-size: 0.9rem;
  padding: 12px 16px; outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none; appearance: none;
}
.wpcf7-form input:focus,
.wpcf7-form textarea:focus,
.wpcf7-form select:focus {
  border-color: rgba(var(--accent-raw),0.45);
  background: rgba(255,255,255,0.06);
}
.wpcf7-form input::placeholder,
.wpcf7-form textarea::placeholder { color: rgba(255,255,255,0.18); }
.wpcf7-form .wpcf7-submit {
  background: var(--gold); color: #FFF; border: none; cursor: pointer;
  font-family: var(--sans); font-size: 0.9rem; font-weight: 600;
  padding: 14px 28px; border-radius: 100px; width: 100%;
  transition: opacity 0.2s; margin-top: 8px;
}
.wpcf7-form .wpcf7-submit:hover { opacity: 0.85; transform: translateY(-1px); }
.wpcf7 .wpcf7-response-output { border-color: rgba(var(--accent-raw),0.3); color: var(--muted); font-size: 0.85rem; border-radius: 8px; }

/* ─── Per-page styles ────────────────────────────────────────── */

/* ── Homepage sections (IDs are unique to front page pattern) ── */
#systems {
  padding: 100px 24px;
  background: linear-gradient(to bottom, #000 0%, var(--bg) 100%);
}
#how-it-works {
  padding: 100px 24px;
  background: linear-gradient(180deg, var(--bg) 0%, rgba(156,67,254,0.04) 50%, var(--bg) 100%);
}
#how-it-works .section-label { margin-bottom: 28px; }
#how-it-works .section-head { margin-bottom: 70px; }
#sample-report { padding: 100px 24px; }
#who-its-for { padding: 100px 24px; }
#pricing {
  padding: 100px 24px;
  background: linear-gradient(180deg, transparent 0%, rgba(156,67,254,0.04) 50%, transparent 100%);
}
#testimonials { padding: 100px 24px; }
#systems .section-intro p { 
    font-size: 1rem;
    color: var(--muted);
    max-width: 500px;
    margin: 0 auto;
}

.systems-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.system-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px 30px;
  transition: border-color 0.3s, transform 0.3s;
  position: relative; overflow: hidden;
}
.system-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.system-card:hover { border-color: rgba(156,67,254,0.2); transform: translateY(-3px); }
.system-card:hover::before { opacity: 1; }
.system-icon {
  width: 44px; height: 44px; margin-bottom: 20px;
  background: rgba(156,67,254,0.08); border: 1px solid rgba(156,67,254,0.15);
  border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
.system-card h3 { font-size: 1.25rem; font-weight: 600; color: var(--cream); margin-bottom: 12px; line-height: 1.2; letter-spacing: -0.01em; }
.system-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.75; margin-bottom: 20px; }

.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; position: relative; }
.steps-grid::before {
  content: ''; position: absolute; top: 28px; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), var(--border), transparent); z-index: 0;
}
.step { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px 24px; position: relative; z-index: 1; }
.step-num { font-family: var(--serif); font-size: 2.8rem; font-weight: 300; color: rgba(156,67,254,0.25); line-height: 1; margin-bottom: 16px; display: block; }
.step h3 { font-size: 0.82rem; font-weight: 600; color: var(--cream); margin-bottom: 10px; letter-spacing: 0.02em; line-height: 1.4; }
.step p  { font-size: 0.84rem; color: var(--muted); line-height: 1.7; }
.steps-cta { text-align: center; margin-top: 50px; }

/* Report mockup */
.report-mockup { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; max-width: 780px; margin: 0 auto; }
.report-mockup-bar { background: rgba(255,255,255,0.03); border-bottom: 1px solid var(--border); padding: 14px 20px; display: flex; align-items: center; gap: 8px; }
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-r { background: rgba(255,95,86,0.5); }
.dot-y { background: rgba(255,189,46,0.5); }
.dot-g { background: rgba(39,201,63,0.5); }
.report-mockup-body { padding: 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.report-col-left  { display: flex; flex-direction: column; gap: 20px; }
.report-col-right { display: flex; flex-direction: column; gap: 20px; }
.report-chart-placeholder { aspect-ratio: 1; background: rgba(156,67,254,0.06); border: 1px solid rgba(156,67,254,0.18); border-radius: 50%; display: flex; align-items: center; justify-content: center; max-width: 240px; margin: 0 auto; width: 100%; }
.report-chart-inner { width: 60%; aspect-ratio: 1; border-radius: 50%; background: rgba(156,67,254,0.07); border: 1px solid rgba(156,67,254,0.15); display: flex; align-items: center; justify-content: center; }
.chart-label { font-family: var(--serif); font-size: 0.9rem; color: var(--muted); text-align: center; }
.report-tag-row { display: flex; flex-wrap: wrap; gap: 8px; }
.report-tag { font-size: 0.72rem; color: var(--muted); background: rgba(255,255,255,0.04); border: 1px solid var(--border); border-radius: 6px; padding: 4px 10px; }
.report-tag.gold { border-color: rgba(156,67,254,0.25); color: var(--gold); background: rgba(156,67,254,0.06); }
.report-line-block { display: flex; flex-direction: column; gap: 10px; }
.report-line { height: 10px; border-radius: 4px; background: rgba(255,255,255,0.06); }
.report-line.w-full { width: 100%; }
.report-line.w-3q   { width: 75%; }
.report-line.w-half { width: 50%; }
.report-line.gold-line { background: rgba(156,67,254,0.12); }
.report-planet-row { display: flex; align-items: center; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.04); }
.report-planet-name { font-size: 0.78rem; color: var(--muted); font-weight: 500; width: 70px; }
.report-planet-bar-wrap { flex: 1; margin: 0 12px; height: 4px; background: rgba(255,255,255,0.05); border-radius: 4px; overflow: hidden; }
.report-planet-bar { height: 100%; background: var(--gold); border-radius: 4px; }
.report-planet-val { font-size: 0.72rem; color: var(--gold-dim); width: 30px; text-align: right; }
#sample-report .report-caption {
  display: block;
  text-align: center;
  margin-top: 28px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--muted);
}
#sample-report .report-cta {
  text-align: center;
  margin-top: 32px;
}

/* Persona grid */
.persona-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.persona-card { background: var(--bg-card2); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; transition: border-color 0.3s; }
.persona-card:hover { border-color: rgba(255,255,255,0.12); }
.persona-card h3 { font-size: 1.1rem; font-weight: 600; color: var(--cream); margin-bottom: 12px; letter-spacing: -0.01em; }
.persona-card p  { font-size: 0.88rem; color: var(--muted); line-height: 1.78; }
.persona-cta { text-align: center; margin-top: 50px; }

/* ── Pricing page ── */
body.page-template-page-pricing #hero,
body.page-template-page-pricing #hero.hero-inner { padding: 160px 24px 90px; text-align: center; }
body.page-template-page-pricing #hero h1 { font-family: var(--sans); font-size: 3.2rem; font-weight: 500; line-height: 1.08; color: var(--cream); margin-bottom: 20px; letter-spacing: -0.03em; }
body.page-template-page-pricing #hero .sub { font-size: clamp(1rem, 2vw, 1.2rem); color: var(--gold); font-family: var(--serif); font-style: italic; margin-bottom: 24px; }
body.page-template-page-pricing #hero p { font-size: clamp(0.95rem, 1.6vw, 1.05rem); color: var(--muted); max-width: 560px; line-height: 1.8; }
body.page-template-page-pricing #plans { padding: 80px 24px 100px; }
.plans-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; align-items: start; }
.plan-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px 26px; display: flex; flex-direction: column; transition: border-color 0.3s, transform 0.3s; position: relative; z-index: 1; }
.plan-card:hover { border-color: rgba(255,255,255,0.14); transform: translateY(-3px); z-index: 10; }
.plan-card.featured { border-color: rgba(var(--accent-raw),0.4); background: linear-gradient(160deg, rgba(var(--accent-raw),0.07) 0%, var(--bg-card) 55%); box-shadow: 0 0 40px rgba(var(--accent-raw),0.08); }
.plan-card.featured:hover { border-color: rgba(var(--accent-raw),0.6); }
.plan-card.muted-card { border-color: rgba(255,255,255,0.06); }
.plan-card.muted-card:hover { border-color: rgba(255,255,255,0.1); }
.plan-badge { display: inline-block; font-size: 0.6rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; padding: 3px 10px; border-radius: 100px; margin-bottom: 18px; width: fit-content; }
.plan-badge.badge-free    { background: rgba(255,255,255,0.06); color: var(--muted); }
.plan-badge.badge-popular { background: var(--gold); color: #fff; }
.plan-badge.badge-custom  { background: rgba(var(--accent-raw),0.1); color: var(--gold); }
.plan-name { font-family: var(--sans); font-size: 1rem; font-weight: 500; color: var(--cream); letter-spacing: -0.01em; margin-bottom: 16px; }
.plan-price { font-family: var(--serif); font-size: 3rem; font-weight: 300; color: var(--cream); line-height: 1; margin-bottom: 4px; }
.plan-price sup { font-size: 1.3rem; vertical-align: super; margin-right: 1px; }
.plan-price .per { font-family: var(--sans); font-size: 0.8rem; font-weight: 400; color: var(--muted); }
.plan-annual { font-size: 0.75rem; color: var(--muted); margin-bottom: 6px; }
.plan-capacity { font-size: 0.78rem; color: var(--gold); font-weight: 500; margin-bottom: 24px; }
.plan-divider  { border: none; height: 1px; background: var(--border); margin: 0 0 20px; }
.plan-best-for { font-size: 0.8rem; color: var(--muted); line-height: 1.65; margin-bottom: 20px; font-style: italic; }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; flex: 1; }
.plan-features li { font-size: 0.82rem; color: var(--muted); line-height: 1.5; display: flex; align-items: flex-start; gap: 9px; }
.plan-features li .fi { flex-shrink: 0; width: 16px; height: 16px; margin-top: 1px; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; }
.plan-features li .fi.yes { color: var(--gold); }
.plan-features li .fi.no  { color: rgba(125,125,125,0.4); }
.plan-features li.feat-yes { color: var(--cream); }
.plan-cta { margin-top: auto; }
.plan-cta .btn-primary, .plan-cta .btn-secondary, .plan-cta .btn-outline { width: 100%; text-align: center; }
.plan-note { font-size: 0.73rem; color: var(--muted); margin-top: 12px; text-align: center; line-height: 1.6; }
.plan-overspend { margin-top: 20px; padding: 14px 16px; background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: 10px; }
.plan-overspend-label { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em; color: var(--muted); text-transform: uppercase; margin-bottom: 6px; display: block; }
.plan-overspend p { font-size: 0.78rem; color: var(--muted); line-height: 1.6; }
.comp-table { width: 100%; border-collapse: collapse; min-width: 640px; }
.comp-table th, .comp-table td { padding: 13px 16px; text-align: left; border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 0.83rem; }
.comp-table thead th { font-size: 0.75rem; font-weight: 500; letter-spacing: 0.04em; color: var(--cream); text-transform: uppercase; background: rgba(255,255,255,0.03); padding-top: 16px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.comp-table thead th.featured-col { color: var(--gold); }
.comp-table tbody td:first-child { color: var(--muted); font-weight: 500; background: rgba(255,255,255,0.01); }
.comp-table tbody td { color: var(--muted); vertical-align: middle; }
.comp-table tbody td.featured-col { background: rgba(var(--accent-raw),0.04); }
.comp-table tbody tr:last-child td { border-bottom: none; }
.comp-table tbody tr:hover td { background: rgba(255,255,255,0.02); }
.check { color: var(--gold); font-weight: 600; }
.cross { color: rgba(125,125,125,0.35); }
.dash  { color: rgba(125,125,125,0.25); }
.tag-val  { font-size: 0.75rem; color: var(--cream); }
.tag-note { font-size: 0.72rem; color: var(--muted); display: block; margin-top: 2px; }
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.overspend-inner { max-width: 720px; margin: 0 auto; }
.overspend-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 32px; }
.overspend-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px 24px; }
.overspend-card-name { font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.overspend-card-limit { font-family: var(--serif); font-size: 2.2rem; font-weight: 300; color: var(--cream); line-height: 1; margin-bottom: 10px; }
.overspend-card p { font-size: 0.82rem; color: var(--muted); line-height: 1.65; }
.overspend-rules { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.overspend-rules li { font-size: 0.85rem; color: var(--muted); line-height: 1.6; padding-left: 20px; position: relative; }
.overspend-rules li::before { content: '-'; position: absolute; left: 0; color: var(--gold-dim); }
.faq-inner { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.06); }
.faq-item:first-of-type { border-top: 1px solid rgba(255,255,255,0.06); }
details > summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; padding: 20px 0; gap: 16px; font-size: 0.92rem; font-weight: 500; color: var(--cream); transition: color 0.2s; user-select: none; }
details > summary::-webkit-details-marker { display: none; }
details > summary:hover { color: var(--gold); }
.faq-icon { flex-shrink: 0; width: 20px; height: 20px; border: 1px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; color: var(--muted); transition: all 0.2s; }
details[open] > summary .faq-icon { background: var(--gold); border-color: var(--gold); color: #fff; transform: rotate(45deg); }
.faq-body { padding: 0 0 22px; font-size: 0.88rem; color: var(--muted); line-height: 1.8; }
.faq-body p + p { margin-top: 12px; }

/* ── Features page ── */
body.page-template-page-features .avail { display: inline-flex; align-items: center; gap: 6px; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-top: 28px; }
body.page-template-page-features .avail-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold-dim); flex-shrink: 0; }
body.page-template-page-features .avail span { color: var(--muted); }
body.page-template-page-features .avail .avail-plans { color: var(--cream); }
.feat-section { padding: 80px 24px 88px; border-top: 1px solid var(--border); scroll-margin-top: 100px; }
.feat-badge { display: inline-block; font-size: 0.63rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); border: 1px solid rgba(var(--accent-raw),0.2); border-radius: 100px; padding: 4px 12px; margin-bottom: 20px; }
.feat-head h2 { font-family: var(--sans); font-size: 2.8rem; font-weight: 500; color: var(--cream); letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 16px; }
.feat-sub { font-size: clamp(0.92rem, 1.5vw, 1.02rem); color: var(--muted); line-height: 1.8; max-width: 640px; margin-bottom: 48px; }
.feat-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.feat-sub-label { font-size: 0.63rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; display: block; }
.feat-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.feat-list li { font-size: 0.87rem; color: var(--muted); line-height: 1.75; display: flex; align-items: baseline; gap: 10px; }
.feat-list li::before { content: '-'; color: var(--gold-dim); flex-shrink: 0; font-size: 0.8rem; }
.feat-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px 30px; }
.feat-card h3 { font-family: var(--sans); font-size: 0.88rem; font-weight: 500; color: var(--cream); margin-bottom: 10px; letter-spacing: -0.01em; }
.feat-card p { font-size: 0.83rem; color: var(--muted); line-height: 1.8; }
.feat-card + .feat-card { margin-top: 2px; }
.feat-grid-2x2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.feat-grid-2x2 .feat-card:nth-child(1) { border-radius: var(--radius-lg) 0 0 0; }
.feat-grid-2x2 .feat-card:nth-child(2) { border-radius: 0 var(--radius-lg) 0 0; }
.feat-grid-2x2 .feat-card:nth-child(3) { border-radius: 0 0 0 var(--radius-lg); }
.feat-grid-2x2 .feat-card:nth-child(4) { border-radius: 0 0 var(--radius-lg) 0; }
.feat-grid-2x2 .feat-card { border-radius: 0; margin: 0; }
.feat-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.feat-grid-3 .feat-card { border-radius: 0; margin: 0; }
.feat-grid-3 .feat-card:first-child { border-radius: var(--radius-lg) 0 0 var(--radius-lg); }
.feat-grid-3 .feat-card:last-child  { border-radius: 0 var(--radius-lg) var(--radius-lg) 0; }
.feat-steps { display: flex; flex-direction: column; gap: 0; }
.feat-step { display: flex; align-items: baseline; gap: 16px; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.feat-step:last-child { border-bottom: none; }
.feat-step-num { font-family: var(--serif); font-size: 1.8rem; color: rgba(var(--accent-raw),0.2); line-height: 1; flex-shrink: 0; width: 28px; text-align: right; }
.feat-step-body { flex: 1; }
.feat-step-body p { font-size: 0.86rem; color: var(--muted); line-height: 1.75; }
.feat-callout { background: rgba(var(--accent-raw),0.05); border: 1px solid rgba(var(--accent-raw),0.18); border-radius: var(--radius); padding: 22px 26px; }
.feat-callout-label { font-size: 0.63rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; display: block; }
.feat-callout p { font-size: 0.84rem; color: var(--muted); line-height: 1.8; }
.delivery-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.delivery-pill { font-size: 0.75rem; font-weight: 500; color: var(--muted); background: rgba(255,255,255,0.04); border: 1px solid var(--border); border-radius: 100px; padding: 6px 14px; }

/* ── How It Works page ── */
.step-row { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding: 60px 0; border-bottom: 1px solid rgba(255,255,255,0.05); position: relative; }
.step-row:last-child { border-bottom: none; }
.step-row.reverse .step-text  { order: 2; }
.step-row.reverse .step-visual { order: 1; }
.step-text { display: flex; flex-direction: column; gap: 16px; }
.step-num-label { display: flex; align-items: center; gap: 14px; }
.step-num-big { font-family: var(--serif); font-size: 4.5rem; font-weight: 300; line-height: 1; color: rgba(var(--accent-raw),0.18); letter-spacing: -0.02em; flex-shrink: 0; }
.step-badge { font-size: 0.65rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); border: 1px solid rgba(var(--accent-raw),0.25); border-radius: 100px; padding: 4px 12px; }
.step-text h3 { font-family: var(--sans); font-size: 1.7rem; font-weight: 500; color: var(--cream); letter-spacing: -0.02em; line-height: 1.15; }
.step-text p { font-size: 0.93rem; color: var(--muted); line-height: 1.85; max-width: 440px; }
.step-tech-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.step-tag { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.02em; color: var(--muted); background: rgba(255,255,255,0.04); border: 1px solid var(--border); border-radius: 6px; padding: 4px 10px; }
.step-tag.gold-tag { color: var(--gold); border-color: rgba(var(--accent-raw),0.2); background: rgba(var(--accent-raw),0.05); }
.step-visual { display: flex; align-items: center; justify-content: center; }
.both-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.both-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px 32px; transition: border-color 0.3s, transform 0.3s; position: relative; overflow: hidden; }
.both-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--gold-dim), transparent); opacity: 0; transition: opacity 0.3s; }
.both-card:hover { border-color: rgba(var(--accent-raw),0.2); transform: translateY(-3px); }
.both-card:hover::before { opacity: 1; }
.both-icon { width: 46px; height: 46px; margin-bottom: 22px; background: rgba(var(--accent-raw),0.08); border: 1px solid rgba(var(--accent-raw),0.14); border-radius: 11px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; }
.both-card h3 { font-family: var(--sans); font-size: 1.05rem; font-weight: 500; color: var(--cream); letter-spacing: -0.01em; margin-bottom: 12px; line-height: 1.3; }
.both-card p { font-size: 0.87rem; color: var(--muted); line-height: 1.78; }

/* ── Reports page ── */
.report-type-pill { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.04em; color: var(--muted); background: rgba(255,255,255,0.04); border: 1px solid var(--border); border-radius: 100px; padding: 8px 18px; white-space: nowrap; text-decoration: none; transition: color 0.2s, border-color 0.2s, background 0.2s; }
.report-type-pill:hover { color: var(--cream); border-color: rgba(255,255,255,0.18); background: rgba(255,255,255,0.07); }
.report-section { padding: 80px 24px; }
.report-section.alt { background: var(--bg-card); }
.system-grid { display: grid; gap: 16px; align-items: start; }
.system-grid.two   { grid-template-columns: repeat(2, 1fr); }
.system-grid.three { grid-template-columns: repeat(3, 1fr); }
.system-panel { background: var(--bg-card2); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px 28px 26px; }
.report-section.alt .system-panel { background: var(--bg); }
.include-list { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.include-list li { font-size: 0.83rem; color: var(--muted); line-height: 1.65; padding-left: 18px; position: relative; }
.include-list li::before { content: '-'; position: absolute; left: 0; color: var(--gold-dim); font-weight: 500; }
.use-case-note { margin-top: 32px; padding: 20px 24px; background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: var(--radius); }
.use-case-label { font-size: 0.62rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-dim); margin-bottom: 10px; display: block; }
.use-case-note p { font-size: 0.88rem; color: var(--muted); line-height: 1.78; }
.sample-card { margin-top: 40px; background: rgba(var(--accent-raw),0.04); border: 1px solid rgba(var(--accent-raw),0.22); border-radius: var(--radius-lg); padding: 32px 36px; display: flex; flex-direction: column; gap: 16px; }
.sample-label { font-size: 0.62rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); }
.sample-card h3 { font-family: var(--sans); font-size: 1.1rem; font-weight: 500; color: var(--cream); letter-spacing: -0.02em; line-height: 1.3; }
.sample-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.78; }
.sample-contents { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.sample-contents li { font-size: 0.82rem; color: var(--muted); padding-left: 18px; position: relative; }
.sample-contents li::before { content: '✦'; position: absolute; left: 0; color: var(--gold); font-size: 0.6rem; top: 3px; }
.delivery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 40px; }
.delivery-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px 26px 24px; }
.delivery-icon { font-size: 1.3rem; margin-bottom: 14px; display: block; }
.delivery-card h3 { font-size: 0.92rem; font-weight: 500; color: var(--cream); margin-bottom: 10px; letter-spacing: -0.01em; }
.delivery-card p { font-size: 0.84rem; color: var(--muted); line-height: 1.75; }
.usage-note { margin-top: 32px; padding: 22px 26px; background: rgba(var(--accent-raw),0.05); border: 1px solid rgba(var(--accent-raw),0.2); border-radius: var(--radius); }
.usage-note p { font-size: 0.87rem; color: var(--muted); line-height: 1.78; }
.usage-note strong { color: var(--cream); font-weight: 600; }

/* ── Book Demo page ── */
body.page-template-page-book-demo #main-content { padding: 72px 24px 100px; }
.demo-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.expect-col h2 { font-family: var(--sans); font-size: 2rem; font-weight: 500; color: var(--cream); letter-spacing: -0.02em; line-height: 1.15; margin-bottom: 10px; }
.expect-lead { font-size: 0.87rem; color: var(--muted); margin-bottom: 36px; line-height: 1.75; }
.expect-items { display: flex; flex-direction: column; gap: 0; }
.expect-item { padding: 24px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.expect-item:first-child { padding-top: 0; }
.expect-item:last-child  { border-bottom: none; }
.expect-item-head { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.expect-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); flex-shrink: 0; opacity: 0.7; }
.expect-item h3 { font-family: var(--sans); font-size: 0.9rem; font-weight: 600; color: var(--cream); letter-spacing: -0.01em; }
.expect-item p { font-size: 0.85rem; color: var(--muted); line-height: 1.8; padding-left: 20px; }
.expect-no { margin-top: 32px; background: rgba(255,255,255,0.02); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px 24px; }
.expect-no-label { font-size: 0.68rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; display: block; }
.expect-no p { font-size: 0.85rem; color: var(--muted); line-height: 1.75; font-style: italic; }
.form-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px 32px; position: sticky; top: 100px; }
.form-card-head { margin-bottom: 28px; }
.form-card-head h2 { font-family: var(--sans); font-size: 1.3rem; font-weight: 500; color: var(--cream); letter-spacing: -0.02em; margin-bottom: 6px; }
.form-card-head p { font-size: 0.82rem; color: var(--muted); line-height: 1.6; }
.form-group { margin-bottom: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 18px; }
label { display: block; font-size: 0.73rem; font-weight: 600; letter-spacing: 0.06em; color: var(--muted); text-transform: uppercase; margin-bottom: 7px; }
label .req { color: var(--gold); margin-left: 2px; }
.alt-cta-inner { max-width: 600px; margin: 0 auto; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 48px 40px; }
.alt-cta-inner h2 { font-family: var(--sans); font-size: 2rem; font-weight: 500; color: var(--cream); letter-spacing: -0.02em; line-height: 1.15; margin-bottom: 16px; }
.alt-cta-inner p { font-size: 0.9rem; color: var(--muted); line-height: 1.8; margin-bottom: 28px; }
.contact-inner { max-width: 540px; margin: 0 auto; text-align: center; }
.contact-email { font-size: 1.05rem; font-weight: 600; color: var(--cream); text-decoration: none; letter-spacing: -0.01em; border-bottom: 1px solid rgba(255,255,255,0.15); padding-bottom: 2px; transition: border-color 0.2s, color 0.2s; }
.contact-email:hover { color: var(--gold); border-color: rgba(var(--accent-raw),0.4); }
.contact-note { font-size: 0.78rem; color: var(--muted); margin-top: 12px; display: block; }

/* ── FAQ page ── */
.cat-nav-outer {
  position: sticky; top: 68px; z-index: 90;
  background: rgba(var(--bg-raw), 0.88);
  backdrop-filter: blur(16px) saturate(1.3);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
  border-bottom: 1px solid var(--border); padding: 10px 24px;
}
.cat-nav { display: flex; gap: 6px; overflow-x: auto; scrollbar-width: none; max-width: 1080px; margin: 0 auto; }
.cat-nav::-webkit-scrollbar { display: none; }
.cat-nav a { flex-shrink: 0; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); text-decoration: none; padding: 6px 14px; border-radius: 100px; border: 1px solid transparent; transition: all 0.2s; white-space: nowrap; }
.cat-nav a:hover { color: var(--cream); border-color: var(--border); }
.cat-nav a.active { color: var(--cream); border-color: rgba(var(--accent-raw),0.4); background: rgba(var(--accent-raw),0.08); }
.faq-category { max-width: 720px; margin: 0 auto; padding-top: 72px; scroll-margin-top: 140px; }
.faq-category + .faq-category { border-top: 1px solid var(--border); }
.cat-label { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-dim); margin-bottom: 28px; }
.faq-body code { font-family: 'Courier New', monospace; font-size: 0.82em; background: rgba(255,255,255,0.06); padding: 2px 6px; border-radius: 4px; color: var(--cream); }

/* ── For Practitioners page ── */
.persona-tab { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.04em; text-decoration: none; padding: 9px 20px; border-radius: 100px; border: 1px solid var(--border); color: var(--muted); transition: all 0.2s; white-space: nowrap; }
.persona-tab:hover { color: var(--cream); border-color: rgba(255,255,255,0.2); background: rgba(255,255,255,0.04); }
.persona-tab.active { color: var(--gold); border-color: rgba(var(--accent-raw),0.3); background: rgba(var(--accent-raw),0.06); }
.persona-section { padding: 80px 24px 100px; border-top: 1px solid var(--border); scroll-margin-top: 100px; }
.persona-head h1 { font-size: 3.2rem; font-weight: 500; color: var(--cream); letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 16px; }
.persona-head h2 { font-size: 2.2rem; font-weight: 500; color: var(--cream); letter-spacing: -0.03em; line-height: 1.12; margin-bottom: 16px; }
.persona-sub { font-size: clamp(0.93rem, 1.5vw, 1.05rem); color: var(--muted); max-width: 620px; line-height: 1.8; }
.problem-box { background: rgba(255,255,255,0.02); border: 1px solid var(--border); border-left: 2px solid rgba(var(--accent-raw),0.35); border-radius: var(--radius); padding: 24px 28px; margin-bottom: 56px; max-width: 780px; }
.problem-box-label { font-size: 0.63rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold-dim); margin-bottom: 10px; display: block; }
.problem-box p { font-size: 0.9rem; color: var(--muted); line-height: 1.85; }
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-bottom: 56px; }
.feature-item { padding: 28px 32px; background: var(--bg-card); border: 1px solid var(--border); transition: border-color 0.2s; }
.feature-item:first-child { border-radius: var(--radius-lg) 0 0 0; }
.feature-item:nth-child(2) { border-radius: 0 var(--radius-lg) 0 0; }
.feature-item:nth-last-child(2) { border-radius: 0 0 0 var(--radius-lg); }
.feature-item:last-child { border-radius: 0 0 var(--radius-lg) 0; }
.feature-item:hover { border-color: rgba(255,255,255,0.14); }
.feature-item h3 { font-size: 0.9rem; font-weight: 500; color: var(--cream); margin-bottom: 10px; letter-spacing: -0.01em; line-height: 1.3; }
.feature-item p { font-size: 0.83rem; color: var(--muted); line-height: 1.85; }
.deliverables { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px 36px; margin-bottom: 40px; max-width: 680px; }
.deliverables-label { font-size: 0.63rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); margin-bottom: 18px; display: block; }
.deliverables ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.deliverables li { font-size: 0.855rem; color: var(--muted); line-height: 1.6; display: flex; align-items: baseline; gap: 10px; }
.deliverables li::before { content: '✦'; color: var(--gold-dim); font-size: 0.55rem; flex-shrink: 0; position: relative; top: -1px; }
.benefit-row { display: flex; align-items: baseline; gap: 20px; padding: 24px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.benefit-row:last-child { border-bottom: none; }
.benefit-num { font-family: var(--serif); font-size: 1.6rem; color: rgba(var(--accent-raw),0.2); line-height: 1; flex-shrink: 0; width: 28px; text-align: right; }
.benefit-body { flex: 1; }
.benefit-body strong { font-size: 0.92rem; font-weight: 500; color: var(--cream); display: block; margin-bottom: 4px; letter-spacing: -0.01em; }
.benefit-body p { font-size: 0.855rem; color: var(--muted); line-height: 1.8; }

/* ── Our Story page ── */
.reading-section { padding: 80px 24px; }
.reading-col { max-width: 680px; margin: 0 auto; }
.lead-text { font-size: 1.15rem; font-weight: 500; color: var(--cream); letter-spacing: -0.02em; margin-bottom: 20px; line-height: 1.4; }
.reading-col p { font-size: 0.97rem; color: var(--muted); line-height: 1.9; margin-bottom: 20px; }
.pull-quote { border-left: 2px solid rgba(var(--accent-raw),0.35); padding: 6px 0 6px 24px; margin: 36px 0; font-size: 1rem; font-weight: 600; color: var(--cream); letter-spacing: -0.01em; line-height: 1.55; font-style: normal; }
.belief-block { padding: 40px 0; border-bottom: 1px solid var(--border); }
.belief-block:first-of-type { border-top: 1px solid var(--border); }
.belief-number { font-size: 0.62rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-dim); margin-bottom: 12px; display: block; }
.belief-block h3 { font-size: 1.6rem; font-weight: 500; color: var(--cream); letter-spacing: -0.025em; margin-bottom: 16px; line-height: 1.2; }
.belief-block p { font-size: 0.95rem; color: var(--muted); line-height: 1.9; max-width: 600px; }
.tula-card { max-width: 680px; margin: 0 auto; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 48px 48px 44px; position: relative; overflow: hidden; }
.tula-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, rgba(var(--accent-raw),0.4), transparent); }
.tula-card p { font-size: 0.95rem; color: var(--muted); line-height: 1.9; margin-bottom: 18px; }
.tula-card strong { color: var(--cream); font-weight: 600; }
.tula-link-row { margin-top: 32px; padding-top: 28px; border-top: 1px solid var(--border); }

/* ── Landing page shared (vedic/western/hd) ── */
.problem-callout { font-family: var(--sans); font-size: clamp(1.1rem, 2vw, 1.3rem); font-weight: 500; color: var(--cream); letter-spacing: -0.025em; margin-bottom: 24px; line-height: 1.3; }
.problem-inner { max-width: 720px; margin: 0 auto; }
.problem-inner p { font-size: 0.97rem; color: var(--muted); line-height: 1.9; margin-bottom: 18px; }
.problem-punch { margin-top: 32px; padding: 20px 24px; background: rgba(var(--accent-raw),0.06); border: 1px solid rgba(var(--accent-raw),0.22); border-radius: var(--radius); font-size: 1rem; font-weight: 500; color: var(--cream); letter-spacing: -0.01em; line-height: 1.4; }
.reports-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.report-card { background: var(--bg-card); border: 1px solid var(--border); border-top: 2px solid rgba(var(--accent-raw),0.3); border-radius: var(--radius); padding: 28px 28px 26px; transition: border-color 0.2s; }
.report-card:hover { border-color: rgba(255,255,255,0.14); border-top-color: var(--gold); }
.report-card-title { font-size: 0.95rem; font-weight: 500; color: var(--cream); letter-spacing: -0.01em; margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
.report-card-title .rtag { font-size: 0.6rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-dim); background: rgba(var(--accent-dim-raw),0.15); border-radius: 100px; padding: 2px 8px; }
.report-card p { font-size: 0.85rem; color: var(--muted); line-height: 1.78; }
.calc-block { margin-bottom: 40px; padding-bottom: 40px; border-bottom: 1px solid var(--border); }
.calc-block:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.calc-block-title { font-size: 0.8rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.calc-block-lead { font-size: 0.97rem; color: var(--muted); line-height: 1.85; margin-bottom: 16px; }
.calc-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.calc-list li { font-size: 0.88rem; color: var(--cream); line-height: 1.65; padding-left: 22px; position: relative; }
.calc-list li::before { content: '-'; position: absolute; left: 0; color: var(--gold-dim); font-weight: 500; }
.kb-items { list-style: none; margin: 20px 0 28px; display: flex; flex-direction: column; gap: 10px; }
.kb-items li { font-size: 0.9rem; color: var(--cream); padding-left: 22px; position: relative; line-height: 1.6; }
.kb-items li::before { content: '✦'; position: absolute; left: 0; color: var(--gold-dim); font-size: 0.6rem; top: 4px; }
.kb-punch { font-size: 1rem; font-weight: 500; color: var(--cream); letter-spacing: -0.01em; padding: 18px 22px; background: rgba(var(--accent-raw),0.06); border-left: 2px solid rgba(var(--accent-raw),0.35); border-radius: 0 var(--radius) var(--radius) 0; }
.mid-cta { margin-top: 44px; display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.wl-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.wl-list li { font-size: 0.92rem; color: var(--cream); padding-left: 26px; position: relative; line-height: 1.55; }
.wl-list li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 500; font-size: 0.85rem; }
.wl-foot { font-size: 0.9rem; color: var(--muted); line-height: 1.85; }
.accuracy-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.accuracy-list li { font-size: 0.92rem; color: var(--cream); line-height: 1.65; padding-left: 24px; position: relative; }
.accuracy-list li::before { content: '-'; position: absolute; left: 0; color: var(--gold-dim); font-weight: 500; }
.components-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.component-card { background: var(--bg-card); border: 1px solid var(--border); border-top: 2px solid rgba(var(--accent-raw),0.25); border-radius: var(--radius); padding: 24px 24px 22px; transition: border-color 0.2s; }
.component-card:hover { border-color: rgba(255,255,255,0.14); border-top-color: var(--gold); }
.component-card.span2 { grid-column: span 2; }
.component-title { font-size: 0.9rem; font-weight: 500; color: var(--cream); letter-spacing: -0.01em; margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.component-title .ctag { font-size: 0.6rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-dim); background: rgba(var(--accent-dim-raw),0.15); border-radius: 100px; padding: 2px 8px; }
.component-card p { font-size: 0.84rem; color: var(--muted); line-height: 1.75; }
.chatbot-card { margin-top: 14px; background: var(--bg-card2); border: 1px solid rgba(var(--accent-raw),0.2); border-radius: var(--radius); padding: 28px 32px; display: flex; align-items: flex-start; gap: 24px; }
.chatbot-card-icon { font-size: 1.8rem; flex-shrink: 0; line-height: 1; }
.chatbot-card-text h3 { font-size: 0.95rem; font-weight: 500; color: var(--cream); margin-bottom: 6px; }
.chatbot-card-text p { font-size: 0.84rem; color: var(--muted); line-height: 1.75; }
.all-reports-card { margin-top: 20px; background: var(--bg-card2); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 32px; }
.all-reports-title { font-size: 0.65rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; display: block; }
.all-reports-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px 20px; list-style: none; }
.all-reports-list li { font-size: 0.83rem; color: var(--muted); line-height: 1.55; padding-left: 16px; position: relative; }
.all-reports-list li::before { content: '✦'; position: absolute; left: 0; color: var(--gold-dim); font-size: 0.58rem; top: 4px; }

/* ── Privacy page ── */
.principle-label { font-size: 0.62rem; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 24px; display: block; }
.principle-sub { font-size: 0.88rem; font-weight: 500; color: var(--cream); margin: 28px 0 10px; letter-spacing: -0.01em; }
.data-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.data-list li { font-size: 0.9rem; color: var(--muted); line-height: 1.65; padding-left: 22px; position: relative; }
.data-list li::before { content: '-'; position: absolute; left: 0; color: var(--gold-dim); font-weight: 500; }
.principle-callout { margin: 28px 0; padding: 16px 20px; background: rgba(var(--accent-raw),0.05); border-left: 2px solid rgba(var(--accent-raw),0.35); border-radius: 0 var(--radius) var(--radius) 0; font-size: 0.96rem; font-weight: 600; color: var(--cream); line-height: 1.6; }
.gdpr-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.gdpr-list li { font-size: 0.9rem; color: var(--muted); line-height: 1.7; padding-left: 22px; position: relative; }
.gdpr-list li::before { content: '✦'; position: absolute; left: 0; color: var(--gold-dim); font-size: 0.58rem; top: 5px; }
.summary-card { max-width: 700px; margin: 0 auto; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 48px; position: relative; overflow: hidden; }
.summary-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, rgba(var(--accent-raw),0.5), transparent); }
.summary-card-label { font-size: 0.62rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; display: block; }
.summary-card h2 { font-family: var(--sans); font-size: clamp(1.3rem, 2.5vw, 1.7rem); font-weight: 500; color: var(--cream); letter-spacing: -0.02em; margin-bottom: 28px; line-height: 1.2; }
.summary-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; }
.summary-list li { font-size: 0.92rem; color: var(--cream); padding-left: 26px; position: relative; line-height: 1.55; }
.summary-list li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 500; font-size: 0.85rem; }
.summary-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── Terms page ── */
.reading-section.alt { background: var(--bg-card); }
.reading-col h2 { font-family: var(--sans); font-size: 1.2rem; font-weight: 500; color: var(--cream); letter-spacing: -0.02em; margin: 40px 0 12px; }
.reading-col h2:first-child { margin-top: 0; }
.reading-col ul { list-style: none; margin: 0 0 20px; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.reading-col ul li { font-size: 0.9rem; color: rgba(238,242,248,0.72); line-height: 1.7; padding-left: 18px; position: relative; }
.reading-col ul li::before { content: '–'; position: absolute; left: 0; color: var(--gold-dim); }
.terms-note { background: rgba(var(--accent-raw),0.06); border: 1px solid rgba(var(--accent-raw),0.18); border-radius: var(--radius); padding: 20px 24px; margin: 32px 0; }
.terms-note p { margin: 0; font-size: 0.88rem; color: var(--muted); }
.terms-note strong { color: var(--cream); }
.terms-contact { padding: 48px 24px; border-top: 1px solid var(--border); text-align: center; }
.terms-contact p { font-size: 0.88rem; color: var(--muted); margin-bottom: 8px; }
.terms-contact a { color: var(--gold); text-decoration: none; }
.terms-contact a:hover { text-decoration: underline; }

/* ─── Responsive ────────────────────────────────────────────── */
@media (max-width: 768px) {
  nav#main-nav {
    flex-wrap: wrap; justify-content: space-between;
    border-radius: 20px; top: 12px;
    align-items: center; gap: 0; padding: 10px 16px;
    transition: border-radius 0.25s;
  }
  nav#main-nav.menu-open { border-radius: 20px; }
  .nav-links { display: none; }
  .burger { display: inline-flex; }
  .btn-nav { font-size: 0.75rem; padding: 7px 14px; }
  .nav-mobile-menu.open { display: flex; }

  .hero-section .wp-block-heading,
  #hero h1, .section-head h1, .cta-band h1,
  #final-cta h1, .persona-head h1,
  body.page-template-front-page #systems .section-intro h1 { font-size: 1.9rem; }
  .section-head h2, .cta-band h2, #final-cta h2,
  .persona-head h2, .feat-head h2 { font-size: 1.5rem; }
  .section-head h3, .system-card h3, .step h3,
  .belief-block h3 { font-size: 1.2rem; }
  .systems-grid  { grid-template-columns: 1fr; }
  .steps-grid    { grid-template-columns: 1fr 1fr; }
  .steps-grid::before { display: none; }
  .persona-grid  { grid-template-columns: 1fr; }
  .report-mockup-body { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .plans-grid { grid-template-columns: 1fr 1fr; }
  .overspend-cards { grid-template-columns: 1fr; }
  .feat-two-col { grid-template-columns: 1fr; gap: 32px; }
  .feat-grid-2x2 { grid-template-columns: 1fr; }
  .feat-grid-3 { grid-template-columns: 1fr; }
  .step-row { grid-template-columns: 1fr; gap: 36px; padding: 48px 0; }
  .step-row.reverse .step-text  { order: 1; }
  .step-row.reverse .step-visual { order: 2; }
  .both-grid { grid-template-columns: 1fr; }
  .system-grid.two, .system-grid.three { grid-template-columns: 1fr; }
  .delivery-grid { grid-template-columns: 1fr; }
  .demo-layout { grid-template-columns: 1fr; gap: 48px; }
  .form-card { position: static; padding: 28px 22px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-row .form-group { margin-bottom: 18px; }
  .feature-grid { grid-template-columns: 1fr; gap: 2px; }
  .reports-grid { grid-template-columns: 1fr; }
  .components-grid { grid-template-columns: repeat(2, 1fr); }
  .component-card.span2 { grid-column: span 1; }
  .all-reports-list { grid-template-columns: repeat(2, 1fr); }
  .tula-card { padding: 32px 28px; }
  .summary-card { padding: 32px 24px; }
}

@media (max-width: 520px) {
  .footer-inner { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .plans-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-section .wp-block-heading,
  #hero h1, .section-head h1, .cta-band h1,
  #final-cta h1, .persona-head h1,
  body.page-template-front-page #systems .section-intro h1 { font-size: 1.6rem; }
  .section-head h2, .cta-band h2, #final-cta h2,
  .persona-head h2, .feat-head h2 { font-size: 1.3rem; }
  .section-head h3, .system-card h3, .step h3,
  .belief-block h3 { font-size: 1.1rem; }
  .feat-section { padding: 60px 24px 68px; }
  .feat-grid-2x2 .feat-card:nth-child(1) { border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
  .feat-grid-2x2 .feat-card:last-child { border-radius: 0 0 var(--radius-lg) var(--radius-lg); }
  .feat-grid-3 .feat-card:first-child { border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
  .feat-grid-3 .feat-card:last-child  { border-radius: 0 0 var(--radius-lg) var(--radius-lg); }
  .chatbot-card { flex-direction: column; gap: 16px; }
  .components-grid { grid-template-columns: 1fr; }
  .all-reports-list { grid-template-columns: 1fr; }
  .alt-cta-inner { padding: 36px 24px; }
  .persona-head h2 { font-size: 1.9rem; }
  .persona-ctas { flex-direction: column; }
  .persona-ctas a { text-align: center; }
  .tula-card { padding: 28px 22px; }
}
