/* ============================================================
   EMBER — Shared Stylesheet
   Fonts: Plus Jakarta Sans (body) + Playfair Display (accent)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&family=Playfair+Display:ital,wght@1,400;1,500&display=swap');

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }

/* ── Tokens ── */
:root {
  --gold: #9A7B2F;
  --gold-light: #C4A84F;
  --charcoal: #2C2B29;
  --off-white: #F8F7F4;
  --border: #E4E2DC;
  --border-light: #EEECE7;
  --text-primary: #1A1917;
  --text-secondary: #5C5A55;
  --text-tertiary: #9A9891;
  --bg-primary: #FFFFFF;
  --bg-secondary: #F8F7F4;
  --bg-accent: #F2EFE8;
  --bg-page: #E9E6DF;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow: 0 1px 3px rgba(0,0,0,0.06), 0 4px 16px rgba(0,0,0,0.04);
  --max-width: 1180px;
  --measure: 760px;
  --page-pad: 2.5rem;
}

/* ── Base ── */
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-page);
  -webkit-font-smoothing: antialiased;
}

/* ── Layout ── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--page-pad);
}

/* Keep long-form reading comfortable inside the wide container */
.legal-section { max-width: var(--measure); }
.contact-form { max-width: var(--measure); }
.sub-form { max-width: 540px; }

/* ── NAV ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(233,230,223,0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--page-pad);
  display: flex;
  align-items: center;
  height: 76px;
  gap: 0.25rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-right: 1rem;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo img {
  height: 26px;
  width: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex: 1;
}
.nav-links a {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--charcoal);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  transition: color 0.15s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a.active { color: var(--gold); }
.nav-cta {
  margin-left: auto;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--charcoal);
  background: transparent;
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gold);
  white-space: nowrap;
  transition: background 0.18s, color 0.18s;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-cta:hover { background: var(--gold); color: #fff; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  margin-left: auto;
  cursor: pointer;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 0.75rem var(--page-pad) 1rem;
  background: var(--bg-primary);
  border-top: 1px solid var(--border-light);
  gap: 0.25rem;
}
.nav-mobile a {
  font-size: 14px;
  color: var(--text-secondary);
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  display: block;
}
.nav-mobile a.active { color: var(--text-primary); font-weight: 500; }
.nav-mobile .nav-cta-mobile {
  margin-top: 0.5rem;
  font-size: 14px;
  font-weight: 500;
  color: var(--bg-primary);
  background: var(--charcoal);
  padding: 11px 16px;
  border-radius: var(--radius-md);
  text-align: center;
  display: block;
}

/* ── SECTIONS ── */
.section {
  padding: 2.25rem 0;
  border-bottom: 1px solid var(--border-light);
}
.section:last-of-type { border-bottom: none; }

.section-label {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.625rem;
}

/* ── TYPOGRAPHY ── */
.h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}
.h1 em, .h2 em, .h3 em {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--text-secondary);
}
.h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--text-primary);
  margin-bottom: 0.875rem;
}
.h3 {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.eyebrow::before {
  content: "";
  width: 42px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.body-text {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.body-text strong { color: var(--text-primary); font-weight: 500; }
.body-text a { color: var(--gold); text-decoration: underline; }
.small-text {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.7;
}
.small-text strong { color: var(--text-primary); font-weight: 500; }

.pull-quote {
  border-left: 2px solid var(--gold-light);
  padding-left: 1rem;
  margin: 1.25rem 0;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: var(--bg-primary);
  background: var(--charcoal);
  padding: 14px 26px;
  border-radius: var(--radius-md);
  border: none;
  transition: background 0.15s;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary:hover { background: var(--gold); }
.btn-secondary {
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  color: var(--text-secondary);
  background: transparent;
  padding: 14px 26px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: border-color 0.15s, color 0.15s;
  text-decoration: none;
  white-space: nowrap;
}
.btn-secondary:hover { border-color: var(--text-secondary); color: var(--text-primary); }
.btn-outline {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-primary);
  background: var(--bg-primary);
  padding: 8px 14px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: border-color 0.15s;
  text-decoration: none;
}
.btn-outline:hover { border-color: var(--charcoal); }
.btn-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}

/* ── CARDS ── */
.card {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
}
.card-featured {
  background: var(--bg-primary);
  border: 2px solid var(--gold-light);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
}
.badge {
  display: inline-block;
  font-size: 11px;
  padding: 3px 9px;
  border-radius: 20px;
  margin-bottom: 0.625rem;
}
.badge-gold { background: #F5EDD4; color: var(--gold); }
.badge-green { background: #E8F5E9; color: #2E7D32; }
.badge-muted { background: var(--bg-secondary); color: var(--text-tertiary); }
.badge-blue { background: #E8F0FE; color: #1A56DB; }

/* ── STATS ── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 1.25rem;
}
.stat-box {
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  padding: 0.875rem;
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--text-primary);
}
.stat-label {
  font-size: 11px;
  color: var(--text-secondary);
  line-height: 1.4;
  margin-top: 3px;
}

/* ── GRID LAYOUTS ── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.three-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.disciplines-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.disc-card {
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  padding: 0.75rem 0.875rem;
}
.disc-title { font-size: 12px; font-weight: 500; color: var(--text-primary); margin-bottom: 3px; }
.disc-tags { font-size: 11px; color: var(--text-tertiary); line-height: 1.5; }

/* ── ABOUT HERO ── */
.about-hero {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1.5rem;
  align-items: start;
  margin-bottom: 1.25rem;
}
.about-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--border);
  flex-shrink: 0;
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.about-name { font-size: 20px; font-weight: 500; color: var(--text-primary); margin-bottom: 3px; }
.about-title { font-size: 13px; color: var(--text-secondary); margin-bottom: 10px; }
.about-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.about-tag {
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 20px;
  background: var(--bg-secondary);
  color: var(--text-secondary);
}

/* ── SERVICES ── */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.service-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.125rem 1.375rem;
  background: var(--bg-primary);
}
.service-item.featured { border: 2px solid var(--gold-light); grid-column: 1 / -1; }
.service-top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}
.service-title { font-size: 13px; font-weight: 500; color: var(--text-primary); }
.service-badge {
  font-size: 10px;
  padding: 2px 7px;
  border-radius: 20px;
  background: #F5EDD4;
  color: var(--gold);
}
.service-desc { font-size: 12px; color: var(--text-secondary); line-height: 1.55; }
.service-proof {
  font-size: 11px;
  color: var(--text-tertiary);
  margin-top: 5px;
  font-style: italic;
  font-family: 'Playfair Display', serif;
}

/* ── PROCESS STEPS ── */
.process-step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border-light);
  align-items: start;
}
.process-step:last-child { border-bottom: none; }
.step-num {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 24px;
  color: var(--text-tertiary);
  padding-top: 2px;
}
.step-title { font-size: 13px; font-weight: 500; color: var(--text-primary); margin-bottom: 4px; }
.step-desc { font-size: 12px; color: var(--text-secondary); line-height: 1.6; }
.step-badge {
  display: inline-block;
  font-size: 10px;
  padding: 2px 7px;
  border-radius: 20px;
  background: #E8F0FE;
  color: #1A56DB;
  margin-top: 6px;
}

/* ── PHONE DEMO ── */
.demo-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 1.5rem;
  align-items: start;
  margin-top: 1.25rem;
}
.phone-frame {
  width: 240px;
  background: #1A1A1A;
  border-radius: 32px;
  padding: 10px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
  flex-shrink: 0;
}
.phone-notch {
  width: 70px;
  height: 5px;
  background: #3A3A3A;
  border-radius: 3px;
  margin: 0 auto 8px;
}
.phone-screen {
  background: #F2F2F7;
  border-radius: 24px;
  overflow: hidden;
}
.phone-header {
  background: #F2F2F7;
  padding: 10px 14px 7px;
  border-bottom: 1px solid #E0E0E5;
  text-align: center;
}
.phone-contact { font-size: 12px; font-weight: 600; color: #1C1C1E; }
.phone-sub { font-size: 9px; color: #8E8E93; margin-top: 1px; }
.messages {
  padding: 8px;
  max-height: 400px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: #F2F2F7;
}
.msg { max-width: 82%; }
.msg.ember { align-self: flex-start; }
.msg.simon { align-self: flex-end; }
.bubble {
  padding: 7px 10px;
  border-radius: 14px;
  font-size: 10.5px;
  line-height: 1.45;
}
.msg.ember .bubble { background: #E5E5EA; color: #1C1C1E; border-bottom-left-radius: 3px; }
.msg.simon .bubble { background: #007AFF; color: white; border-bottom-right-radius: 3px; }
.msg-time { font-size: 8.5px; color: #8E8E93; margin-top: 2px; }
.msg.ember .msg-time { padding-left: 3px; }
.msg.simon .msg-time { text-align: right; padding-right: 3px; }

.alert-card {
  background: var(--bg-primary);
  border: 2px solid #34C759;
  border-radius: var(--radius-lg);
  padding: 1.125rem;
}
.alert-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  color: #34C759;
  margin-bottom: 0.625rem;
}
.alert-badge::before { content: '●'; font-size: 7px; }
.alert-title { font-size: 12px; font-weight: 500; color: var(--text-primary); margin-bottom: 0.75rem; line-height: 1.4; }
.alert-row { display: flex; gap: 0.5rem; margin-bottom: 4px; }
.alert-label { font-size: 10px; color: var(--text-tertiary); width: 90px; flex-shrink: 0; }
.alert-val { font-size: 10px; color: var(--text-primary); font-weight: 500; line-height: 1.4; }
.alert-val.hot { color: #34C759; font-weight: 600; }
.alert-divider { border: none; border-top: 1px solid var(--border-light); margin: 0.625rem 0; }
.alert-note {
  font-size: 11px;
  color: var(--text-secondary);
  line-height: 1.5;
  font-style: italic;
  font-family: 'Playfair Display', serif;
}
.outcome-box {
  margin-top: 0.75rem;
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  padding: 0.875rem;
}
.outcome-title { font-size: 12px; font-weight: 500; color: var(--text-primary); margin-bottom: 3px; }
.outcome-desc { font-size: 11px; color: var(--text-secondary); line-height: 1.5; }

/* ── COMPARISON TABLE ── */
.table-wrap { overflow-x: auto; margin-top: 1.25rem; }
.comparison-table { width: 100%; border-collapse: collapse; font-size: 12px; }
.comparison-table th {
  text-align: left;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-tertiary);
  padding: 0.625rem 0.875rem;
  border-bottom: 1px solid var(--border);
  background: var(--bg-secondary);
}
.comparison-table td {
  padding: 0.75rem 0.875rem;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-secondary);
  vertical-align: top;
  line-height: 1.5;
}
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table td:first-child { font-weight: 500; color: var(--text-primary); width: 28%; }
.comparison-table td.ember-col { color: var(--text-primary); }

/* ── PRICING ── */
.pricing-card {
  border: 2px solid var(--gold-light);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.price-big {
  font-size: 24px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.price-label {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  font-family: 'Playfair Display', serif;
  font-style: italic;
}
.price-points { list-style: none; display: flex; flex-direction: column; gap: 7px; margin-bottom: 1.25rem; }
.price-points li {
  font-size: 13px;
  color: var(--text-secondary);
  display: flex;
  gap: 8px;
  line-height: 1.5;
}
.price-points li::before { content: '✓'; color: #34C759; font-weight: 500; flex-shrink: 0; }
.price-divider { border: none; border-top: 1px solid var(--border-light); margin: 1.25rem 0; }
.price-note { font-size: 12px; color: var(--text-tertiary); line-height: 1.6; }

/* ── CALCULATOR ── */
.calc-box {
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.calc-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.calc-label { font-size: 11px; font-weight: 500; color: var(--text-secondary); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.04em; }
.calc-val { font-family: 'Playfair Display', serif; font-style: italic; font-size: 20px; color: var(--text-primary); }
.calc-divider { border: none; border-top: 1px solid var(--border); margin: 1rem 0; }
.calc-results { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.calc-result-label { font-size: 11px; color: var(--text-tertiary); margin-bottom: 3px; }
.calc-result-val { font-family: 'Playfair Display', serif; font-style: italic; font-size: 22px; color: var(--text-primary); }
.calc-result-val.fee { font-size: 16px; color: var(--gold); }
.calc-note { font-size: 11px; color: var(--text-tertiary); margin-top: 0.75rem; line-height: 1.5; }

/* ── ACHIEVEMENTS ── */
.achievements-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.achievement-item {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1rem 1.125rem;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1rem;
  align-items: center;
}
.ach-num {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--text-primary);
}
.ach-label { font-size: 13px; color: var(--text-secondary); line-height: 1.5; }
.ach-label strong { color: var(--text-primary); font-weight: 500; }

/* ── APPROACH ── */
.approach-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 1.25rem; }
.approach-card {
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  padding: 1rem 1.125rem;
}
.approach-num {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 16px;
  color: var(--text-tertiary);
  margin-bottom: 5px;
}
.approach-title { font-size: 13px; font-weight: 500; color: var(--text-primary); margin-bottom: 4px; }
.approach-desc { font-size: 12px; color: var(--text-secondary); line-height: 1.55; }

/* ── CAROUSEL ── */
.carousel { position: relative; overflow: hidden; margin-top: 1.25rem; }
.carousel-track { display: flex; gap: 1rem; transition: transform 0.4s ease; }
.carousel-slide { flex: 0 0 100%; display: flex; }
/* Show three endorsements at a time on larger screens. The 2rem subtracted
   accounts for the two 1rem gaps that sit between the three visible cards. */
@media (min-width: 641px) {
  .carousel-slide { flex: 0 0 calc((100% - 2rem) / 3); }
}
.endorsement-card {
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  flex: 1;
}
.end-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}
.end-person { display: flex; align-items: center; gap: 0.75rem; }
.end-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #E8F0FE;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 500;
  color: #1A56DB;
  flex-shrink: 0;
}
.end-name { font-size: 13px; font-weight: 500; color: var(--text-primary); }
.end-role { font-size: 11px; color: var(--text-tertiary); margin-top: 1px; }
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1rem;
}
.carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s;
}
.carousel-dot.active { background: var(--text-primary); }
.carousel-btn {
  font-size: 16px;
  color: var(--text-tertiary);
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 4px 10px;
  cursor: pointer;
  transition: border-color 0.15s;
}
.carousel-btn:hover { border-color: var(--text-secondary); }

/* ── TOOLS SECTION ── */
.tools-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 1.25rem; }
.tool-card {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
}
.tool-card.featured { border: 2px solid var(--gold-light); }
.tool-title { font-size: 13px; font-weight: 500; color: var(--text-primary); margin-bottom: 4px; }
.tool-desc { font-size: 12px; color: var(--text-secondary); line-height: 1.55; flex: 1; }
.tool-cta {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  color: var(--gold);
  margin-top: 1rem;
  padding: 7px 14px;
  border: 1px solid var(--gold-light);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: background 0.15s;
}
.tool-cta:hover { background: #F5EDD4; }
.tool-meta { font-size: 11px; color: var(--text-tertiary); margin-top: 1rem; padding-top: 0.75rem; border-top: 1px solid var(--border-light); }

/* ── CTA BLOCK ── */
.cta-block {
  background: var(--bg-secondary);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  text-align: center;
}
.cta-block .h2 { margin-bottom: 0.5rem; }
.cta-sub { font-size: 14px; color: var(--text-secondary); margin-bottom: 1.5rem; line-height: 1.6; }
.cta-btns { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }

/* ── SCORECARD GRID ── */
.scorecard-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 1.25rem; }
.scorecard-card {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.375rem;
  display: flex;
  flex-direction: column;
}
.scorecard-card.featured { border: 2px solid var(--gold-light); }
.sc-title { font-size: 14px; font-weight: 500; color: var(--text-primary); margin-bottom: 5px; }
.sc-desc { font-size: 12px; color: var(--text-secondary); line-height: 1.55; flex: 1; margin-bottom: 1rem; }
.sc-meta { font-size: 11px; color: var(--text-tertiary); margin-bottom: 1rem; }

/* ── CONTACT FORM ── */
.contact-form { display: flex; flex-direction: column; gap: 12px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.form-input, .form-select, .form-textarea {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  color: var(--text-primary);
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  outline: none;
  transition: border-color 0.15s;
  width: 100%;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--charcoal); }
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-tertiary); }
.form-textarea { resize: vertical; min-height: 100px; }
.form-submit {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--bg-primary);
  background: var(--charcoal);
  border: none;
  border-radius: var(--radius-md);
  padding: 11px 20px;
  cursor: pointer;
  align-self: flex-start;
  transition: background 0.15s;
}
.form-submit:hover { background: var(--gold); }
.form-note { font-size: 11px; color: var(--text-tertiary); line-height: 1.6; margin-top: 4px; }

/* ── DIRECT CONTACT ── */
.direct-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 1.25rem; }
.direct-card { background: var(--bg-secondary); border-radius: var(--radius-md); padding: 1rem 1.125rem; }
.direct-label { font-size: 11px; color: var(--text-tertiary); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.04em; }
.direct-val { font-size: 13px; font-weight: 500; color: var(--text-primary); }

/* ── SUBSCRIPTION ── */
.sub-block {
  padding: 2rem 0;
  border-top: 1px solid var(--border-light);
  margin-top: 2rem;
}
.sub-headline { font-size: 16px; font-weight: 500; color: var(--text-primary); margin-bottom: 4px; }
.sub-headline em { font-family: 'Playfair Display', serif; font-style: italic; color: var(--text-secondary); }
.sub-desc { font-size: 13px; color: var(--text-tertiary); margin-bottom: 1rem; }
.sub-form { display: flex; gap: 8px; }
.sub-input {
  flex: 1;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  color: var(--text-primary);
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 9px 14px;
  outline: none;
}
.sub-input::placeholder { color: var(--text-tertiary); }
.sub-btn {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--bg-primary);
  background: var(--charcoal);
  border: none;
  border-radius: var(--radius-md);
  padding: 9px 18px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s;
}
.sub-btn:hover { background: var(--gold); }
.sub-note { font-size: 11px; color: var(--text-tertiary); margin-top: 0.625rem; }

/* ── FOOTER ── */
.footer {
  border-top: 1px solid var(--border-light);
  padding: 1.5rem 0;
  margin-top: 0;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--page-pad);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-logo img { height: 22px; width: auto; }
.footer-links { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.footer-links a { font-size: 12px; color: var(--text-tertiary); transition: color 0.15s; }
.footer-links a:hover { color: var(--text-primary); }

/* ── LEGAL PAGES ── */
.legal-section {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-light);
}
.legal-section:last-of-type { border-bottom: none; }
.section-num {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}
.legal-h2 { font-size: 16px; font-weight: 500; color: var(--text-primary); margin-bottom: 0.875rem; }
.legal-h3 { font-size: 13px; font-weight: 500; color: var(--text-primary); margin-bottom: 0.5rem; margin-top: 1rem; }
.legal-body { font-size: 13px; color: var(--text-secondary); line-height: 1.75; margin-bottom: 0.625rem; }
.legal-body strong { color: var(--text-primary); font-weight: 500; }
.legal-list { list-style: none; display: flex; flex-direction: column; gap: 5px; margin: 0.625rem 0; }
.legal-list li { font-size: 13px; color: var(--text-secondary); line-height: 1.6; padding-left: 1rem; position: relative; }
.legal-list li::before { content: '—'; position: absolute; left: 0; color: var(--text-tertiary); }
.def-grid { display: flex; flex-direction: column; gap: 0; margin: 0.75rem 0; }
.def-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1rem;
  padding: 0.625rem 0;
  border-bottom: 1px solid var(--border-light);
}
.def-row:last-child { border-bottom: none; }
.def-term { font-size: 12px; font-weight: 500; color: var(--text-primary); }
.def-desc { font-size: 12px; color: var(--text-secondary); line-height: 1.6; }
.cookie-table { width: 100%; border-collapse: collapse; font-size: 11px; margin: 0.75rem 0; }
.cookie-table th {
  text-align: left;
  padding: 0.5rem 0.75rem;
  background: var(--bg-secondary);
  color: var(--text-tertiary);
  font-weight: 500;
  border-bottom: 1px solid var(--border);
}
.cookie-table td { padding: 0.625rem 0.75rem; border-bottom: 1px solid var(--border-light); color: var(--text-secondary); vertical-align: top; line-height: 1.5; }
.cookie-table tr:last-child td { border-bottom: none; }
.cookie-table td:first-child { font-family: monospace; font-size: 11px; color: var(--text-primary); }
.cookie-badge { display: inline-block; font-size: 10px; padding: 1px 6px; border-radius: 10px; }
.cookie-essential { background: #E8F5E9; color: #2E7D32; }
.cookie-analytics { background: #E8F0FE; color: #1A56DB; }
.cookie-marketing { background: #FFF8E1; color: #F57F17; }

/* ── GAP CARDS ── */
.gap-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 1.25rem 0; }
.gap-card { background: var(--bg-secondary); border-radius: var(--radius-md); padding: 1rem 1.125rem; }
.gap-num { font-family: 'Playfair Display', serif; font-style: italic; font-size: 22px; color: var(--text-tertiary); margin-bottom: 6px; }
.gap-title { font-size: 13px; font-weight: 500; color: var(--text-primary); margin-bottom: 4px; }
.gap-desc { font-size: 12px; color: var(--text-secondary); line-height: 1.5; }

/* ── NOTE BOX ── */
.note-box {
  font-size: 12px;
  color: var(--text-tertiary);
  line-height: 1.6;
  padding: 0.875rem 1.125rem;
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  margin-top: 0.5rem;
}
.note-box strong { color: var(--text-secondary); font-weight: 500; }

/* ── OPTION CARDS ── */
.option-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
}
.option-card.featured { border: 2px solid var(--gold-light); }
.option-title { font-size: 13px; font-weight: 500; color: var(--text-primary); margin-bottom: 4px; }
.option-desc { font-size: 12px; color: var(--text-secondary); line-height: 1.55; flex: 1; margin-bottom: 1rem; }
.option-meta { font-size: 11px; font-weight: 500; margin-bottom: 1rem; }
.meta-gold { color: var(--gold); }
.meta-muted { color: var(--text-tertiary); }

/* ── BENEFITS GRID ── */
.benefits-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 1.25rem; }
.benefit-card { background: var(--bg-secondary); border-radius: var(--radius-md); padding: 0.875rem 1rem; }
.benefit-title { font-size: 12px; font-weight: 500; color: var(--text-primary); margin-bottom: 3px; }
.benefit-desc { font-size: 11px; color: var(--text-secondary); line-height: 1.5; }

/* ── TRUST BADGES ── */
.trust-badges {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}
.trust-badge { font-size: 12px; color: var(--text-tertiary); }
.trust-badge::before { content: '✓ '; color: #34C759; }

/* ── HERO INTRO (homepage) ── */
.hero-intro {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1.5rem;
  align-items: start;
  margin-bottom: 1.25rem;
}
.hero-photo {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--border);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }

/* ============================================================
   MOBILE RESPONSIVE — max-width: 640px
   ============================================================ */
@media (max-width: 640px) {
  :root { --page-pad: 1.25rem; }

  /* Nav */
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .nav-mobile.open { display: flex; }

  /* Typography */
  .h1 { font-size: clamp(30px, 8vw, 40px); }
  .h2 { font-size: clamp(20px, 5vw, 26px); }

  /* Grids → single column */
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .two-col { grid-template-columns: 1fr; }
  .three-col { grid-template-columns: 1fr; }
  .disciplines-grid { grid-template-columns: 1fr 1fr; }
  .approach-grid { grid-template-columns: 1fr; }
  .tools-grid { grid-template-columns: 1fr; }
  .scorecard-grid { grid-template-columns: 1fr; }
  .gap-cards { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .direct-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  /* About hero */
  .about-hero { grid-template-columns: 1fr; }
  .about-photo { width: 90px; height: 90px; }

  /* Hero intro */
  .hero-intro { grid-template-columns: 1fr; }
  .hero-photo { width: 90px; height: 90px; }

  /* Demo layout — stack */
  .demo-layout { grid-template-columns: 1fr; }
  .phone-frame { width: 100%; max-width: 280px; margin: 0 auto; }

  /* Process step */
  .process-step { grid-template-columns: 36px 1fr; }

  /* Achievement */
  .achievements-grid { grid-template-columns: 1fr; }
  .achievement-item { grid-template-columns: 70px 1fr; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }

  /* Table */
  .table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }

  /* CTA */
  .cta-block { padding: 1.75rem 1.25rem; }
  .cta-btns { flex-direction: column; align-items: center; }

  /* Sub form */
  .sub-form { flex-direction: column; }

  /* Footer */
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 0.75rem; }

  /* Buttons */
  .btn-row { flex-direction: column; }
  .btn-row a, .btn-row button { width: 100%; text-align: center; }

  /* Section padding */
  .section { padding: 1.25rem 0; }

  /* Def row */
  .def-row { grid-template-columns: 1fr; gap: 4px; }

  /* Stats grid - 2 col on mobile */
  .calc-row { grid-template-columns: 1fr; }
  .calc-results { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   COOKIE CONSENT BANNER
   ============================================================ */
.cc-banner {
  position: fixed;
  left: 50%;
  bottom: 1.25rem;
  transform: translate(-50%, calc(100% + 2rem));
  width: calc(100% - 2rem);
  max-width: 760px;
  z-index: 1000;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 40px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.06);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}
.cc-banner.cc-visible { transform: translate(-50%, 0); opacity: 1; }
.cc-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem 1.5rem;
}
.cc-text { flex: 1; min-width: 0; }
.cc-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.cc-desc { font-size: 12.5px; line-height: 1.55; color: var(--text-secondary); }
.cc-desc a { color: var(--gold); text-decoration: underline; }
.cc-actions { display: flex; gap: 0.5rem; flex-shrink: 0; }
.cc-btn {
  font-size: 12.5px;
  font-weight: 500;
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-primary);
  color: var(--text-primary);
  white-space: nowrap;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.cc-btn:hover { background: var(--bg-secondary); border-color: var(--text-tertiary); }
.cc-btn-primary {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: #fff;
}
.cc-btn-primary:hover { background: #000; border-color: #000; color: #fff; }

/* Preferences panel */
.cc-prefs {
  border-top: 1px solid var(--border-light);
  padding: 1.25rem 1.5rem;
}
.cc-pref-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-light);
}
.cc-pref-row:first-child { padding-top: 0; }
.cc-pref-row:last-of-type { border-bottom: none; }
.cc-pref-name { font-size: 13px; font-weight: 600; color: var(--text-primary); margin-bottom: 2px; }
.cc-pref-name .cc-tag { font-size: 10px; font-weight: 500; color: var(--gold); margin-left: 6px; }
.cc-pref-desc { font-size: 11.5px; line-height: 1.5; color: var(--text-secondary); }
.cc-prefs-footer { display: flex; justify-content: flex-end; margin-top: 1rem; }

/* Toggle switch */
.cc-switch { position: relative; flex-shrink: 0; width: 38px; height: 22px; }
.cc-switch input { opacity: 0; width: 0; height: 0; }
.cc-slider {
  position: absolute;
  inset: 0;
  background: var(--border);
  border-radius: 22px;
  transition: background 0.2s ease;
}
.cc-slider::before {
  content: "";
  position: absolute;
  height: 16px;
  width: 16px;
  left: 3px;
  top: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.2s ease;
  box-shadow: 0 1px 2px rgba(0,0,0,0.2);
}
.cc-switch input:checked + .cc-slider { background: var(--gold); }
.cc-switch input:checked + .cc-slider::before { transform: translateX(16px); }
.cc-switch input:disabled + .cc-slider { background: var(--gold-light); opacity: 0.55; cursor: not-allowed; }

@media (max-width: 640px) {
  .cc-inner { flex-direction: column; align-items: stretch; gap: 1rem; padding: 1.1rem 1.1rem; }
  .cc-actions { flex-wrap: wrap; }
  .cc-actions .cc-btn { flex: 1 1 auto; text-align: center; }
  .cc-prefs { padding: 1.1rem; }
}
