@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&family=Roboto+Slab:wght@400;700&display=swap');

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

body {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  background: #fff;
  color: #323232;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ============================================================
   LAYOUT HELPERS
   ============================================================ */
.inner         { max-width: 1100px; margin: 0 auto; }
.inner-narrow  { max-width: 700px;  margin: 0 auto; }
.flex-1        { flex: 1; }
.js-hidden     { display: none; }

.section-white  { background: #fff;     padding: 5rem 2rem; }
.section-gray   { background: #f5f5f5; padding: 5rem 2rem; }
.section-gray--bt { border-top: 1px solid #e8e8e8; }
.section-dark   { background: #0d0d0d; color: #fff; padding: 5rem 2rem; }
.section-halluc { background: #130a18; color: #fff; padding: 5rem 2rem; }
.section-purple { background: #5e1656; color: #fff; padding: 5.5rem 2rem; }
.section-teal   { background: #086171; color: #fff; padding: 5rem 2rem; }

/* Centered text helper for section headers */
.section-center { text-align: center; margin-bottom: 3rem; }
.section-center .lead { max-width: 580px; margin-left: auto; margin-right: auto; }
.lead-narrow { max-width: 580px; margin: 0 auto; }
.dims-header   { margin-bottom: 3rem; }
.pricing-header { text-align: center; margin-bottom: 3.5rem; }
.faq-header    { text-align: center; margin-bottom: 3rem; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ff9900;
  margin-bottom: 0.75rem;
}
.eyebrow-teal   { color: #20808d; }
.eyebrow-purple { color: #9b59b6; }
.eyebrow-pink   { color: #e03271; }
.eyebrow-light  { color: rgba(255,255,255,0.5); letter-spacing: 0.14em; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; margin-bottom: 0.75rem; }

.h2        { font-family: 'Roboto Slab', serif; font-size: 2rem; font-weight: 700; line-height: 1.25; color: #323232; margin-bottom: 1rem; }
.h2-light  { color: #fff; }
.lead      { font-size: 1rem; color: #666; line-height: 1.75; }
.lead-light { color: rgba(255,255,255,0.65); }
.lead-white { color: rgba(255,255,255,0.85); }

/* ============================================================
   BUTTONS
   ============================================================ */
/* v2 marketing buttons */
.btn-primary     { background: #ff9900; color: #fff; font-weight: 700; padding: 0.85rem 2rem; border-radius: 3px; text-decoration: none; font-size: 0.95rem; display: inline-block; border: none; cursor: pointer; font-family: 'Roboto', sans-serif; transition: background 0.15s; }
.btn-primary:hover { background: #e68a00; }
.btn-dark        { background: #323232; color: #fff; font-weight: 700; padding: 1rem 2.5rem; border-radius: 3px; text-decoration: none; font-size: 1rem; display: inline-block; border: none; cursor: pointer; font-family: 'Roboto', sans-serif; }
.btn-ghost       { color: rgba(255,255,255,0.7); font-size: 0.9rem; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.3); padding-bottom: 1px; }
.btn-ghost-light { color: rgba(255,255,255,0.75); font-size: 0.9rem; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.35); padding-bottom: 1px; }

/* Legacy shared buttons (portal, admin, form pages) */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.72rem 1.6rem;
  border-radius: 7px;
  font-family: 'Roboto', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
  transition: all 0.18s;
  white-space: nowrap;
}
.btn-secondary { background: #f2f2f2; color: #555; border: 1px solid #e0e0e0; }
.btn-secondary:hover { background: #e8e8e8; }

/* ============================================================
   SHARED FORM ELEMENTS (portal / admin / forms)
   ============================================================ */
.form-group  { margin-bottom: 1.25rem; }
.form-label  { display: block; font-size: 0.82rem; font-weight: 600; color: #444; margin-bottom: 0.4rem; letter-spacing: 0.02em; }
.form-label .optional { font-weight: 400; color: #999; font-size: 0.75rem; }
.form-input, .form-textarea {
  width: 100%;
  padding: 0.65rem 0.9rem;
  border: 1px solid #ddd;
  border-radius: 7px;
  font-size: 0.9rem;
  color: #333;
  background: #fff;
  transition: border-color 0.18s, box-shadow 0.18s;
  font-family: inherit;
}
.form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: #ff9900;
  box-shadow: 0 0 0 3px rgba(255,153,0,0.12);
}
.form-textarea { resize: vertical; min-height: 80px; line-height: 1.5; }
.form-hint { font-size: 0.75rem; color: #999; margin-top: 0.3rem; }

/* ============================================================
   NAVIGATION (shared shell — nav.css has the rest)
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 3px solid #ff9900;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  padding: 1rem 2rem;
}
.nav-inner {
  width: 80%;
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav-logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.nav-logo img { height: 28px; display: block; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-link {
  font-family: 'Roboto', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: #888;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.15s;
  white-space: nowrap;
}
.nav-link:hover { color: #333; }
.nav-link--active { color: #ff9900 !important; }
.nav-link--cta { color: #ff9900; border: 1.5px solid #ff9900; padding: 0.38rem 0.9rem; border-radius: 6px; }
.nav-link--cta:hover { background: #ff9900; color: #fff; }
.nav-link--cta.nav-link--active { background: #ff9900; color: #fff; }
.nav-mobile-bar { display: none; }
.nav-signout {
  font-family: 'Roboto', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: #888;
  background: none;
  border: none;
  cursor: pointer;
  letter-spacing: 0.02em;
  padding: 0;
  transition: color 0.15s;
  white-space: nowrap;
}
.nav-signout:hover { color: #333; }

.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 6px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.10);
  min-width: 140px;
  z-index: 200;
  padding: 0.75rem 0 0.35rem;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-item {
  display: block;
  padding: 0.5rem 1rem;
  font-family: 'Roboto', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: #888;
  text-decoration: none;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: color 0.15s;
}
.nav-dropdown-item:hover { color: #ff9900; }

/* ============================================================
   SHARED CARD (portal / admin)
   ============================================================ */
.card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: border-color 0.15s, box-shadow 0.15s;
  display: flex;
  flex-direction: column;
}

/* ============================================================
   FOOTER — PORTAL / ADMIN (footer-nav partial)
   ============================================================ */
footer {
  margin-top: auto;
  border-top: 1px solid #e8e8e8;
  padding: 1.5rem 2rem;
  text-align: center;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ccc;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.25rem 1.75rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e8e8e8;
}
.footer-nav-link {
  font-size: 0.72rem;
  font-weight: 700;
  color: #aaa;
  text-decoration: none;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.15s;
  white-space: nowrap;
}
.footer-nav-link:hover      { color: #ff9900; }
.footer-nav-link--active    { color: #ff9900; }
.footer-nav-signout {
  font-family: 'Roboto', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  color: #aaa;
  background: none;
  border: none;
  cursor: pointer;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0;
  transition: color 0.15s;
}
.footer-nav-signout:hover { color: #ff9900; }

/* ============================================================
   PUBLIC SITE FOOTER
   ============================================================ */
.site-footer {
  background: #0d0d0d;
  border-top: 1px solid #1e1e1e;
  padding: 3rem 2rem 2rem;
  text-align: center;
  color: #555;
}
.site-footer-inner { max-width: 900px; margin: 0 auto; }
.site-footer-logo { display: inline-block; margin-bottom: 1.5rem; }
.site-footer-logo img { height: 28px; display: block; margin: 0 auto; }
.site-footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.site-footer-nav a {
  font-size: 0.78rem;
  font-weight: 700;
  color: #666;
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.15s;
}
.site-footer-nav a:hover { color: #ff9900; }
.site-footer-address {
  font-size: 0.72rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 0.75rem;
}
.site-footer-address a { color: #555; text-decoration: none; }
.site-footer-address a:hover { color: #ff9900; }
.site-footer-legal { font-size: 0.68rem; color: #333; }
.site-footer-legal a { color: #555; text-decoration: none; }
.site-footer-legal a:hover { color: #ff9900; }

/* ============================================================
   HERO — HOME (2-col)
   ============================================================ */
.hero-wrap {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://websightdesign.com/userfiles/cms/pages/images/111/aeo-search2.jpg');
  background-size: cover;
  background-position: center;
  transform: scaleX(-1);
}
/* Home hero gradient: denser on left (text), lighter on right (cards) */
.hero-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,10,18,0.90) 0%, rgba(10,10,18,0.75) 45%, rgba(10,10,18,0.30) 100%);
  pointer-events: none;
}
/* Narrow hero (signup, free-audit, hiw): vertical gradient, darker overall */
.hero-wrap--narrow::after {
  background: linear-gradient(to right, rgba(10,10,18,0.92) 0%, rgba(10,10,18,0.80) 60%, rgba(10,10,18,0.65) 100%);
}
.hero-wrap--narrow { min-height: 300px; }
/* How-it-works hero: full dark vertical gradient */
.hero-wrap--hiw::after {
  background: linear-gradient(to bottom, rgba(8,8,16,0.88) 0%, rgba(8,8,16,0.82) 60%, rgba(8,8,16,0.92) 100%);
}
.hero-wrap--hiw { min-height: 520px; }

.hero {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 5.5rem 2rem;
}
.hero--narrow { padding: 4rem 2rem; }
.hero--hiw    { padding: 5rem 2rem 4rem; text-align: center; }

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-inner-narrow {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ff9900;
  margin-bottom: 1rem;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}
.hero-h1 {
  font-family: 'Roboto Slab', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.55);
}
.hero-h1--narrow { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
.hero-h1--hiw    { font-size: clamp(1.8rem, 3.5vw, 2.75rem); max-width: 100%; margin-left: auto; margin-right: auto; }
.hero-h1 em { color: #ff9900; font-style: normal; }
.hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  margin-bottom: 2rem;
  text-shadow: 0 1px 5px rgba(0,0,0,0.5);
  max-width: 480px;
}
.hero-sub--center { max-width: 100%; margin-left: auto; margin-right: auto; margin-bottom: 2.5rem; color: rgba(255,255,255,0.7); }
.hero-actions { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }

/* Platform response cards in hero */
.hero-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.p-card {
  background: rgba(12,12,16,0.45);
  border-radius: 8px;
  padding: 0.9rem 1rem;
  border-top: 3px solid #333;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.p-card-name  { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.5rem; }
.p-card-text  { font-size: 0.77rem; color: #888; line-height: 1.5; margin-bottom: 0.65rem; font-style: italic; }
.p-card-badge {
  display: inline-block;
  font-size: 0.63rem;
  font-weight: 700;
  padding: 0.18rem 0.55rem;
  border-radius: 3px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid transparent;
}
/* Platform card border modifiers */
.platform--chatgpt   { border-top-color: #555; }
.platform--claude    { border-top-color: #d97757; }
.platform--gemini    { border-top-color: #4285f4; }
.platform--perplexity { border-top-color: #20808d; }
/* Platform name color modifiers */
.platform-color--chatgpt    { color: #888; }
.platform-color--claude     { color: #d97757; }
.platform-color--gemini     { color: #4285f4; }
.platform-color--perplexity { color: #20808d; }
/* Platform bg modifiers */
.bg-chatgpt    { background: #000000; }
.bg-claude     { background: #d97757; }
.bg-gemini     { background: #4285f4; }
.bg-perplexity { background: #20808d; }
/* Badge score */
.badge-score-high { background: rgba(76,175,80,0.12); color: #66bb6a; border-color: #388e3c; }
.badge-score-low  { background: rgba(239,83,80,0.12);  color: #ef5350; border-color: #c62828; }
.badge-score-mid  { background: rgba(255,152,0,0.12);  color: #ffa726; border-color: #e65100; }
/* Incorrect inline text */
.text-incorrect { color: #ef9a9a; font-style: normal; }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: #1a1a1a;
  border-bottom: 1px solid #2a2a2a;
  padding: 0.9rem 2rem;
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: #888;
  white-space: nowrap;
}
.trust-item svg { flex-shrink: 0; }

/* ============================================================
   STATS BAR (dark section with counters)
   ============================================================ */
.stats-section {
  background: #0d0d0d;
  padding: 4rem 2rem;
  border-top: 1px solid #1e1e1e;
  border-bottom: 1px solid #1e1e1e;
}
.stats-eyebrow {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 3rem;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item {}
.stat-num-wrap { display: flex; align-items: baseline; justify-content: center; gap: 0.1em; margin-bottom: 0.5rem; }
.stat-num {
  font-family: 'Roboto Slab', serif;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1;
}
.stat-num--orange  { color: #ff9900; }
.stat-num--teal    { color: #086171; }
.stat-num--purple  { color: #5e1656; }
.stat-num--pink    { color: #e03271; }
.stat-label { font-size: 0.88rem; font-weight: 700; color: #fff; margin-bottom: 0.35rem; }
.stat-desc  { font-size: 0.72rem; color: #fff; line-height: 1.5; }

/* ============================================================
   FLOW (AI Self-Reports — home)
   ============================================================ */
.flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  margin-top: 3.5rem;
  gap: 0;
}
.flow-step   { text-align: center; padding: 0 1.25rem; }
.flow-icon   {
  width: 72px; height: 72px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
}
.flow-icon--purple { background: #f3eef8; }
.flow-icon--teal   { background: #f0f8f9; }
.flow-icon--orange { background: #fff7ec; }
.flow-arrow  { display: flex; align-items: center; justify-content: center; padding-top: 28px; color: #ccc; }
.flow-title  { font-family: 'Roboto Slab', serif; font-size: 1rem; font-weight: 700; color: #323232; margin-bottom: 0.4rem; }
.flow-desc   { font-size: 0.83rem; color: #777; line-height: 1.55; }

/* ============================================================
   HALLUCINATIONS
   ============================================================ */
.halluc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}
.halluc-card {
  background: #1f1228;
  border-radius: 8px;
  padding: 1.5rem;
  border-left: 3px solid #e03271;
}
.halluc-card--pink   { border-left-color: #e03271; }
.halluc-card--purple { border-left-color: #5e1656; }
.halluc-card--teal   { border-left-color: #086171; }
.halluc-icon   { margin-bottom: 0.85rem; }
.halluc-title  { font-family: 'Roboto Slab', serif; font-size: 0.92rem; font-weight: 700; color: #fff; margin-bottom: 0.6rem; line-height: 1.35; }
.halluc-example {
  font-size: 0.79rem; color: #f08; font-style: italic; line-height: 1.55;
  padding: 0.5rem 0.75rem; background: rgba(224,50,113,0.1); border-radius: 4px; margin-bottom: 0.65rem;
}
.halluc-desc { font-size: 0.79rem; color: #999; line-height: 1.6; }
.halluc-note {
  margin-top: 2.5rem;
  padding: 1.25rem 1.75rem;
  background: rgba(255,153,0,0.08);
  border-left: 3px solid #ff9900;
  border-radius: 4px;
  font-size: 0.9rem; color: #ccc; line-height: 1.7;
}
.halluc-note strong { color: #ff9900; }
.halluc-intro { max-width: 720px; margin-bottom: 0.5rem; }
.halluc-plan-badge {
  display: inline-block; margin-bottom: 1rem;
  padding: 0.25rem 0.9rem; background: rgba(94,22,86,0.85);
  color: #fff; font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.04em; border-radius: 4px;
}

/* ============================================================
   HOW IT WORKS — HOME 3 STEPS
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; margin-top: 3.5rem; }
.step { text-align: center; }
.step-icon-wrap {
  width: 80px; height: 80px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
}
.step-icon-wrap--orange { background: #ff9900; }
.step-icon-wrap--dark   { background: #323232; }
.step-icon-wrap--purple { background: #5e1656; }
.step-title { font-family: 'Roboto Slab', serif; font-size: 1.05rem; font-weight: 700; color: #323232; margin-bottom: 0.5rem; }
.step-desc  { font-size: 0.86rem; color: #666; line-height: 1.65; }

/* ============================================================
   FIVE DIMENSIONS
   ============================================================ */
.dims { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.1rem; margin-top: 3rem; }
.dim-card {
  border-radius: 8px; padding: 1.5rem 1.1rem;
  background: #1a1a1a; box-shadow: 0 1px 6px rgba(0,0,0,0.3);
  text-align: center; border-top: 4px solid #ccc;
}
.dim-badge {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  font-family: 'Roboto Slab', serif; font-size: 0.8rem; font-weight: 700; color: #fff; letter-spacing: 0.05em;
}
.dim-title { font-size: 0.82rem; font-weight: 700; color: #fff; margin-bottom: 0.4rem; line-height: 1.35; }
.dim-desc  { font-size: 0.75rem; color: #888; line-height: 1.5; }
/* Dimension color modifiers */
.dim--recognition  { border-top-color: #ff9900; }
.dim--category     { border-top-color: #086171; }
.dim--sentiment    { border-top-color: #5e1656; }
.dim--accuracy     { border-top-color: #e03271; }
.dim--authority    { border-top-color: #aaa; }
.dim-badge--recognition { background: #ff9900; }
.dim-badge--category    { background: #086171; }
.dim-badge--sentiment   { background: #5e1656; }
.dim-badge--accuracy    { background: #e03271; }
.dim-badge--authority   { background: #444; }

/* ============================================================
   LOCAL FOCUS
   ============================================================ */
.local-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center; margin-top: 2.5rem;
}
.local-lead { color: #555; line-height: 1.75; margin-top: 1rem; font-size: 0.95rem; }
.local-queries { list-style: none; margin: 1.25rem 0 1.75rem; }
.local-queries li {
  font-size: 0.88rem; color: #444; padding: 0.55rem 0;
  border-bottom: 1px solid #e0e0e0;
  display: flex; align-items: center; gap: 0.6rem;
}
.local-queries li::before {
  content: ''; display: inline-block;
  width: 7px; height: 7px;
  background: #ff9900; border-radius: 50%; flex-shrink: 0;
}
.industry-tags { display: flex; flex-wrap: wrap; gap: 0.45rem; }
.industry-tag {
  background: #fff; border: 1px solid #ddd; color: #555;
  font-size: 0.79rem; padding: 0.28rem 0.7rem; border-radius: 3px;
}
.local-map-wrap { display: flex; align-items: center; justify-content: center; }

/* ============================================================
   PRICING CARDS (home pricing section)
   ============================================================ */
.price-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 3.5rem; }
.price-card {
  background: #fff; border-radius: 10px; padding: 2rem;
  border-top: 4px solid #ccc; position: relative;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}
.price-card--teal   { border-top-color: #086171; }
.price-card--orange { border-top-color: #ff9900; box-shadow: 0 4px 24px rgba(255,153,0,0.15), 0 0 0 1px rgba(255,153,0,0.15); }
.price-card--purple { border-top-color: #5e1656; }
.price-badge {
  position: absolute; top: -1px; right: 1.5rem;
  background: #ff9900; color: #fff;
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.25rem 0.6rem; border-radius: 0 0 4px 4px;
}
.price-tier   { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 0.75rem; }
.price-tier--teal   { color: #086171; }
.price-tier--orange { color: #ff9900; }
.price-tier--purple { color: #5e1656; }
.price-amount { font-family: 'Roboto Slab', serif; font-size: 2.4rem; font-weight: 700; color: #323232; line-height: 1; margin-bottom: 0.25rem; }
.price-freq   { font-size: 0.9rem; font-weight: 300; color: #aaa; }
.price-freq--bold { color: #323232; font-weight: 700; }
/* Inline span inside price-amount for the "/month" text */
.price-amount .price-freq { font-family: 'Roboto', sans-serif; font-size: 0.9rem; font-weight: 300; color: #aaa; }
/* Frequency line below price amount */
.price-desc--freq { font-size: 0.8rem; color: #aaa; margin-bottom: 0; margin-top: 0.25rem; }
.price-desc   { font-size: 0.85rem; color: #666; line-height: 1.65; margin: 1.5rem 0 1.75rem; }
.price-cta {
  display: block; text-align: center;
  font-weight: 700; font-size: 0.88rem; padding: 0.75rem 1.5rem;
  border-radius: 3px; text-decoration: none;
}
.price-cta--teal   { background: transparent; border: 1px solid #086171; color: #086171; }
.price-cta--orange { background: #ff9900; color: #fff; border: none; }
.price-cta--purple { background: transparent; border: 1px solid #5e1656; color: #5e1656; }

/* ============================================================
   PLAN CARDS
   ============================================================ */
/* ── Plan comparison table (desktop) ── */
.plan-table-wrap  { overflow-x: auto; }
.plan-table {
  width: 100%; border-collapse: collapse;
  font-size: 0.87rem; min-width: 580px;
}
.plan-table thead th {
  padding: 0.9rem 1.1rem;
  font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
  font-weight: 700; border-bottom: 1px solid #3a3a3a; text-align: center;
}
.plan-table thead th:first-child { text-align: left; width: 44%; background: #323232; color: #888; border-radius: 8px 0 0 0; }
.plan-th--ess  { background: #323232; color: #20808d; }
.plan-th--gro  { background: #ff9900; color: #fff; border-bottom-color: #e68a00 !important; }
.plan-th--pro  { background: #323232; color: #9b59b6; border-radius: 0 8px 0 0; }
.plan-th-pill  { font-size: 0.58rem; background: rgba(255,255,255,0.25); padding: 0.1rem 0.4rem; border-radius: 3px; letter-spacing: 0.06em; }
.plan-table tbody td { padding: 0.75rem 1.1rem; border-bottom: 1px solid #eee; text-align: center; }
.plan-table tbody td:first-child { text-align: left; color: #555; }
.td-ess  { background: #fff; }
.td-gro  { background: rgba(255,153,0,0.04); }
.td-pro  { background: #fff; }
.plan-table tbody tr:last-child td { border-bottom: none; }
.plan-table tbody tr:hover td { background: #fafafa; }
.plan-table tbody tr:hover td.td-gro { background: rgba(255,153,0,0.07); }
.row-note    { display: block; font-size: 0.73rem; color: #aaa; margin-top: 0.1rem; }
.check-ess   { color: #20808d; font-weight: 700; font-size: 1rem; }
.check-gro   { color: #ff9900; font-weight: 700; font-size: 1rem; }
.check-pro   { color: #9b59b6; font-weight: 700; font-size: 1rem; }
.dash        { color: #ccc; font-size: 1rem; }
.td-text-gro { color: #ff9900; font-size: 0.8rem; font-weight: 700; }
.td-text-pro { color: #9b59b6; font-size: 0.8rem; font-weight: 700; }
.td-note     { display: block; font-size: 0.7rem; font-weight: 400; margin-top: 0.1rem; }
.td-note--gro { color: #886030; }
.td-note--pro { color: #6a4080; }
.td-muted    { color: #aaa; }
.td-strong   { color: #323232; font-weight: 700; }

.pricing-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: start;
}

/* Desktop: show table, hide cards */
.plan-table-wrap--desktop { display: block; }
.pricing-cards--mobile    { display: none; }
.pricing-card {
  border: 2px solid #e8e8e8;
  border-radius: 8px;
  padding: 1.75rem 1.5rem;
  background: #fff;
}
.pricing-card--popular {
  border-color: #ff9900;
  background: #fffdf7;
}
.pricing-card-badge {
  display: inline-block;
  background: #ff9900;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.55rem;
  border-radius: 3px;
  margin-bottom: 0.75rem;
}
.pricing-card-name {
  font-family: 'Roboto Slab', serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.pricing-card-name--ess { color: #20808d; }
.pricing-card-name--gro { color: #ff9900; }
.pricing-card-name--pro { color: #9b59b6; }
.pricing-card-price {
  font-family: 'Roboto Slab', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #323232;
  line-height: 1;
  margin-bottom: 0.3rem;
}
.pricing-card-period { font-size: 1rem; font-weight: 400; color: #888; }
.pricing-card-freq   { font-size: 0.78rem; color: #888; margin-bottom: 1.25rem; }
.pricing-card-includes {
  font-size: 0.72rem;
  font-weight: 700;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}
.pricing-card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}
.pricing-card-features li {
  font-size: 0.87rem;
  color: #555;
  padding: 0.45rem 0;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.pricing-card-features li::before {
  content: '\2713';
  color: #ff9900;
  font-weight: 700;
  flex-shrink: 0;
}
.pricing-card-btn { display: block; width: 100%; text-align: center; box-sizing: border-box; }

/* ============================================================
   FREE VS PAID COMPARISON TABLE
   ============================================================ */
.free-compare-table {
  width: 100%; border-collapse: collapse;
  font-size: 0.87rem; min-width: 520px;
}
.free-compare-table thead th {
  padding: 0.9rem 1.1rem;
  font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
  font-weight: 700; border-bottom: 1px solid #3a3a3a; text-align: center;
}
.free-compare-table thead th:first-child { text-align: left; width: 52%; background: #323232; color: #888; border-radius: 8px 0 0 0; }
.th-free { background: #323232; color: #888; }
.th-paid { background: #ff9900; color: #fff; border-bottom-color: #e68a00 !important; border-radius: 0 8px 0 0; }
.free-compare-table tbody td { padding: 0.75rem 1.1rem; border-bottom: 1px solid #eee; text-align: center; }
.free-compare-table tbody td:first-child { text-align: left; color: #555; }
.td-free { background: #fff; }
.td-paid { background: rgba(255,153,0,0.04); }
.free-compare-table tbody tr:last-child td { border-bottom: none; }
.free-compare-table tbody tr:hover td { background: #fafafa; }
.free-compare-table tbody tr:hover td.td-paid { background: rgba(255,153,0,0.07); }
.check-free { color: #888; font-weight: 700; font-size: 1rem; }
.check-paid { color: #ff9900; font-weight: 700; font-size: 1rem; }
.td-preview-only { font-size: 0.82rem; color: #aaa; }
.td-paid-full { color: #9b59b6; font-size: 0.82rem; font-weight: 700; }
.td-paid-note { display: block; font-size: 0.72rem; font-weight: 400; color: #886030; margin-top: 0.15rem; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-single { display: flex; flex-direction: column; max-width: 780px; }
.faq-item   { padding: 1.5rem 0; border-bottom: 1px solid #ddd; }
.faq-item:last-child { border-bottom: none; }
.faq-q { font-family: 'Roboto Slab', serif; font-size: 0.95rem; font-weight: 700; color: #323232; margin-bottom: 0.5rem; line-height: 1.4; }
.faq-a { font-size: 0.86rem; color: #666; line-height: 1.7; }

/* 2-col FAQ (home) */
.faq-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.faq-2col .faq-item--left  { padding: 1.5rem 3rem 1.5rem 0; border-bottom: 1px solid #ebebeb; }
.faq-2col .faq-item--right { padding: 1.5rem 0 1.5rem 3rem; border-bottom: 1px solid #ebebeb; border-left: 1px solid #ebebeb; }
.faq-2col .faq-item--bottom-left  { padding: 1.5rem 3rem 1.5rem 0; border-bottom: none; }
.faq-2col .faq-item--bottom-right { padding: 1.5rem 0 1.5rem 3rem; border-left: 1px solid #ebebeb; border-bottom: none; }

/* ============================================================
   SIGNUP FORM — v2 field styles
   ============================================================ */
.form-panel {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 2.25rem 2.25rem 2.5rem;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
.form-section-label {
  font-size: 0.67rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: #ff9900; margin-bottom: 1.25rem; padding-bottom: 0.75rem; border-bottom: 1px solid #f0f0f0;
}
.field-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field-group { margin-bottom: 1.1rem; }
.field-group:last-child { margin-bottom: 0; }
.field-group--mt    { margin-top: 1.1rem; }
.field-group--mt-sm { margin-top: 0.75rem; }
.field-group--no-mb { margin-bottom: 0; }
.field-group--hidden { display: none; }
.field-label { display: block; font-size: 0.78rem; font-weight: 700; color: #444; margin-bottom: 0.4rem; }
.field-input {
  width: 100%; padding: 0.62rem 0.85rem; border: 1px solid #ddd; border-radius: 5px;
  font-size: 0.88rem; font-family: 'Roboto', sans-serif; color: #323232; background: #fff;
  outline: none; transition: border-color 0.15s, box-shadow 0.15s;
}
.field-input:focus { border-color: #ff9900; box-shadow: 0 0 0 3px rgba(255,153,0,0.1); }
.field-hint  { font-size: 0.73rem; color: #aaa; margin-top: 0.35rem; line-height: 1.45; }
.field-optional { font-weight: 400; color: #999; font-size: 0.73rem; margin-left: 0.35rem; }
.form-divider { border: none; border-top: 1px solid #f0f0f0; margin: 1.75rem 0 1.5rem; }

/* ============================================================
   SIGNUP PLAN SELECTOR
   ============================================================ */
.plan-col-label { font-size: 0.67rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: #999; margin-bottom: 1rem; }
.plan-cards     { display: flex; flex-direction: column; gap: 0.85rem; }
.plan-card {
  border: 2px solid #e0e0e0; border-radius: 10px;
  padding: 1.4rem 1.4rem 1.4rem 1.15rem;
  background: #fff; cursor: pointer;
  transition: border-color 0.15s, box-shadow 0.15s;
  display: grid; grid-template-columns: 20px 1fr;
  gap: 0.9rem; align-items: start; position: relative;
}
.plan-card:hover  { border-color: #ccc; box-shadow: 0 3px 12px rgba(0,0,0,0.08); }
.plan-card.selected { border-color: #ff9900; box-shadow: 0 0 0 3px rgba(255,153,0,0.14); }
.plan-radio {
  width: 18px; height: 18px; border-radius: 50%;
  border: 2px solid #ddd; background: #fff; flex-shrink: 0; margin-top: 4px;
  transition: border-color 0.15s; position: relative;
}
.plan-card.selected .plan-radio { border-color: #ff9900; }
.plan-card.selected .plan-radio::after {
  content: ''; position: absolute; inset: 3px; border-radius: 50%; background: #ff9900;
}
.plan-card[data-plan="essentials"].selected { border-color: #086171; box-shadow: 0 0 0 3px rgba(8,97,113,0.12); }
.plan-card[data-plan="essentials"].selected .plan-radio { border-color: #086171; }
.plan-card[data-plan="essentials"].selected .plan-radio::after { background: #086171; }
.plan-card[data-plan="pro"].selected { border-color: #5e1656; box-shadow: 0 0 0 3px rgba(94,22,86,0.12); }
.plan-card[data-plan="pro"].selected .plan-radio { border-color: #5e1656; }
.plan-card[data-plan="pro"].selected .plan-radio::after { background: #5e1656; }
.plan-popular-badge {
  position: absolute; top: -1px; right: 1.1rem;
  background: #ff9900; color: #fff;
  font-size: 0.58rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.2rem 0.55rem; border-radius: 0 0 4px 4px;
}
.plan-top {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 0.25rem; flex-wrap: wrap; gap: 0.4rem;
}
.plan-tier-name { font-size: 0.88rem; font-weight: 700; color: #323232; }
.plan-price     { font-family: 'Roboto Slab', serif; font-size: 1.35rem; font-weight: 700; color: #323232; }
.plan-price-mo  { font-family: 'Roboto', sans-serif; font-size: 0.78rem; font-weight: 300; color: #aaa; }
.plan-freq      { font-size: 0.72rem; color: #aaa; margin-bottom: 0.55rem; }
.plan-feature-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.28rem; }
.plan-feature-list li {
  font-size: 0.78rem; font-weight: 300; color: #666;
  padding-left: 1rem; position: relative; line-height: 1.4;
}
.plan-feature-list li::before { content: '\2713'; position: absolute; left: 0; font-weight: 700; font-size: 0.72rem; }
.plan-card[data-plan="essentials"] .plan-feature-list li::before { color: #086171; }
.plan-card[data-plan="growth"]     .plan-feature-list li::before { color: #ff9900; }
.plan-card[data-plan="pro"]        .plan-feature-list li::before { color: #5e1656; }
.signup-cta-block   { margin-top: 1.5rem; }
.btn-signup {
  display: block; width: 100%; text-align: center;
  background: #ff9900; color: #fff; font-weight: 700; font-size: 0.95rem;
  padding: 0.95rem 2rem; border-radius: 4px; border: none; cursor: pointer;
  font-family: 'Roboto', sans-serif; transition: background 0.15s;
}
.btn-signup:hover { background: #e68a00; }
.signup-trust-note { text-align: center; font-size: 0.75rem; font-weight: 300; color: #aaa; margin-top: 0.75rem; line-height: 1.5; }
.signup-signin-note { text-align: center; margin-top: 1.25rem; font-size: 0.8rem; font-weight: 300; color: #999; }
.signup-signin-note a { color: #ff9900; font-weight: 700; text-decoration: none; }
.signup-error-msg { color: #c0392b; font-size: 0.85rem; margin: 0.75rem 0 0; text-align: center; }

/* ============================================================
   COMPARE TABLE — SIGNUP PAGE
   ============================================================ */
.compare-table {
  width: 100%; border-collapse: collapse; font-size: 0.87rem; min-width: 580px;
}
.compare-table thead th {
  padding: 0.9rem 1.1rem; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
  font-weight: 700; border-bottom: 1px solid #3a3a3a; text-align: center;
}
.compare-table thead th:first-child { text-align: left; width: 44%; background: #323232; color: #888; border-radius: 8px 0 0 0; }
.th-essentials { background: #323232; color: #20808d; }
.th-growth     { background: #ff9900; color: #fff; border-bottom-color: #e68a00 !important; }
.th-growth-pill { font-size: 0.58rem; background: rgba(255,255,255,0.25); padding: 0.1rem 0.4rem; border-radius: 3px; letter-spacing: 0.06em; }
.th-pro        { background: #323232; color: #9b59b6; border-radius: 0 8px 0 0; }
.compare-table tbody td { padding: 0.75rem 1.1rem; border-bottom: 1px solid #eee; text-align: center; }
.compare-table tbody td:first-child { text-align: left; color: #555; }
.td-essentials { background: #fff; }
.td-growth     { background: rgba(255,153,0,0.04); }
.td-pro        { background: #fff; }
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table tbody tr:hover td { background: #fafafa; }
.compare-table tbody tr:hover td.td-growth { background: rgba(255,153,0,0.07); }
.compare-wrap { overflow-x: auto; }
.compare-check { color: #ff9900; font-size: 1rem; font-weight: 700; }
.compare-dash  { color: #ccc; font-size: 1rem; }
.compare-note  { font-size: 0.73rem; font-weight: 300; color: #888; display: block; margin-top: 0.1rem; }

/* ============================================================
   FREE AUDIT FORM GRID
   ============================================================ */
.free-grid   { display: grid; grid-template-columns: 1fr 360px; gap: 3rem; align-items: start; }
.signup-grid { display: grid; grid-template-columns: 1fr 400px; gap: 3rem; align-items: start; }

/* Submit / legal */
.form-submit-block { margin-top: 1.5rem; }
.btn-submit {
  display: block; width: 100%; text-align: center;
  background: #ff9900; color: #fff; font-weight: 700; font-size: 0.95rem;
  padding: 0.95rem 2rem; border-radius: 4px; border: none; cursor: pointer;
  font-family: 'Roboto', sans-serif; transition: background 0.15s;
}
.btn-submit:hover    { background: #e68a00; }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.form-legal-note {
  text-align: center; font-size: 0.73rem; font-weight: 300; color: #bbb; margin-top: 0.75rem; line-height: 1.5;
}
.form-legal-note a { color: #aaa; }
.form-error {
  margin-top: 0.85rem; padding: 0.65rem 0.9rem;
  background: #fff2f2; border: 1px solid #f5c0c0; border-radius: 6px;
  color: #c00; font-size: 0.85rem; display: none;
}

/* ============================================================
   VALUE CARD + UPSELL CARD (free-audit right column)
   ============================================================ */
.value-col   { display: flex; flex-direction: column; gap: 1.25rem; }
.value-card  { background: #f9f9f9; border-radius: 10px; padding: 1.6rem; }
.value-card-label {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: #ff9900; margin-bottom: 0.85rem;
}
.value-card-heading {
  font-family: 'Roboto Slab', serif; font-size: 1rem; font-weight: 700;
  color: #222; margin-bottom: 0.9rem; line-height: 1.3;
}
.value-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.55rem; }
.value-list li {
  font-size: 0.84rem; font-weight: 300; color: #555;
  padding-left: 1.2rem; position: relative; line-height: 1.5;
}
.value-list li::before { content: '\2713'; position: absolute; left: 0; color: #ff9900; font-weight: 700; font-size: 0.78rem; }
.value-divider { border: none; border-top: 1px solid #ebebeb; margin: 1.1rem 0; }
.value-note { font-size: 0.78rem; font-weight: 300; color: #888; line-height: 1.6; }
.upsell-card { border: 2px solid #ff9900; border-radius: 10px; padding: 1.6rem; background: #fff; }
.upsell-card-label {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: #999; margin-bottom: 0.85rem;
}
.upsell-card-heading {
  font-family: 'Roboto Slab', serif; font-size: 0.95rem; font-weight: 700;
  color: #222; margin-bottom: 0.55rem; line-height: 1.35;
}
.upsell-card-body { font-size: 0.82rem; font-weight: 300; color: #666; line-height: 1.65; margin-bottom: 1rem; }
.upsell-link { font-size: 0.82rem; font-weight: 700; color: #ff9900; text-decoration: none; }
.upsell-link:hover { text-decoration: underline; }

/* ============================================================
   CTA SECTIONS
   ============================================================ */
.cta-wrap {
  background: #ff9900; padding: 5.5rem 2rem; text-align: center;
}
.cta-h2  { font-family: 'Roboto Slab', serif; font-size: 2.2rem; font-weight: 700; color: #fff; margin-bottom: 0.75rem; line-height: 1.25; }
.cta-sub  { font-size: 1rem; color: rgba(255,255,255,0.85); margin-bottom: 2rem; }
.cta-note { font-size: 0.8rem; color: rgba(255,255,255,0.65); margin-top: 1rem; }
.cta-eyebrow { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 0.75rem; }

.cta-teal { background: #086171; padding: 4.5rem 2rem; text-align: center; }
.cta-teal-eyebrow { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 0.75rem; }
.cta-teal-h2 { font-family: 'Roboto Slab', serif; font-size: 1.9rem; font-weight: 700; color: #fff; margin-bottom: 0.75rem; line-height: 1.3; }
.cta-teal-sub { font-size: 1rem; color: rgba(255,255,255,0.75); margin-bottom: 2rem; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-teal-actions { display: flex; gap: 1rem; justify-content: center; align-items: center; flex-wrap: wrap; }

/* ============================================================
   HOW IT WORKS PAGE — HERO STRIP
   ============================================================ */
.hiw-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; max-width: 900px; margin: 0 auto;
  border-radius: 8px; overflow: hidden; border: 1px solid rgba(255,255,255,0.1);
}
.hiw-strip-step {
  background: rgba(12,12,20,0.58); backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1.25rem 1rem; display: flex; align-items: flex-start; gap: 0.8rem; text-align: left;
}
.hiw-strip-num {
  font-family: 'Roboto Slab', serif; font-size: 1.6rem; font-weight: 700; line-height: 1; flex-shrink: 0; margin-top: 2px;
}
.hiw-strip-num--1 { color: #ff9900; }
.hiw-strip-num--2 { color: #e03271; }
.hiw-strip-num--3 { color: #20808d; }
.hiw-strip-num--4 { color: #9b59b6; }
.hiw-strip-label { font-size: 0.78rem; font-weight: 700; color: #fff; line-height: 1.35; margin-bottom: 0.2rem; }
.hiw-strip-note  { font-size: 0.68rem; color: rgba(255,255,255,0.45); line-height: 1.4; }

/* ============================================================
   BIG FLOW (hiw page — what makes this different)
   ============================================================ */
.big-flow {
  display: grid; grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: flex-start; margin-top: 4rem; gap: 0;
}
.big-flow-step  { text-align: center; padding: 0 1.25rem; }
.big-flow-circle {
  width: 110px; height: 110px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem;
}
.big-flow-circle--purple { background: rgba(94,22,86,0.08); border: 2px solid #5e1656; }
.big-flow-circle--teal   { background: rgba(8,97,113,0.08);  border: 2px solid #086171; }
.big-flow-circle--pink   { background: rgba(224,50,113,0.08); border: 2px solid #e03271; }
.big-flow-arrow  { display: flex; align-items: center; padding-top: 44px; color: #444; }
.big-flow-title  { font-family: 'Roboto Slab', serif; font-size: 1rem; font-weight: 700; color: #323232; margin-bottom: 0.6rem; line-height: 1.3; }
.big-flow-title--light { color: #fff; }
.big-flow-desc   { font-size: 0.84rem; color: #666; line-height: 1.65; }
.big-flow-desc--light { color: #777; }

/* ============================================================
   BRANDED VS UNBRANDED
   ============================================================ */
.bvu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 3rem; }
.bvu-card { padding: 2.25rem; border-radius: 8px; border: 1px solid #eee; }
.bvu-card--branded   { background: #1a1a1a; border: 1px solid #2a2a2a; border-top: 4px solid #ff9900; }
.bvu-card--unbranded { background: #1a1a1a; border: 1px solid #2a2a2a; border-top: 4px solid #9b59b6; }
.bvu-tag {
  display: inline-block; font-size: 0.63rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 0.22rem 0.65rem; border-radius: 3px; margin-bottom: 1.1rem;
}
.bvu-tag--branded   { background: rgba(255,153,0,0.15); color: #ff9900; }
.bvu-tag--unbranded { background: rgba(94,22,86,0.3);   color: #c080c0; }
.bvu-icon  { margin-bottom: 1rem; }
.bvu-title { font-family: 'Roboto Slab', serif; font-size: 1.2rem; font-weight: 700; margin-bottom: 0.75rem; line-height: 1.3; color: #fff; }
.bvu-desc  { font-size: 0.9rem; color: #888; line-height: 1.7; margin-bottom: 1.25rem; }
.bvu-example {
  font-size: 0.85rem; font-style: italic;
  padding: 0.65rem 1rem; border-radius: 4px; line-height: 1.55; border-left: 3px solid;
}
.bvu-example--branded   { background: rgba(255,153,0,0.1);  color: #cc8800; border-left-color: #ff9900; }
.bvu-example--unbranded { background: rgba(94,22,86,0.2);   color: #c080c0; border-left-color: #9b59b6; }
.bvu-caption { font-size: 0.72rem; margin-top: 0.5rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
.bvu-caption--branded   { color: #ff9900; }
.bvu-caption--unbranded { color: #9b59b6; }

/* ============================================================
   QUESTION AREAS (hiw page)
   ============================================================ */
.qa-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 3rem; }
.qa-card { background: #fff; border-radius: 8px; padding: 1.6rem 1.4rem; box-shadow: 0 1px 6px rgba(0,0,0,0.07); border-top: 3px solid #ff9900; }
.qa-card--wide { grid-column: 1 / -1; display: grid; grid-template-columns: auto 1fr; gap: 1.5rem; align-items: start; background: #f9f5fa; border-top-color: #5e1656; }
.qa-card--teal   { border-top-color: #086171; }
.qa-card--purple { border-top-color: #5e1656; }
.qa-card--pink   { border-top-color: #e03271; }
.qa-icon  { margin-bottom: 0.85rem; }
.qa-badge {
  display: inline-block; font-size: 0.6rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 0.18rem 0.55rem; border-radius: 3px; margin-bottom: 0.65rem;
}
.qa-badge--orange  { background: #fff3e0; color: #cc7700; }
.qa-badge--teal    { background: #e6f2f3; color: #086171; }
.qa-badge--purple  { background: #f5eaf4; color: #5e1656; }
.qa-badge--pink    { background: #fde8ef; color: #c0205a; }
.qa-badge--unbranded { background: #f5eaf4; color: #5e1656; }
.qa-title { font-family: 'Roboto Slab', serif; font-size: 0.97rem; font-weight: 700; color: #323232; margin-bottom: 0.5rem; line-height: 1.3; }
.qa-title--lg { font-size: 1.1rem; }
.qa-desc  { font-size: 0.81rem; color: #666; line-height: 1.65; }

/* ============================================================
   4 PLATFORMS (hiw page)
   ============================================================ */
.plat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 3rem; }
.plat-card { background: #1a1a1a; border-radius: 8px; padding: 1.75rem; border-left: 4px solid #555; }
.plat-card--chatgpt    { border-left-color: #ffffff; }
.plat-card--claude     { border-left-color: #d97757; }
.plat-card--gemini     { border-left-color: #4285f4; }
.plat-card--perplexity { border-left-color: #20808d; }
.plat-header { display: flex; align-items: center; gap: 0.85rem; margin-bottom: 1rem; }
.plat-dot    { width: 14px; height: 14px; border-radius: 50%; flex-shrink: 0; }
.plat-dot--chatgpt    { background: #ffffff; }
.plat-dot--claude     { background: #d97757; }
.plat-dot--gemini     { background: #4285f4; }
.plat-dot--perplexity { background: #20808d; }
.plat-name   { font-family: 'Roboto Slab', serif; font-size: 1rem; font-weight: 700; }
.plat-name--chatgpt    { color: #fff; }
.plat-name--claude     { color: #d97757; }
.plat-name--gemini     { color: #4285f4; }
.plat-name--perplexity { color: #20808d; }
.plat-source {
  margin-left: auto; font-size: 0.6rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 0.2rem 0.55rem; border-radius: 3px; flex-shrink: 0;
}
.plat-source--chatgpt    { background: rgba(255,255,255,0.1); color: #aaa; }
.plat-source--claude     { background: rgba(217,119,87,0.15); color: #d97757; }
.plat-source--gemini     { background: rgba(66,133,244,0.15); color: #4285f4; }
.plat-source--perplexity { background: rgba(32,128,141,0.15); color: #20808d; }
.plat-desc    { font-size: 0.84rem; color: #888; line-height: 1.7; }
.plat-insight {
  margin-top: 1rem; font-size: 0.79rem; color: #555;
  padding: 0.65rem 0.9rem;
  background: rgba(255,255,255,0.04); border-left: 2px solid #444; border-radius: 2px;
  line-height: 1.55; font-style: italic;
}

/* ============================================================
   REPORT TIMELINE (hiw page)
   ============================================================ */
.rt-wrap { margin-top: 3.5rem; position: relative; }
.rt-connector {
  position: absolute; top: 24px; left: calc(12.5%); right: calc(12.5%);
  height: 2px; background: linear-gradient(to right, #ff9900, #e03271); z-index: 0;
}
.rt-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; position: relative; z-index: 1; }
.rt-step  { text-align: center; }
.rt-num {
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem;
  font-family: 'Roboto Slab', serif; font-size: 1.1rem; font-weight: 700; color: #fff;
}
.rt-num--orange { background: #ff9900; }
.rt-num--pink   { background: #e03271; }
.rt-num--teal   { background: #086171; }
.rt-num--purple { background: #5e1656; }
.rt-icon  { margin-bottom: 0.9rem; }
.rt-title { font-family: 'Roboto Slab', serif; font-size: 0.9rem; font-weight: 700; color: #323232; margin-bottom: 0.5rem; line-height: 1.35; }
.rt-desc  { font-size: 0.8rem; color: #666; line-height: 1.65; }

/* ============================================================
   RECURRING (hiw page — purple section)
   ============================================================ */
.recurring-visual {
  max-width: 700px; margin: 3rem auto 0;
  background: rgba(0,0,0,0.2); border-radius: 8px; padding: 1.75rem 2rem;
}
.recurring-viz-label {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.45); margin-bottom: 1.25rem;
}
.recurring-viz-note {
  font-size: 0.72rem; color: rgba(255,255,255,0.4); margin-top: 0.5rem; text-align: right;
}
.recurring-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.recurring-card { background: rgba(255,255,255,0.08); border-radius: 8px; padding: 1.6rem; border-top: 3px solid rgba(255,255,255,0.2); }
.recurring-card-icon  { margin-bottom: 1rem; }
.recurring-card-title { font-family: 'Roboto Slab', serif; font-size: 0.95rem; font-weight: 700; color: #fff; margin-bottom: 0.5rem; line-height: 1.3; }
.recurring-card-desc  { font-size: 0.82rem; color: rgba(255,255,255,0.65); line-height: 1.65; }

/* ============================================================
   SECONDARY / CONFIRMATION PAGES
   ============================================================ */
.page-centered {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  min-height: 60vh; padding: 4rem 2rem; text-align: center; flex: 1;
}
.error-code  { font-family: 'Roboto Slab', serif; font-size: 6rem; font-weight: 700; color: #ff9900; line-height: 1; margin: 0 0 0.5rem; }
.error-title { font-family: 'Roboto', sans-serif; font-size: 1.5rem; font-weight: 700; color: #323232; margin: 0 0 1rem; }
.error-body  { font-size: 1rem; color: #555; line-height: 1.6; margin: 0 0 2rem; }
.error-links { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }

.success-icon {
  width: 64px; height: 64px; border-radius: 50%; background: #ff9900;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 2rem;
}
.success-icon svg { width: 32px; height: 32px; fill: none; stroke: #fff; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.success-eyebrow { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: #ff9900; margin-bottom: 1rem; }
.success-h1  { font-family: 'Roboto', sans-serif; font-size: clamp(1.8rem, 4vw, 2.4rem); font-weight: 400; color: #222; margin-bottom: 1.25rem; }
.success-body { font-size: 1.05rem; font-weight: 300; color: #666; line-height: 1.7; max-width: 480px; margin: 0 auto 2rem; }
.success-email { display: inline-block; background: #f8f4ee; border: 1px solid #f0e8d8; border-radius: 6px; padding: 0.5rem 1rem; font-size: 0.9rem; font-weight: 700; color: #323232; margin-bottom: 2rem; }
.success-body--tight { margin-bottom: 0.5rem; }
.success-next { font-size: 0.82rem; font-weight: 300; color: #aaa; margin-top: 1rem; }
.success-next a { color: #ff9900; font-weight: 700; text-decoration: none; }

.cancel-eyebrow { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: #999; margin-bottom: 1rem; }
.cancel-h1   { font-family: 'Roboto', sans-serif; font-size: clamp(1.8rem, 4vw, 2.4rem); font-weight: 400; color: #222; margin-bottom: 1.25rem; }
.cancel-body { font-size: 1.05rem; font-weight: 300; color: #666; line-height: 1.7; max-width: 440px; margin: 0 auto 2rem; }
.cancel-contact { font-size: 0.82rem; font-weight: 300; color: #aaa; margin-top: 1.5rem; }
.cancel-contact a { color: #ff9900; font-weight: 700; text-decoration: none; }

.sent-wrap { width: 80%; max-width: 680px; margin: 0 auto; padding: 5rem 2rem 6rem; flex: 1; text-align: center; }
.sent-icon { width: 64px; height: 64px; background: #ff9900; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 2rem; font-size: 1.75rem; color: #fff; line-height: 1; }
.sent-h1   { font-family: 'Roboto Slab', serif; font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 700; color: #222; line-height: 1.2; margin-bottom: 1rem; }
.sent-sub  { font-size: 1.05rem; font-weight: 300; color: #555; line-height: 1.75; margin-bottom: 2.5rem; }
.sent-email { font-weight: 700; color: #323232; }
.sent-divider { border: none; border-top: 1px solid #eee; margin: 2.5rem 0 2rem; width: 100%; }
.sent-aside-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: #bbb; margin-bottom: 0.75rem; }
.sent-aside-body  { font-size: 0.88rem; font-weight: 300; color: #888; line-height: 1.65; max-width: 500px; margin: 0 auto 1.5rem; }
.sent-sample-btn  { background: #f2f2f2; color: #323232; display: inline-flex; border: none; cursor: pointer; }

/* Legal pages */
.legal-wrap  { max-width: 820px; margin: 0 auto; padding: 4rem 2rem 6rem; }
.legal-h1    { font-family: 'Roboto Slab', serif; font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 700; color: #323232; margin-bottom: 0.75rem; }
.legal-date  { font-size: 0.82rem; color: #999; margin-bottom: 2.5rem; }
.legal-divider { border: none; border-top: 1px solid #f0f0f0; margin: 2.5rem 0 1rem; }
.legal-footnote { font-size: 0.8rem; color: #bbb; }
.legal-footnote a { color: #ff9900; }
.legal-prose { font-size: 0.95rem; color: #444; line-height: 1.8; }
.legal-prose h2 { font-family: 'Roboto Slab', serif; font-size: 1.15rem; font-weight: 700; color: #323232; margin: 2rem 0 0.75rem; }
.legal-prose p  { margin-bottom: 1.25rem; }
.legal-prose ul { margin: 0.75rem 0 1.25rem 1.5rem; }
.legal-prose a  { color: #ff9900; text-decoration: underline; }

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: #1a1a1a; border-top: 1px solid #333;
  padding: 1rem 2rem; z-index: 9999;
  display: none;
}
.cookie-banner.visible { display: block; }
.cookie-banner-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap;
}
.cookie-banner-text { font-size: 0.83rem; color: #aaa; line-height: 1.5; flex: 1; min-width: 200px; }
.cookie-banner-actions { display: flex; gap: 0.75rem; flex-shrink: 0; }
.cookie-btn { padding: 0.5rem 1.1rem; border-radius: 4px; font-size: 0.82rem; font-weight: 700; cursor: pointer; border: none; font-family: 'Roboto', sans-serif; }
.cookie-btn--decline { background: transparent; border: 1px solid #555; color: #888; }
.cookie-btn--accept  { background: #ff9900; color: #fff; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  body              { overflow-x: hidden; }
  .nav              { padding: 0.75rem 1rem; }
  .nav-inner        { width: 100%; }
  .nav-links        { display: none; }
  .nav-cta--desktop { display: none; }
  .nav-mobile-bar   { display: block; padding: 0.6rem 1rem 0.9rem; }
  .nav-cta-bar      { display: block; width: 100%; text-align: center; }
  .plan-table-wrap--desktop { display: none; }
  .pricing-cards--mobile    { display: grid; }
}

@media (max-width: 960px) {
  .hero-inner       { grid-template-columns: 1fr; gap: 3rem; }
  .hero-h1          { font-size: 2rem; }
  .flow             { grid-template-columns: 1fr; }
  .flow-arrow       { display: none; }
  .flow-step        { padding: 1rem 0; border-bottom: 1px solid #eee; }
  .halluc-grid      { grid-template-columns: 1fr 1fr; }
  .steps            { grid-template-columns: 1fr; gap: 2rem; }
  .dims             { grid-template-columns: repeat(3, 1fr); }
  .local-grid       { grid-template-columns: 1fr; }
  .price-cards      { grid-template-columns: 1fr; }
  .stats-row        { grid-template-columns: repeat(2, 1fr); }
  .hiw-strip        { grid-template-columns: repeat(2, 1fr); }
  .big-flow         { grid-template-columns: 1fr; }
  .big-flow-arrow   { display: none; }
  .bvu-grid         { grid-template-columns: 1fr; }
  .qa-grid          { grid-template-columns: repeat(2, 1fr); }
  .qa-card--wide    { grid-template-columns: 1fr; }
  .plat-grid        { grid-template-columns: 1fr; }
  .rt-steps         { grid-template-columns: repeat(2, 1fr); }
  .rt-connector     { display: none; }
  .recurring-cards  { grid-template-columns: 1fr; }
  .free-grid        { grid-template-columns: 1fr; }
  .signup-grid      { grid-template-columns: 1fr; }
  .faq-2col         { grid-template-columns: 1fr; }
  .faq-2col .faq-item--left, .faq-2col .faq-item--right,
  .faq-2col .faq-item--bottom-left, .faq-2col .faq-item--bottom-right {
    padding: 1.5rem 0; border-left: none;
    border-bottom: 1px solid #ebebeb;
  }
  .faq-2col .faq-item--bottom-left, .faq-2col .faq-item--bottom-right {
    border-bottom: none;
  }
}

@media (max-width: 680px) {
  /* ── Plan table tab switcher ── */
  .plan-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 0;
    border-bottom: 2px solid #e8e8e8;
  }
  .plan-tab {
    flex: 1;
    padding: 0.6rem 0.5rem;
    font-family: 'Roboto', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    background: #f7f7f7;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    cursor: pointer;
    color: #888;
    letter-spacing: 0.01em;
    transition: color 0.15s, border-color 0.15s;
  }
  .plan-tab--active[data-plan="ess"] { color: #20808d; border-bottom-color: #20808d; background: #fff; }
  .plan-tab--active[data-plan="gro"] { color: #ff9900; border-bottom-color: #ff9900; background: #fff; }
  .plan-tab--active[data-plan="pro"] { color: #9b59b6; border-bottom-color: #9b59b6; background: #fff; }
  .plan-table thead th:first-child { width: 62%; }

  /* Hide non-active plan columns */
  .plan-table-wrap[data-active="ess"] .plan-th--gro,
  .plan-table-wrap[data-active="ess"] .td-gro,
  .plan-table-wrap[data-active="ess"] .plan-th--pro,
  .plan-table-wrap[data-active="ess"] .td-pro { display: none; }

  .plan-table-wrap[data-active="gro"] .plan-th--ess,
  .plan-table-wrap[data-active="gro"] .td-ess,
  .plan-table-wrap[data-active="gro"] .plan-th--pro,
  .plan-table-wrap[data-active="gro"] .td-pro { display: none; }

  .plan-table-wrap[data-active="pro"] .plan-th--ess,
  .plan-table-wrap[data-active="pro"] .td-ess,
  .plan-table-wrap[data-active="pro"] .plan-th--gro,
  .plan-table-wrap[data-active="pro"] .td-gro { display: none; }

  /* Active Growth header keeps its orange bg without border-radius loss */
  .plan-table-wrap[data-active="gro"] .plan-th--gro { border-radius: 0 8px 0 0; }
  .plan-table-wrap[data-active="ess"] .plan-th--ess { border-radius: 0 8px 0 0; }
}

@media (max-width: 600px) {
  .hero-visual    { grid-template-columns: 1fr; }
  .halluc-grid    { grid-template-columns: 1fr; }
  .dims           { grid-template-columns: repeat(2, 1fr); }
  .hiw-strip      { grid-template-columns: 1fr; }
  .qa-grid        { grid-template-columns: 1fr; }
  .rt-steps       { grid-template-columns: 1fr; }
  .stats-row      { grid-template-columns: 1fr; }
  .trust-bar      { gap: 1.5rem; }
  .field-row      { grid-template-columns: 1fr; }
  .section-white, .section-gray, .section-dark, .section-halluc, .section-purple, .section-teal { padding: 3.5rem 1.25rem; }
  .hero--narrow, .hero, .hero--hiw { padding: 3rem 1.25rem; }
  .hero-wrap--narrow, .hero-wrap { min-height: 300px; }
  .hero-wrap--hiw { min-height: 400px; }
  .cta-wrap       { padding: 3.5rem 1.25rem; }
  .cta-teal       { padding: 3rem 1.25rem; }
  .sent-wrap      { width: 100%; padding: 3rem 1.25rem 4rem; }
}
