/* =========================================================
   LegalGEN — Design v2
   Theme: #0190B2 (brand) · #017a96 (brand-dark) · #F5F1E8 (cream)
   Fonts: Fraunces (stylish display) · Inter (body)
   ========================================================= */
@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700;9..144,800&family=Inter:wght@400;500;600;700&display=swap");

:root {
  --brand: #0190B2;
  --brand-dark: #017a96;
  --brand-deep: #015f76;
  --brand-light: #e6f6fa;
  --cream: #F5F1E8;
  --cream-dark: #ece6d6;
  --cream-deep: #e3dcc8;
  --ink: #15262d;
  --ink-soft: #4a5c66;
  --ink-mute: #6b7b85;
  --white: #ffffff;
  --gold: #b9791f;
  --border: #ddd5c2;
  --line: rgba(21, 38, 45, 0.08);
  --shadow-sm: 0 2px 8px rgba(1, 96, 118, 0.06);
  --shadow: 0 14px 40px rgba(1, 96, 118, 0.12);
  --shadow-lg: 0 26px 60px rgba(1, 96, 118, 0.18);
  --radius: 10px;
  --radius-lg: 16px;
  --display: "Fraunces", "Georgia", serif;
  --font: "Inter", "Segoe UI", sans-serif;
  --max: 1180px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.18;
  color: var(--ink);
}

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

a { color: var(--brand); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--brand-dark); }

ul { list-style: none; }

.container { width: min(100% - 2.5rem, var(--max)); margin-inline: auto; }

/* ——— Top bar ——— */
.topbar {
  background: var(--brand-deep);
  color: var(--white);
  font-size: 0.82rem;
  padding: 0.4rem 0;
}
.topbar .container { display: flex; justify-content: flex-end; gap: 1.5rem; flex-wrap: wrap; }
.topbar a { color: var(--white); opacity: 0.9; }
.topbar a:hover { opacity: 1; text-decoration: underline; }

/* ——— Header / Nav ——— */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(8px);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 0.9rem 0; }

.logo-block { display: flex; flex-direction: column; gap: 0.15rem; flex-shrink: 0; text-decoration: none; }
.logo-block:hover { color: inherit; }
.logo-img {
  height: 46px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
  /* keep the PNG transparent — no background */
  background: transparent;
}
.logo-text {
  font-family: var(--display);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--ink-mute);
  letter-spacing: -0.03em;
  line-height: 1;
}
.logo-text .gen { color: var(--brand); font-weight: 700; font-style: italic; }
.logo-block .tagline {
  font-family: var(--font);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--brand);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding-left: 0.1rem;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.4rem 0.7rem;
  cursor: pointer;
  color: var(--ink);
  font-size: 1.1rem;
}

.main-nav { display: flex; align-items: center; gap: 0.1rem; }
.main-nav > a,
.nav-dropdown > button {
  color: var(--ink);
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius);
  background: none;
  border: none;
  cursor: pointer;
}
.main-nav > a:hover,
.nav-dropdown > button:hover,
.main-nav > a.active { color: var(--brand); background: var(--brand-light); }

.nav-dropdown { position: relative; }
.nav-dropdown > button::after { content: " ▾"; font-size: 0.7em; opacity: 0.6; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 0.5rem;
  z-index: 50;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.open .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  padding: 0.6rem 0.8rem;
  color: var(--ink);
  font-size: 0.9rem;
  border-radius: 6px;
}
.dropdown-menu a:hover { background: var(--brand-light); color: var(--brand); }

.nav-cta { display: flex; align-items: center; gap: 0.5rem; margin-left: 0.5rem; }

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.35rem;
  border-radius: 100px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.9rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s, transform .15s, box-shadow .2s;
  text-align: center;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--brand); color: var(--white); border-color: var(--brand); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--brand-dark); border-color: var(--brand-dark); color: var(--white); box-shadow: var(--shadow); }
.btn-outline { background: transparent; color: var(--brand); border-color: var(--brand); }
.btn-outline:hover { background: var(--brand); color: var(--white); }
.btn-cream { background: var(--cream); color: var(--brand); border-color: var(--cream); }
.btn-cream:hover { background: var(--white); color: var(--brand-dark); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--brand); color: var(--brand); }
.btn-gold { background: var(--gold); color: var(--white); border-color: var(--gold); }
.btn-gold:hover { background: #9c671a; border-color: #9c671a; color: var(--white); }
.btn-sm { padding: 0.45rem 1rem; font-size: 0.84rem; }
.btn-lg { padding: 0.9rem 1.8rem; font-size: 1rem; }
.btn-block { width: 100%; }

/* ——— Hero ——— */
.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(150deg, var(--brand) 0%, var(--brand-dark) 55%, var(--brand-deep) 100%);
  color: var(--white);
  padding: 5.5rem 0 5rem;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 85% 15%, rgba(245, 241, 232, 0.16), transparent 60%),
    radial-gradient(ellipse 50% 40% at 10% 85%, rgba(255, 255, 255, 0.08), transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 70px;
  background: var(--cream);
  clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 60%);
}
.hero .container { position: relative; z-index: 1; max-width: 980px; text-align: center; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.92;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 100px;
  margin-bottom: 1.25rem;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.3rem, 5.5vw, 4rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  margin-bottom: 0.85rem;
  font-optical-sizing: auto;
}
.hero h1 em { font-style: italic; color: #ffe9b8; }
.hero .hero-sub {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  font-weight: 400;
  opacity: 0.95;
  margin-bottom: 1.25rem;
}
.hero .hero-body {
  max-width: 60ch;
  margin: 0 auto;
  font-size: 1.08rem;
  opacity: 0.9;
  margin-bottom: 0.75rem;
}
.hero .hero-punch {
  font-family: var(--display);
  font-size: clamp(1.25rem, 2.4vw, 1.5rem);
  font-weight: 600;
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }
.hero .btn-primary { background: var(--cream); color: var(--brand-dark); border-color: var(--cream); }
.hero .btn-primary:hover { background: var(--white); color: var(--brand-deep); }
.hero .btn-outline { color: var(--white); border-color: rgba(255, 255, 255, 0.7); }
.hero .btn-outline:hover { background: var(--white); color: var(--brand); border-color: var(--white); }

/* ——— Sections ——— */
.section { padding: 4.5rem 0; }
.section-alt { background: var(--white); }
.section-cream { background: var(--cream); }
.section-brand { background: linear-gradient(150deg, var(--brand-dark), var(--brand-deep)); color: var(--white); }

.section-head { text-align: center; max-width: 680px; margin: 0 auto 3rem; }
.section-head h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.6rem);
  margin-bottom: 0.7rem;
}
.section-head p { color: var(--ink-soft); font-size: 1.08rem; }
.section-brand .section-head h2 { color: var(--white); }
.section-brand .section-head p { color: rgba(255, 255, 255, 0.88); }

.section-label {
  display: inline-block;
  font-family: var(--display);
  font-style: italic;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--brand);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

/* ——— Solution cards ——— */
.solutions-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }

.solution-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: box-shadow .25s, border-color .25s, transform .25s;
  overflow: hidden;
}
.solution-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand), var(--brand-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.solution-card:hover { box-shadow: var(--shadow); border-color: transparent; transform: translateY(-4px); }
.solution-card:hover::before { transform: scaleX(1); }
.solution-card.featured { border-color: var(--brand); box-shadow: var(--shadow); }

.badge {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--brand-light);
  color: var(--brand-dark);
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}
.badge.popular { background: var(--gold); color: var(--white); }
.badge.soon { background: var(--ink-mute); color: var(--white); }
.badge.price { background: var(--cream); color: var(--brand-dark); }

.solution-card h3 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.solution-card .price {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--brand);
  margin-bottom: 1rem;
}
.solution-card .price span { font-family: var(--font); font-size: 0.82rem; font-weight: 500; color: var(--ink-mute); }
.solution-card .desc { color: var(--ink-soft); font-size: 0.96rem; margin-bottom: 1rem; }
.solution-card ul { margin-bottom: 1.5rem; flex: 1; }
.solution-card li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--ink-soft);
  font-size: 0.94rem;
}
.solution-card li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.55em;
  width: 0.7em; height: 0.7em;
  background: var(--brand);
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M20 6L9 17l-5-5' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M20 6L9 17l-5-5' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/contain no-repeat;
}
.card-actions { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: auto; padding-top: 1rem; border-top: 1px solid var(--line); }

/* ——— Advantages ——— */
.advantages { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.advantage {
  text-align: center;
  padding: 1.75rem 1rem;
}
.advantage .ico {
  width: 56px; height: 56px;
  margin: 0 auto 1.1rem;
  background: var(--brand-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  font-family: var(--display);
  font-style: italic;
  font-size: 1.5rem;
  font-weight: 600;
}
.section-brand .advantage .ico { background: rgba(255, 255, 255, 0.15); color: var(--white); }
.advantage h3 { font-size: 1.2rem; margin-bottom: 0.45rem; }
.advantage p { font-size: 0.93rem; color: var(--ink-soft); }
.section-brand .advantage h3 { color: var(--white); }
.section-brand .advantage p { color: rgba(255, 255, 255, 0.85); }

/* ——— Feature chips ——— */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.9rem; }
.feature-item {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem 1.2rem;
  font-size: 0.94rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 500;
}
.feature-item::before {
  content: "";
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--brand);
  flex-shrink: 0;
}
.section-alt .feature-item { background: var(--cream); }

/* ——— ROI steps ——— */
.roi-flow { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; counter-reset: roi; }
.roi-step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  position: relative;
  text-align: center;
}
.roi-step::before {
  counter-increment: roi;
  content: counter(roi, decimal-leading-zero);
  font-family: var(--display);
  font-style: italic;
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--brand);
  margin-bottom: 0.85rem;
}
.roi-step h3 { font-size: 1.25rem; margin-bottom: 0.45rem; }
.roi-step p { font-size: 0.92rem; color: var(--ink-soft); }

/* ——— Pricing ——— */
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; align-items: stretch; }
.pricing-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.4rem;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: box-shadow .2s, transform .2s;
}
.pricing-card:hover { box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.pricing-card.featured { border: 2px solid var(--brand); box-shadow: var(--shadow); position: relative; }
.pricing-card.featured::before {
  content: "Most Popular";
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  white-space: nowrap;
}
.pricing-card h3 { font-size: 1.3rem; margin-bottom: 0.75rem; }
.pricing-card .amount {
  font-family: var(--display);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--brand);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.pricing-card .amount small { font-family: var(--font); font-size: 0.85rem; font-weight: 500; color: var(--ink-mute); }
.pricing-card .note { font-size: 0.82rem; color: var(--ink-mute); margin-bottom: 1.25rem; min-height: 2.4em; }

.volume-note {
  background: var(--brand-light);
  border-left: 4px solid var(--brand);
  padding: 1.25rem 1.5rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-top: 2rem;
  font-size: 0.98rem;
  color: var(--ink);
}
.volume-note strong { color: var(--brand); }

/* ——— Page hero (inner pages) ——— */
.page-hero {
  position: relative;
  background: linear-gradient(150deg, var(--brand) 0%, var(--brand-dark) 60%, var(--brand-deep) 100%);
  color: var(--white);
  padding: 3.5rem 0 3rem;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 50px;
  background: var(--cream);
  clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 70%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 0.5rem;
}
.page-hero p { opacity: 0.92; max-width: 60ch; font-size: 1.08rem; }
.breadcrumb { font-size: 0.85rem; margin-bottom: 0.75rem; opacity: 0.85; }
.breadcrumb a { color: var(--white); text-decoration: underline; text-underline-offset: 2px; }

/* ——— Content layout ——— */
.content-block { max-width: 760px; }
.content-block h2 { font-size: 1.75rem; margin: 2.25rem 0 0.75rem; }
.content-block h2:first-child { margin-top: 0; }
.content-block h3 { font-size: 1.25rem; margin: 1.75rem 0 0.5rem; }
.content-block p { margin-bottom: 1rem; color: var(--ink-soft); }
.content-block ul.check { margin: 1rem 0 1.5rem; }
.content-block ul.check li {
  padding-left: 1.6rem;
  position: relative;
  margin-bottom: 0.55rem;
  color: var(--ink-soft);
}
.content-block ul.check li::before { content: "✔"; position: absolute; left: 0; color: var(--brand); font-weight: 700; }

.lead {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--brand-dark);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.two-col { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 3rem; align-items: start; }
.side-cta {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  position: sticky;
  top: 5.5rem;
  box-shadow: var(--shadow-sm);
}
.side-cta h3 { font-size: 1.4rem; margin-bottom: 0.4rem; }
.side-cta .price { font-family: var(--display); font-size: 2rem; font-weight: 600; color: var(--brand); margin-bottom: 0.25rem; }
.side-cta .price span { font-family: var(--font); font-size: 0.9rem; font-weight: 500; color: var(--ink-mute); }
.side-cta p { font-size: 0.92rem; color: var(--ink-soft); margin-bottom: 1.25rem; }
.side-cta .btn { width: 100%; margin-bottom: 0.5rem; }

/* ——— Forms ——— */
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 0.35rem; color: var(--ink); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--white);
  color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(1, 144, 178, 0.15);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-note {
  background: var(--brand-light);
  border-radius: var(--radius);
  padding: 0.9rem 1.1rem;
  font-size: 0.88rem;
  color: var(--brand-dark);
  margin-top: 0.5rem;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}
.contact-card h3 { margin-bottom: 0.5rem; }
.contact-info { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1rem; }
.contact-info a { font-weight: 600; font-size: 1.05rem; display: inline-flex; align-items: center; gap: 0.5rem; }

/* ——— Stories / Resources ——— */
.story-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.story-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: box-shadow .2s, transform .2s;
}
.story-card:hover { box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.story-card h3 { font-size: 1.4rem; margin-bottom: 0.5rem; }
.story-card p { color: var(--ink-soft); margin-bottom: 1rem; font-size: 0.95rem; }

.partner-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.partner-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  text-align: center;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--ink);
}
.partner-item span { display: block; font-family: var(--font); font-size: 0.82rem; font-weight: 400; color: var(--ink-mute); margin-top: 0.3rem; }

/* ——— Steps (how it works) ——— */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 1.5rem; }
.step { text-align: center; padding: 1.75rem 1rem; }
.step-num {
  width: 44px; height: 44px;
  background: var(--brand);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.2rem;
  margin: 0 auto 1rem;
}
.step h4 { font-size: 1.2rem; margin-bottom: 0.4rem; }
.step p { font-size: 0.92rem; color: var(--ink-soft); }

/* ——— Stat band ——— */
.stat-band { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; text-align: center; }
.stat .num { font-family: var(--display); font-size: clamp(2.5rem, 5vw, 3.5rem); font-weight: 600; color: var(--cream); line-height: 1; }
.stat .num.brand { color: var(--brand); }
.stat .lbl { font-size: 0.95rem; opacity: 0.9; margin-top: 0.4rem; }
.section-brand .stat .lbl { color: rgba(255, 255, 255, 0.85); }

/* ——— Media placeholder ——— */
.media-placeholder {
  background: linear-gradient(145deg, var(--brand-light), var(--cream-dark));
  border: 1px dashed var(--brand);
  border-radius: var(--radius-lg);
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
  color: var(--brand);
  font-family: var(--display);
  font-weight: 600;
  text-align: center;
  padding: 1.5rem;
  cursor: pointer;
  transition: box-shadow .2s;
}
.media-placeholder:hover { box-shadow: var(--shadow-sm); }
.media-placeholder small { font-family: var(--font); font-weight: 400; color: var(--ink-mute); font-size: 0.85rem; }

/* ——— CTA band ——— */
.cta-band {
  background: linear-gradient(150deg, var(--brand) 0%, var(--brand-deep) 100%);
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 0%, rgba(245, 241, 232, 0.12), transparent 60%);
}
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 { color: var(--white); font-size: clamp(1.8rem, 3.5vw, 2.4rem); margin-bottom: 0.6rem; }
.cta-band p { opacity: 0.92; margin-bottom: 1.75rem; max-width: 520px; margin-inline: auto; }
.cta-band .hero-actions { justify-content: center; }

/* ——— Footer ——— */
.site-footer { background: var(--ink); color: rgba(255, 255, 255, 0.82); padding: 3.5rem 0 1.5rem; font-size: 0.9rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 2.5rem; }
.footer-brand .footer-logo {
  font-family: var(--display);
  font-size: 1.7rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.3rem;
}
.footer-brand .footer-logo .gen { color: #5ec8e0; font-style: italic; }
.footer-brand .logo-img {
  height: 40px;
  max-width: 190px;
  margin-bottom: 0.65rem;
  background: transparent;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}
.footer-brand .tagline { color: #5ec8e0; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-brand p { color: rgba(255, 255, 255, 0.6); font-size: 0.88rem; max-width: 32ch; }
.footer-col h4 { color: var(--white); font-family: var(--font); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.9rem; font-weight: 700; }
.footer-col a { display: block; color: rgba(255, 255, 255, 0.68); padding: 0.28rem 0; font-size: 0.92rem; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.25rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.82rem;
}

/* ——— Modal ——— */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(21, 38, 45, 0.6);
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  backdrop-filter: blur(2px);
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  max-width: 440px;
  width: 100%;
  box-shadow: var(--shadow-lg);
}
.modal h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.modal p { color: var(--ink-soft); margin-bottom: 1.25rem; font-size: 0.95rem; }
.modal-close { float: right; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--ink-mute); line-height: 1; }

/* ——— Utilities ——— */
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); }

/* ——— Logo scroller ——— */
.logo-scroller {
  position: relative;
  overflow: hidden;
  padding: 1.5rem 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.logo-track {
  display: flex;
  align-items: center;
  gap: 3.5rem;
  width: max-content;
  animation: scroll-logos 32s linear infinite;
}
.logo-track:hover { animation-play-state: paused; }
.logo-track .client-logo {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--ink-mute);
  white-space: nowrap;
  opacity: 0.75;
  transition: opacity .2s, color .2s;
}
.logo-track .client-logo:hover { opacity: 1; color: var(--brand); }
@keyframes scroll-logos {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ——— Testimonial ——— */
.testimonial {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  max-width: 760px;
  margin: 0 auto;
}
.testimonial .quote {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  font-weight: 400;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 1.5rem;
  position: relative;
}
.testimonial .quote::before {
  content: "\201C";
  font-family: var(--display);
  font-size: 3.5rem;
  color: var(--brand);
  position: absolute;
  top: -1.5rem;
  left: -0.5rem;
  opacity: 0.25;
  line-height: 1;
}
.testimonial .person { display: flex; align-items: center; gap: 1rem; }
.testimonial .avatar {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.testimonial .who { font-weight: 700; color: var(--ink); }
.testimonial .role { font-size: 0.88rem; color: var(--ink-mute); }

/* ——— Talk to AI / CEO band ——— */
.talk-ai {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}
.talk-ai h2 { font-size: clamp(1.8rem, 3.4vw, 2.4rem); margin-bottom: 0.75rem; }
.talk-ai p { color: var(--ink-soft); margin-bottom: 1.5rem; }
.ai-chat-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}
.ai-chat-card .chat-head {
  display: flex; align-items: center; gap: 0.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 1rem;
}
.ai-chat-card .avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--brand), var(--brand-deep)); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; }
.ai-chat-card .who { font-weight: 700; font-size: 0.95rem; }
.ai-chat-card .role { font-size: 0.8rem; color: var(--ink-mute); }
.ai-chat-card .bubble {
  background: var(--cream);
  border-radius: 14px 14px 14px 4px;
  padding: 0.85rem 1.1rem;
  font-size: 0.92rem;
  color: var(--ink);
  margin-bottom: 0.6rem;
  max-width: 90%;
}
.ai-chat-card .bubble.user { background: var(--brand); color: #fff; border-radius: 14px 14px 4px 14px; margin-left: auto; }
.ai-chat-actions { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.25rem; }

/* ——— Options grid (4 CTAs) ——— */
.options-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.option-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.4rem;
  text-align: center;
  transition: box-shadow .2s, transform .2s, border-color .2s;
}
.option-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); border-color: var(--brand); }
.option-card .ico {
  width: 48px; height: 48px; margin: 0 auto 1rem;
  background: var(--brand-light); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--brand); font-size: 1.3rem;
}
.option-card h3 { font-size: 1.2rem; margin-bottom: 0.4rem; }
.option-card p { font-size: 0.9rem; color: var(--ink-soft); margin-bottom: 1rem; }
.option-card a { font-weight: 600; color: var(--brand); font-size: 0.9rem; }
.option-card a:hover { text-decoration: underline; }

/* ——— Newsletter ——— */
.newsletter {
  display: flex; gap: 0.6rem; flex-wrap: wrap;
  max-width: 460px; margin: 0 auto;
}
.newsletter input {
  flex: 1; min-width: 200px;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-family: inherit; font-size: 0.95rem;
}
.newsletter input:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(1,144,178,.15); }

/* ——— Competitor matrix ——— */
.matrix-wrap { overflow-x: auto; }
.matrix {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  min-width: 560px;
}
.matrix th, .matrix td { padding: 1rem 1.25rem; text-align: left; font-size: 0.92rem; border-bottom: 1px solid var(--line); }
.matrix thead th { background: var(--brand); color: #fff; font-family: var(--font); font-weight: 600; font-size: 0.85rem; }
.matrix tbody th { font-family: var(--display); font-weight: 600; color: var(--ink); background: var(--cream); }
.matrix td.has { color: var(--brand-dark); font-weight: 600; }
.matrix td.no { color: var(--ink-mute); }
.matrix td .yes { color: var(--brand); font-weight: 700; }
.matrix td .no-x { color: var(--ink-mute); }
.matrix tr:last-child td, .matrix tr:last-child th { border-bottom: none; }

/* ——— Risk-free band ——— */
.risk-free {
  background: linear-gradient(150deg, var(--cream), var(--cream-dark));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.risk-free h2 { font-size: clamp(1.7rem, 3vw, 2.2rem); margin-bottom: 0.6rem; }
.risk-free p { color: var(--ink-soft); margin-bottom: 1.75rem; max-width: 50ch; margin-inline: auto; }
.risk-free .form-row-inline { display: flex; gap: 0.6rem; flex-wrap: wrap; max-width: 520px; margin: 0 auto; }
.risk-free .form-row-inline input { flex: 1; min-width: 180px; padding: 0.8rem 1.1rem; border: 1px solid var(--border); border-radius: 100px; font-family: inherit; }
.risk-free .form-row-inline input:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(1,144,178,.15); }

/* ——— Big ROI stats (homepage) ——— */
.roi-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.roi-stat-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
}
.roi-stat-card .big {
  font-family: var(--display);
  font-size: clamp(2.2rem, 4.5vw, 3rem);
  font-weight: 600;
  color: var(--brand);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.roi-stat-card .lbl { font-size: 0.95rem; color: var(--ink-soft); }
.roi-stat-card .sub { font-size: 0.82rem; color: var(--ink-mute); margin-top: 0.3rem; }

/* ——— Volume pricing highlight ——— */
.volume-highlight {
  background: linear-gradient(150deg, var(--brand), var(--brand-deep));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  text-align: center;
  margin-bottom: 2rem;
}
.volume-highlight h2 { color: #fff; font-size: clamp(1.7rem, 3vw, 2.2rem); margin-bottom: 0.6rem; }
.volume-highlight p { color: rgba(255,255,255,.9); max-width: 56ch; margin: 0 auto 0.5rem; }
.volume-highlight .new-badge { display: inline-block; background: var(--gold); color: #fff; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.3rem 0.8rem; border-radius: 100px; margin-bottom: 1rem; }

@media (max-width: 980px) {
  .talk-ai { grid-template-columns: 1fr; }
  .options-grid { grid-template-columns: repeat(2, 1fr); }
  .roi-stats { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .options-grid { grid-template-columns: 1fr; }
}


@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; }
.reveal.in { animation: fadeUp .7s ease forwards; }

/* ——— Responsive ——— */
@media (max-width: 980px) {
  .solutions-grid, .pricing-grid, .roi-flow, .advantages, .stat-band { grid-template-columns: repeat(2, 1fr); }
  .features-grid, .steps, .partner-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .side-cta { position: static; }
}

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem;
    gap: 0.15rem;
    box-shadow: var(--shadow);
  }
  .main-nav.open { display: flex; }
  .nav-cta { margin-left: 0; margin-top: 0.5rem; flex-direction: column; }
  .nav-cta .btn { width: 100%; }
  .dropdown-menu { position: static; box-shadow: none; border: none; display: none; padding-left: 0.75rem; }
  .nav-dropdown.open .dropdown-menu { display: block; }
  .solutions-grid, .pricing-grid, .roi-flow, .advantages,
  .features-grid, .steps, .story-grid, .partner-grid, .footer-grid, .stat-band { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero { padding: 3.5rem 0 3rem; }
  .header-inner { flex-wrap: wrap; }
  .logo-img { height: 38px; max-width: 170px; }
}

/* =========================================================
   PHASE 2 — Ecosystem components
   ========================================================= */

/* ——— Ecosystem switcher (single top bar in header) ——— */
.eco-switcher {
  background: var(--brand-deep);
  color: var(--white);
  font-size: 0.8rem;
  padding: 0.4rem 0;
}
.eco-switcher .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.eco-switcher .eco-group {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: wrap;
}
.eco-switcher .eco-label {
  opacity: 0.7;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-right: 0.25rem;
}
.eco-switcher a {
  color: var(--white);
  padding: 0.2rem 0.85rem;
  border-radius: 100px;
  font-weight: 600;
  opacity: 0.85;
  transition: background .2s, opacity .2s;
}
.eco-switcher a:hover { background: rgba(255,255,255,.14); opacity: 1; }
.eco-switcher a.active { background: var(--cream); color: var(--brand-deep); opacity: 1; }
.eco-switcher .eco-contact a { padding: 0.2rem 0.5rem; opacity: 0.8; font-weight: 500; }
.eco-switcher .eco-contact a:hover { opacity: 1; text-decoration: underline; }
.eco-switcher .eco-sep { opacity: 0.4; margin: 0 0.1rem; }

@media (max-width: 768px) {
  .eco-switcher .container { justify-content: center; }
  .eco-switcher .eco-contact { display: none; }
}

/* ——— Pillar cards (ecosystem hub) ——— */
.pillar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.pillar-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.85rem;
  display: flex;
  flex-direction: column;
  transition: box-shadow .25s, transform .25s, border-color .25s;
  overflow: hidden;
}
.pillar-card::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--brand), var(--brand-deep));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.pillar-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); border-color: transparent; }
.pillar-card:hover::after { transform: scaleX(1); }
.pillar-card .pillar-ico {
  width: 60px; height: 60px;
  background: var(--brand-light);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--brand);
  font-size: 1.8rem;
  margin-bottom: 1.25rem;
}
.pillar-card .pillar-eyebrow {
  font-family: var(--display);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--brand);
  margin-bottom: 0.4rem;
}
.pillar-card h3 { font-size: 1.55rem; margin-bottom: 0.6rem; }
.pillar-card p { color: var(--ink-soft); font-size: 0.95rem; margin-bottom: 1.25rem; }
.pillar-card ul { margin-bottom: 1.5rem; }
.pillar-card li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.45rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.pillar-card li::before { content: "✓"; position: absolute; left: 0; color: var(--brand); font-weight: 700; }
.pillar-card .pillar-cta { margin-top: auto; }

/* ——— Families hero variant ——— */
.hero.hero-families {
  background: linear-gradient(150deg, #017a96 0%, #015f76 60%, #014556 100%);
}
.hero.hero-families .hero-punch { color: #ffe9b8; }

/* ——— Founder story block ——— */
.founder-story {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3rem;
  align-items: center;
}
.founder-photo {
  background: linear-gradient(145deg, var(--brand-light), var(--cream-dark));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  text-align: center;
  padding: 2rem;
  font-family: var(--display);
}
.founder-photo .initials { font-size: 3.5rem; font-weight: 600; margin-bottom: 0.5rem; }
.founder-photo small { font-family: var(--font); font-size: 0.85rem; color: var(--ink-mute); }
.founder-story .lead { font-size: 1.35rem; }
.founder-story p { color: var(--ink-soft); margin-bottom: 1rem; }

/* ——— Good / Better / Best tier cards ——— */
.tier-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.tier-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s, transform .2s;
}
.tier-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.tier-card.featured { border: 2px solid var(--brand); box-shadow: var(--shadow); position: relative; }
.tier-card.featured::before {
  content: "Most Popular";
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  white-space: nowrap;
}
.tier-card .tier-tag {
  font-family: var(--display);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--brand);
  margin-bottom: 0.3rem;
}
.tier-card h3 { font-size: 1.4rem; margin-bottom: 0.75rem; }
.tier-card .tier-desc { color: var(--ink-soft); font-size: 0.92rem; margin-bottom: 1.25rem; flex: 1; }
.tier-card .tier-audience { font-size: 0.85rem; color: var(--ink-mute); margin-bottom: 1rem; font-style: italic; }

/* ——— Families product cards ——— */
.prod-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.prod-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: box-shadow .2s, transform .2s, border-color .2s;
  display: flex;
  flex-direction: column;
}
.prod-card:hover { box-shadow: var(--shadow-sm); transform: translateY(-2px); border-color: var(--brand); }
.prod-card .prod-ico { font-size: 1.6rem; margin-bottom: 0.75rem; }
.prod-card h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.prod-card p { color: var(--ink-soft); font-size: 0.9rem; margin-bottom: 1rem; flex: 1; }
.prod-card .includes { font-size: 0.84rem; color: var(--ink-mute); margin-bottom: 1rem; }
.prod-card .includes li { padding-left: 1.1rem; position: relative; margin-bottom: 0.25rem; }
.prod-card .includes li::before { content: "·"; position: absolute; left: 0.3rem; color: var(--brand); font-weight: 700; }

/* ——— Specialty products chips ——— */
.specialty-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.9rem; }
.specialty-chip {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink);
  transition: background .2s, color .2s, border-color .2s;
}
.specialty-chip:hover { background: var(--brand); color: #fff; border-color: var(--brand); }

/* ——— Families pricing table ——— */
.fam-price-wrap { overflow-x: auto; }
.fam-price {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  min-width: 640px;
}
.fam-price th, .fam-price td { padding: 1.1rem 1.25rem; text-align: left; border-bottom: 1px solid var(--line); font-size: 0.92rem; }
.fam-price thead th { background: var(--brand); color: #fff; font-weight: 600; font-size: 0.88rem; }
.fam-price tbody th { font-family: var(--display); font-weight: 600; color: var(--ink); background: var(--cream); }
.fam-price .price-cell { font-weight: 600; color: var(--brand-dark); }
.fam-price .consult-cell { font-size: 0.85rem; color: var(--ink-mute); }
.fam-price tr:last-child th, .fam-price tr:last-child td { border-bottom: none; }

/* ——— Service-level selector (on product pages) ——— */
.level-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin: 1.5rem 0; }
.level-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
}
.level-card .lvl-name { font-weight: 600; color: var(--ink); margin-bottom: 0.3rem; }
.level-card .lvl-desc { font-size: 0.85rem; color: var(--ink-soft); }

/* ——— Learning center category cards ——— */
.learn-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.learn-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: box-shadow .2s, transform .2s;
}
.learn-card:hover { box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.learn-card h3 { font-size: 1.25rem; margin-bottom: 0.85rem; }
.learn-card ul li {
  padding: 0.4rem 0;
  font-size: 0.92rem;
  border-bottom: 1px solid var(--cream-dark);
}
.learn-card ul li:last-child { border-bottom: none; }
.learn-card ul li a { color: var(--ink); display: flex; justify-content: space-between; align-items: center; }
.learn-card ul li a:hover { color: var(--brand); }
.learn-card ul li a::after { content: "→"; color: var(--brand); opacity: 0; transition: opacity .2s; }
.learn-card ul li a:hover::after { opacity: 1; }

/* ——— AI pillar (CEO focus) ——— */
.ai-hero-quote {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.4;
  max-width: 20ch;
}

/* ——— How it works (families) ——— */
.how-steps { counter-reset: hstep; display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; }
.how-step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.25rem;
  text-align: center;
  position: relative;
}
.how-step::before {
  counter-increment: hstep;
  content: counter(hstep);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  background: var(--brand);
  color: #fff;
  border-radius: 50%;
  font-family: var(--display);
  font-weight: 600;
  margin: 0 auto 0.85rem;
}
.how-step h4 { font-size: 1.05rem; margin-bottom: 0.35rem; }
.how-step p { font-size: 0.85rem; color: var(--ink-soft); }

/* ——— Ecosystem explainer (hub) ——— */
.eco-flow { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; align-items: center; text-align: center; }
.eco-node {
  background: var(--brand-light);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1rem;
}
.eco-node .big { font-family: var(--display); font-size: 1.8rem; color: var(--brand); font-weight: 600; }
.eco-node .lbl { font-size: 0.9rem; color: var(--ink-soft); }
.eco-arrow { font-size: 2rem; color: var(--brand); font-weight: 700; }

/* ——— Responsive: Phase 2 ——— */
@media (max-width: 980px) {
  .pillar-grid, .tier-grid, .prod-grid, .founder-story, .learn-grid { grid-template-columns: 1fr; }
  .specialty-grid { grid-template-columns: repeat(2, 1fr); }
  .how-steps { grid-template-columns: repeat(2, 1fr); }
  .eco-flow { grid-template-columns: 1fr; }
  .eco-arrow { transform: rotate(90deg); }
}
@media (max-width: 768px) {
  .how-steps, .specialty-grid, .level-grid { grid-template-columns: 1fr; }
}
