/* =========================================================
   LaserPulse common stylesheet
   - Shared styles live at top level
   - Page-specific styles are scoped under body.page-*
   ========================================================= */

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

:root {
  --orange: #E8521A;
  --orange-light: rgba(232,82,26,0.12);
  --dark: #2C2C2A;
  --navy: #0D1422;
  --ink: #1A1A18;
  --darker: #1A1A18;
  --text: #2C2C2A;
  --text-muted: #5F5E5A;
  --gray-mid: #888780;
  --gray-warm: #F1EFE8;
  --gray-light: #F7F5EF;
  --border: #E7E4DA;
  --green: #1D9E75;
  --amber: #EF9F27;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #fff;
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* =========================================================
   Shared navigation (used by includes/site-nav.php)
   ========================================================= */

nav {
  background: var(--dark);
  padding: 0 64px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo-text { font-size: 40px; font-weight: 700; color: #fff; letter-spacing: -0.02em; line-height: 1; }
.logo-text span { color: var(--orange); }
.logo-sub { font-size: 9px; color: var(--gray-mid); letter-spacing: 0.12em; text-transform: uppercase; margin-top: 2px; }

.nav-links { display: flex; align-items: center; gap: 20px; }
.nav-links a { font-size: 12px; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover { color: #fff; }
.nav-links a.active { color: var(--orange); }

.nav-btns { display: flex; gap: 8px; }
.btn-nav-primary { background: var(--orange); color: #fff; border: none; border-radius: 7px; padding: 0 16px; height: 34px; font-family: inherit; font-size: 12px; font-weight: 700; cursor: pointer; }
.btn-nav-secondary { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.2); border-radius: 7px; padding: 0 14px; height: 34px; font-family: inherit; font-size: 12px; cursor: pointer; }

/* Index (home) nav variant buttons */
.btn-nav-join { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.2); border-radius: 8px; padding: 0 20px; height: 38px; font-size: 13px; font-weight: 500; cursor: pointer; font-family: inherit; }
.btn-nav-demo { background: var(--orange); color: #fff; border: none; border-radius: 8px; padding: 0 20px; height: 38px; font-size: 13px; font-weight: 600; cursor: pointer; font-family: inherit; }

/* Mobile nav */
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; background: none; border: none; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.25s; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile-drawer {
  display: none;
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  background: #2C2C2A;
  z-index: 99;
  padding: 20px 24px 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.nav-mobile-drawer.open { display: block; }
.nav-mobile-drawer a { display: block; font-size: 15px; color: rgba(255,255,255,0.7); text-decoration: none; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.nav-mobile-drawer a:last-of-type { border-bottom: none; }
.nav-mobile-btns { display: flex; flex-direction: column; gap: 10px; margin-top: 18px; }
.nav-mobile-btns button { height: 44px; font-size: 14px; font-weight: 700; border-radius: 8px; cursor: pointer; font-family: inherit; }
.btn-mobile-primary { background: var(--orange); color: #fff; border: none; }
.btn-mobile-secondary { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.25); }

/* =========================================================
   Shared “marketing page” building blocks
   (features, how-it-works, about, book-a-demo)
   ========================================================= */

.hero { background: var(--dark); padding: 72px 64px 60px; text-align: center; }
.hero-badge { display: inline-block; background: rgba(232,82,26,0.12); border: 1px solid rgba(232,82,26,0.25); color: var(--orange); font-size: 10px; font-weight: 700; padding: 3px 12px; border-radius: 999px; margin-bottom: 18px; letter-spacing: 0.08em; }
.hero h1 { font-size: 44px; font-weight: 700; color: #fff; line-height: 1.1; margin-bottom: 12px; letter-spacing: -0.02em; }
.hero h1 span { color: var(--orange); }
.hero-sub { font-size: 16px; color: var(--gray-mid); max-width: 560px; margin: 0 auto 18px; line-height: 1.75; }
.hero-anchor { display: inline-block; background: #fff; color: var(--orange); font-size: 13px; font-weight: 700; padding: 10px 22px; border-radius: 8px; margin-bottom: 24px; }
.hero-btns { display: flex; justify-content: center; gap: 10px; }
.btn-hero-primary { background: var(--orange); color: #fff; border: none; border-radius: 8px; padding: 0 28px; height: 46px; font-family: inherit; font-size: 14px; font-weight: 700; cursor: pointer; }
.btn-hero-secondary { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.2); border-radius: 8px; padding: 0 28px; height: 46px; font-family: inherit; font-size: 14px; cursor: pointer; }

.section { padding: 80px 64px; }
.section.dark { background: var(--ink); }
.section.navy { background: var(--navy); }
.section.warm, .section.light { background: var(--gray-warm); }
.section.white { background: #fff; }

.eyebrow { font-size: 11px; font-weight: 700; color: var(--orange); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 10px; }
.sec-h { font-size: 32px; font-weight: 700; color: var(--text); margin-bottom: 8px; letter-spacing: -0.01em; line-height: 1.2; }
.sec-h.white { color: #fff; }
.sec-p { font-size: 14px; color: var(--text-muted); margin-bottom: 32px; max-width: 580px; line-height: 1.75; }
.sec-p.white { color: var(--gray-mid); }
/* Some pages use .sec-sub instead of .sec-p */
.sec-sub.white { color: var(--gray-mid); }

.ck { width: 16px; height: 16px; border-radius: 50%; background: rgba(29,158,117,0.12); color: var(--green); font-size: 9px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }

.cta-band { background: var(--orange); padding: 80px 64px; text-align: center; }
.cta-band h2 { font-size: 36px; font-weight: 700; color: #fff; margin-bottom: 12px; letter-spacing: -0.01em; }
.cta-band p { font-size: 15px; color: rgba(255,255,255,0.8); margin-bottom: 28px; max-width: 480px; margin-left: auto; margin-right: auto; line-height: 1.75; }
.cta-btns { display: flex; justify-content: center; gap: 10px; }
.btn-w { background: #fff; color: var(--orange); border: none; border-radius: 8px; padding: 0 24px; height: 46px; font-family: inherit; font-size: 14px; font-weight: 700; cursor: pointer; }
.btn-ow { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.4); border-radius: 8px; padding: 0 24px; height: 46px; font-family: inherit; font-size: 14px; cursor: pointer; }

/* Allow long CTA button labels to wrap (global) */
.cta-btns { flex-wrap: wrap; }
.cta-band .cta-btns button {
  white-space: normal;
  height: auto;
  min-height: 46px;
  padding-top: 12px;
  padding-bottom: 12px;
  line-height: 1.25;
  text-align: center;
  flex: 1 1 280px;
  max-width: 420px;
}

/* Keep About contact CTA card wrapping too */
body.page-about .contact-cta-card button {
  white-space: normal;
  height: auto;
  min-height: 46px;
  padding-top: 12px;
  padding-bottom: 12px;
  line-height: 1.25;
  text-align: center;
}

footer { background: var(--ink); padding: 48px 64px 28px; }
.fg { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.fl { font-size: 28px; font-weight: 700; color: #fff; letter-spacing: -0.01em; }
.fl span { color: var(--orange); }
.fd { font-size: 12px; color: rgba(255,255,255,0.62); margin-top: 8px; line-height: 1.8; }
.fcol h4 { font-size: 10px; font-weight: 700; color: rgba(255,255,255,0.55); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 12px; }
.fcol a { display: block; font-size: 12px; color: rgba(255,255,255,0.68); text-decoration: none; margin-bottom: 8px; transition: color 0.2s, opacity 0.2s; }
.fcol a:hover { color: #fff; }
.fcol a:focus-visible { outline: 2px solid rgba(255,255,255,0.35); outline-offset: 3px; border-radius: 6px; }
.fbot { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 20px; display: flex; justify-content: space-between; }
.fbot p { font-size: 11px; color: rgba(255,255,255,0.55); }
/* Social links (default footer) */
.fbot-right { display: flex; align-items: center; gap: 16px; }
.footer-social { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; justify-content: flex-end; }
.footer-social a { font-size: 11px; color: rgba(255,255,255,0.62); text-decoration: none; transition: color 0.2s; }
.footer-social a:hover { color: #fff; }
.footer-social a:focus-visible { outline: 2px solid rgba(255,255,255,0.35); outline-offset: 3px; border-radius: 6px; }

/* Home footer (index) uses different classnames */
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-logo { font-size: 20px; font-weight: 700; color: #fff; letter-spacing: -0.01em; }
.footer-logo span { color: var(--orange); }
.footer-desc { font-size: 13px; color: #444441; margin-top: 10px; line-height: 1.75; }
.footer-col h4 { font-size: 10px; font-weight: 700; color: #444441; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col a { display: block; font-size: 13px; color: #444441; text-decoration: none; margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer-bottom p { font-size: 12px; color: #444441; }
.footer-right { display: flex; align-items: center; justify-content: flex-end; gap: 18px; flex-wrap: wrap; }
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-legal a { font-size: 12px; color: #444441; text-decoration: none; transition: color 0.2s; }
.footer-legal a:hover { color: #fff; }

/* =========================================================
   Page: Features
   ========================================================= */

body.page-features .feat-nav { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; }
body.page-features .fn-item { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 999px; padding: 6px 16px; font-size: 12px; color: rgba(255,255,255,0.5); cursor: pointer; text-decoration: none; transition: all 0.2s; }
body.page-features .fn-item:hover { background: rgba(255,255,255,0.08); color: #fff; }
body.page-features .fn-item.active { background: rgba(232,82,26,0.15); border-color: rgba(232,82,26,0.3); color: var(--orange); }

body.page-features .cfo-bar { background: var(--dark); padding: 28px 64px; text-align: center; border-top: 1px solid rgba(255,255,255,0.06); }
body.page-features .cfo-bar p { font-size: 17px; font-weight: 700; color: #fff; max-width: 760px; margin: 0 auto; line-height: 1.6; }
body.page-features .cfo-bar span { color: var(--orange); }

body.page-features .roles-line { background: var(--gray-warm); border-left: 4px solid var(--orange); border-radius: 0 10px 10px 0; padding: 14px 20px; margin-bottom: 32px; font-size: 15px; font-weight: 600; color: var(--text); max-width: 720px; line-height: 1.6; }
body.page-features .roles-line span { color: var(--orange); }
body.page-features .pipe-steps { display: grid; grid-template-columns: repeat(7,1fr); gap: 0; border: 1px solid var(--border); border-radius: 14px; overflow: hidden; }
body.page-features .ps { padding: 22px 14px; border-right: 1px solid var(--border); background: #fff; }
body.page-features .ps:last-child { border-right: none; }
body.page-features .ps-num { font-size: 9px; font-weight: 700; color: var(--orange); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 5px; }
body.page-features .ps-name { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 5px; }
body.page-features .ps-desc { font-size: 11px; color: var(--text-muted); line-height: 1.55; }
body.page-features .workflow-line { font-size: 15px; font-weight: 600; color: var(--text-muted); text-align: center; font-style: italic; margin: 18px 0 14px; }
body.page-features .pipe-foot { display: flex; align-items: center; justify-content: center; gap: 12px; background: var(--gray-warm); border-radius: 10px; padding: 14px 24px; }
body.page-features .pipe-foot-t { font-size: 14px; color: var(--text-muted); }
body.page-features .pipe-foot-b { font-size: 15px; font-weight: 700; color: var(--orange); }

body.page-features .reframe { background: var(--dark); border-radius: 12px; padding: 18px 24px; margin-bottom: 32px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
body.page-features .reframe p { font-size: 15px; font-weight: 700; color: #fff; }
body.page-features .reframe p span { color: var(--orange); }
body.page-features .reframe small { font-size: 12px; color: var(--gray-mid); }
body.page-features .fmt-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
body.page-features .fmt-row + .fmt-row { margin-top: 12px; }
body.page-features .fmt { background: #fff; border: 1px solid var(--border); border-radius: 12px; overflow: hidden; display: flex; flex-direction: column; }
body.page-features .fmt-h { padding: 12px 16px; display: flex; align-items: center; gap: 10px; border-bottom: 1px solid var(--border); }
body.page-features .fmt-dot { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; }
body.page-features .fmt-name { font-size: 14px; font-weight: 700; color: var(--text); }
body.page-features .fmt-b { padding: 12px 16px; flex: 1; }
body.page-features .fmt-item { font-size: 12px; color: var(--text-muted); padding: 4px 0; border-bottom: 0.5px solid var(--gray-warm); display: flex; align-items: center; gap: 6px; }
body.page-features .fmt-item:last-child { border-bottom: none; }
body.page-features .fmt-dot2 { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); opacity: 0.4; flex-shrink: 0; }
body.page-features .out-summary { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; margin-top: 14px; }
body.page-features .os { background: var(--dark); border-radius: 10px; padding: 20px; text-align: center; }
body.page-features .os-num { font-size: 32px; font-weight: 700; color: var(--orange); line-height: 1; margin-bottom: 6px; }
body.page-features .os-label { font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 3px; }
body.page-features .os-desc { font-size: 11px; color: var(--gray-mid); }

body.page-features .two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: stretch; }
body.page-features .mem-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
body.page-features .mpill { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 999px; padding: 6px 14px; font-size: 12px; color: #fff; }
body.page-features .mem-table { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; overflow: hidden; flex: 1; }
body.page-features .mem-table-header { padding: 12px 16px; border-bottom: 1px solid rgba(255,255,255,0.08); font-size: 10px; font-weight: 700; color: var(--gray-mid); text-transform: uppercase; letter-spacing: 0.08em; }
body.page-features .mem-row { display: flex; justify-content: space-between; align-items: center; padding: 12px 16px; border-bottom: 0.5px solid rgba(255,255,255,0.06); }
body.page-features .mem-row:last-child { border-bottom: none; }
body.page-features .mem-key { font-size: 13px; color: var(--gray-mid); }
body.page-features .mem-val { font-size: 13px; font-weight: 700; }
body.page-features .mem-val.high { color: var(--amber); }
body.page-features .mem-val.low { color: var(--green); }
body.page-features .mem-callout { margin-top: 14px; background: rgba(232,82,26,0.08); border: 1px solid rgba(232,82,26,0.2); border-radius: 10px; padding: 16px 18px; }
body.page-features .mem-callout p { font-size: 13px; color: #fff; font-weight: 600; line-height: 1.6; }
body.page-features .mem-callout small { font-size: 12px; color: var(--gray-mid); display: block; margin-top: 4px; }
body.page-features .intel-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; flex: 1; }
body.page-features .ic { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 10px; padding: 16px; }
body.page-features .ic-tag { font-size: 9px; font-weight: 700; color: var(--orange); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 6px; }
body.page-features .ic-h { font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 5px; }
body.page-features .ic-p { font-size: 11px; color: var(--gray-mid); line-height: 1.55; }

body.page-features .score-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: stretch; }
body.page-features .score-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; flex: 1; }
body.page-features .sc { background: var(--gray-warm); border-radius: 12px; padding: 18px; border: 1px solid var(--border); }
body.page-features .sc-tag { font-size: 9px; font-weight: 700; color: var(--orange); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 6px; }
body.page-features .sc-h { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 5px; }
body.page-features .sc-p { font-size: 12px; color: var(--text-muted); line-height: 1.6; }
body.page-features .score-demo { background: var(--navy); border-radius: 14px; padding: 28px; display: flex; flex-direction: column; }
body.page-features .sd-label { font-size: 10px; font-weight: 700; color: var(--gray-mid); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 18px; }
body.page-features .score-ring { width: 64px; height: 64px; border-radius: 50%; border: 3px solid var(--orange); display: flex; flex-direction: column; align-items: center; justify-content: center; margin: 0 auto 10px; }
body.page-features .sr-num { font-size: 22px; font-weight: 700; color: #fff; line-height: 1; }
body.page-features .sr-den { font-size: 10px; color: var(--gray-mid); }
body.page-features .sr-label { font-size: 13px; font-weight: 700; color: var(--green); text-align: center; margin-bottom: 16px; }
body.page-features .sr-row { display: flex; justify-content: space-between; font-size: 13px; padding: 8px 0; border-bottom: 0.5px solid rgba(255,255,255,0.06); }
body.page-features .sr-row:last-child { border-bottom: none; }
body.page-features .sr-k { color: var(--gray-mid); }
body.page-features .sr-v.g { color: var(--green); font-weight: 700; }
body.page-features .sr-v.am { color: var(--amber); font-weight: 700; }
body.page-features .score-bands { margin-top: 16px; font-size: 12px; color: var(--text-muted); line-height: 1.7; }

/* Cost comparison (features page) */
body.page-features .feat-cost-section { background: var(--dark); padding: 80px 64px; }
body.page-features .feat-cost-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 900px; margin: 0 auto; }
body.page-features .feat-cost-row { display: flex; justify-content: space-between; align-items: center; gap: 14px; }
body.page-features .feat-cost-row > span:first-child { flex: 1; min-width: 0; }
body.page-features .feat-cost-row > span:last-child { flex-shrink: 0; text-align: right; white-space: nowrap; }
body.page-features .feat-cost-total,
body.page-features .feat-cost-meta,
body.page-features .feat-cost-cta { gap: 14px; }

body.page-features .platform-row { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-bottom: 32px; }
body.page-features .plat { display: flex; align-items: center; gap: 8px; background: #fff; border: 1px solid var(--border); border-radius: 999px; padding: 7px 16px; }
body.page-features .plat-icon { width: 20px; height: 20px; border-radius: 4px; display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 700; flex-shrink: 0; }
body.page-features .plat-name { font-size: 12px; color: var(--text); font-weight: 500; }
body.page-features .pub-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
body.page-features .pc { background: #fff; border-radius: 12px; padding: 24px; border: 1px solid var(--border); }
body.page-features .pc-tag { font-size: 9px; font-weight: 700; color: var(--orange); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 8px; }
body.page-features .pc-h { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
body.page-features .pc-p { font-size: 13px; color: var(--text-muted); line-height: 1.65; }

body.page-features .ag-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
body.page-features .ag { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 14px; padding: 24px; display: flex; flex-direction: column; }
body.page-features .ag-tag { font-size: 9px; font-weight: 700; color: var(--orange); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 8px; }
body.page-features .ag-h { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 6px; }
body.page-features .ag-p { font-size: 13px; color: var(--gray-mid); line-height: 1.65; margin-bottom: 16px; flex: 1; }
body.page-features .ag-list { list-style: none; }
body.page-features .ag-list li { font-size: 13px; color: var(--gray-mid); padding: 6px 0; border-bottom: 0.5px solid rgba(255,255,255,0.06); display: flex; align-items: center; gap: 8px; }
body.page-features .ag-list li:last-child { border-bottom: none; }

body.page-features .pre-cta { background: var(--dark); padding: 32px 64px; text-align: center; }
body.page-features .pre-cta p { font-size: 18px; font-weight: 700; color: #fff; }
body.page-features .pre-cta p span { color: var(--orange); }
body.page-features .pre-cta small { display: block; font-size: 13px; color: var(--gray-mid); margin-top: 8px; }

/* =========================================================
   Page: How it works
   ========================================================= */

body.page-how-it-works .sec-center { text-align: center; }
body.page-how-it-works .sec-center .sec-p { margin-left: auto; margin-right: auto; }
body.page-how-it-works .cx { width: 16px; height: 16px; border-radius: 50%; background: rgba(255,255,255,0.07); color: var(--gray-mid); font-size: 9px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }

body.page-how-it-works .bva-cols { display: grid; grid-template-columns: 1fr 48px 1fr; gap: 0; align-items: stretch; max-width: 860px; margin: 0 auto; }
body.page-how-it-works .bva-col { border-radius: 14px; padding: 28px; }
body.page-how-it-works .bva-col.before { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); }
body.page-how-it-works .bva-col.after { background: rgba(232,82,26,0.06); border: 1px solid rgba(232,82,26,0.2); }
body.page-how-it-works .bva-label { font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 18px; color: var(--gray-mid); }
body.page-how-it-works .bva-col.after .bva-label { color: var(--orange); }
body.page-how-it-works .bva-item { font-size: 13px; padding: 8px 0; border-bottom: 0.5px solid rgba(255,255,255,0.06); display: flex; align-items: flex-start; gap: 10px; line-height: 1.55; }
body.page-how-it-works .bva-item:last-of-type { border-bottom: none; }
body.page-how-it-works .bva-item.before-item { color: var(--gray-mid); }
body.page-how-it-works .bva-item.after-item { color: #fff; }
body.page-how-it-works .bva-time { margin-top: 20px; }
body.page-how-it-works .bva-time-label { font-size: 11px; margin-bottom: 6px; }
body.page-how-it-works .bva-time-label.before { color: var(--gray-mid); }
body.page-how-it-works .bva-time-label.after { color: var(--orange); }
body.page-how-it-works .bva-badge { display: inline-block; font-size: 18px; font-weight: 700; padding: 5px 16px; border-radius: 7px; }
body.page-how-it-works .bva-badge.before { background: rgba(255,255,255,0.06); color: var(--gray-mid); text-decoration: line-through; text-decoration-color: rgba(255,255,255,0.3); }
body.page-how-it-works .bva-badge.after { background: #fff; color: var(--orange); }
body.page-how-it-works .bva-vs { display: flex; align-items: center; justify-content: center; font-size: 14px; color: var(--gray-mid); font-style: italic; padding-top: 60px; }

body.page-how-it-works .roles-line { background: var(--gray-warm); border-left: 4px solid var(--orange); border-radius: 0 10px 10px 0; padding: 14px 20px; margin-bottom: 32px; font-size: 15px; font-weight: 600; color: var(--text); max-width: 720px; line-height: 1.6; }
body.page-how-it-works .roles-line span { color: var(--orange); }
body.page-how-it-works .pipe-steps { display: grid; grid-template-columns: repeat(7,1fr); gap: 0; border: 1px solid var(--border); border-radius: 14px; overflow: hidden; }
body.page-how-it-works .ps { padding: 22px 14px; border-right: 1px solid var(--border); background: #fff; }
body.page-how-it-works .ps:last-child { border-right: none; }
body.page-how-it-works .ps-num { font-size: 9px; font-weight: 700; color: var(--orange); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 5px; }
body.page-how-it-works .ps-name { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 5px; }
body.page-how-it-works .ps-desc { font-size: 11px; color: var(--text-muted); line-height: 1.55; }
body.page-how-it-works .pipe-time { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 20px; background: var(--gray-warm); border-radius: 10px; padding: 14px 24px; }
body.page-how-it-works .pipe-time-text { font-size: 14px; color: var(--text-muted); }
body.page-how-it-works .pipe-time-badge { font-size: 15px; font-weight: 700; color: var(--orange); }

/* 30-day outcome block (how-it-works page) */
body.page-how-it-works .hitw-thirty-head { text-align: center; margin-bottom: 40px; }
body.page-how-it-works .hitw-thirty-eyebrow { font-size: 11px; font-weight: 700; color: var(--orange); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 10px; }
body.page-how-it-works .hitw-thirty-title { font-size: 32px; font-weight: 700; color: var(--text); margin-bottom: 8px; letter-spacing: -0.01em; }
body.page-how-it-works .hitw-thirty-sub { font-size: 14px; color: var(--text-muted); max-width: 520px; margin: 0 auto; line-height: 1.75; }
body.page-how-it-works .hitw-thirty-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 24px; }
body.page-how-it-works .hitw-thirty-card { background: var(--gray-warm); border-radius: 14px; padding: 28px; border: 1px solid var(--border); }
body.page-how-it-works .hitw-thirty-num { font-size: 36px; font-weight: 700; color: var(--orange); line-height: 1; margin-bottom: 8px; }
body.page-how-it-works .hitw-thirty-h { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 5px; }
body.page-how-it-works .hitw-thirty-p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* Walk-through section (how-it-works page) */
body.page-how-it-works .hitw-walkthrough { background: var(--navy); padding: 80px 64px; }

body.page-how-it-works .coord-cols { display: grid; grid-template-columns: 1fr 48px 1fr; gap: 0; align-items: stretch; max-width: 860px; margin: 0 auto; }
body.page-how-it-works .coord-col { border-radius: 14px; padding: 28px; }
body.page-how-it-works .coord-col.without { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); }
body.page-how-it-works .coord-col.with { background: rgba(232,82,26,0.06); border: 1px solid rgba(232,82,26,0.2); }
body.page-how-it-works .coord-label { font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 16px; color: var(--gray-mid); }
body.page-how-it-works .coord-col.with .coord-label { color: var(--orange); }
body.page-how-it-works .coord-item { font-size: 13px; padding: 8px 0; border-bottom: 0.5px solid rgba(255,255,255,0.06); display: flex; align-items: flex-start; gap: 10px; line-height: 1.55; }
body.page-how-it-works .coord-item:last-of-type { border-bottom: none; }
body.page-how-it-works .coord-item.wi { color: var(--gray-mid); }
body.page-how-it-works .coord-item.lp { color: #fff; }
body.page-how-it-works .cvs { display: flex; align-items: center; justify-content: center; font-size: 14px; color: var(--gray-mid); font-style: italic; padding-top: 48px; }
body.page-how-it-works .coord-cta { text-align: center; margin-top: 32px; background: rgba(232,82,26,0.08); border: 1px solid rgba(232,82,26,0.2); border-radius: 12px; padding: 20px 28px; max-width: 860px; margin-left: auto; margin-right: auto; }
body.page-how-it-works .coord-cta p { font-size: 15px; font-weight: 600; color: #fff; line-height: 1.6; }
body.page-how-it-works .coord-cta span { color: var(--orange); }

body.page-how-it-works .output-reframe { background: var(--dark); border-radius: 12px; padding: 18px 24px; margin-bottom: 32px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
body.page-how-it-works .output-reframe p { font-size: 15px; font-weight: 700; color: #fff; }
body.page-how-it-works .output-reframe p span { color: var(--orange); }
body.page-how-it-works .output-reframe small { font-size: 12px; color: var(--gray-mid); }
body.page-how-it-works .fmt-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
body.page-how-it-works .fmt-row + .fmt-row { margin-top: 12px; }
body.page-how-it-works .fmt { background: #fff; border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
body.page-how-it-works .fmt-head { padding: 12px 16px; display: flex; align-items: center; gap: 10px; border-bottom: 1px solid var(--border); }
body.page-how-it-works .fmt-dot { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; }
body.page-how-it-works .fmt-name { font-size: 14px; font-weight: 700; color: var(--text); }
body.page-how-it-works .fmt-body { padding: 12px 16px; }
body.page-how-it-works .fmt-item { font-size: 12px; color: var(--text-muted); padding: 4px 0; border-bottom: 0.5px solid var(--gray-warm); display: flex; align-items: center; gap: 6px; }
body.page-how-it-works .fmt-item:last-child { border-bottom: none; }
body.page-how-it-works .fmt-dot2 { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); opacity: 0.4; flex-shrink: 0; }
body.page-how-it-works .output-summary { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; margin-top: 14px; }
body.page-how-it-works .os { background: var(--dark); border-radius: 10px; padding: 20px; text-align: center; }
body.page-how-it-works .os-num { font-size: 32px; font-weight: 700; color: var(--orange); line-height: 1; margin-bottom: 6px; }
body.page-how-it-works .os-label { font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 3px; }
body.page-how-it-works .os-desc { font-size: 11px; color: var(--gray-mid); }

body.page-how-it-works .mem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
body.page-how-it-works .mem-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
body.page-how-it-works .mpill { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 999px; padding: 6px 14px; font-size: 12px; color: #fff; }
body.page-how-it-works .mem-table { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; overflow: hidden; }
body.page-how-it-works .mem-table-header { padding: 12px 16px; border-bottom: 1px solid rgba(255,255,255,0.08); font-size: 10px; font-weight: 700; color: var(--gray-mid); text-transform: uppercase; letter-spacing: 0.08em; }
body.page-how-it-works .mem-row { display: flex; justify-content: space-between; align-items: center; padding: 12px 16px; border-bottom: 0.5px solid rgba(255,255,255,0.06); }
body.page-how-it-works .mem-row:last-child { border-bottom: none; }
body.page-how-it-works .mem-key { font-size: 13px; color: var(--gray-mid); }
body.page-how-it-works .mem-val { font-size: 13px; font-weight: 700; }
body.page-how-it-works .mem-val.high { color: var(--amber); }
body.page-how-it-works .mem-val.low { color: var(--green); }
body.page-how-it-works .mem-callout { margin-top: 14px; background: rgba(232,82,26,0.08); border: 1px solid rgba(232,82,26,0.2); border-radius: 10px; padding: 16px 18px; }
body.page-how-it-works .mem-callout p { font-size: 13px; color: #fff; font-weight: 600; line-height: 1.6; }
body.page-how-it-works .mem-callout small { font-size: 12px; color: var(--gray-mid); display: block; margin-top: 4px; }

body.page-how-it-works .platform-row { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-bottom: 32px; }
body.page-how-it-works .plat { display: flex; align-items: center; gap: 8px; background: #fff; border: 1px solid var(--border); border-radius: 999px; padding: 7px 16px; }
body.page-how-it-works .plat-icon { width: 20px; height: 20px; border-radius: 4px; display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 700; flex-shrink: 0; }
body.page-how-it-works .plat-name { font-size: 12px; color: var(--text); font-weight: 500; }
body.page-how-it-works .pub-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
body.page-how-it-works .pc { background: var(--gray-warm); border-radius: 12px; padding: 24px; border: 1px solid var(--border); }
body.page-how-it-works .pc-tag { font-size: 9px; font-weight: 700; color: var(--orange); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 8px; }
body.page-how-it-works .pc-h { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
body.page-how-it-works .pc-p { font-size: 13px; color: var(--text-muted); line-height: 1.65; }

/* =========================================================
   Page: About
   ========================================================= */

body.page-about .hero { padding-bottom: 0; }
body.page-about .hero h1 { font-size: 42px; max-width: 700px; margin-left: auto; margin-right: auto; }
body.page-about .hero-sub { max-width: 580px; line-height: 1.8; margin-bottom: 28px; }
body.page-about .hero-meta { display: flex; justify-content: center; gap: 28px; flex-wrap: wrap; padding-bottom: 40px; }
body.page-about .hm { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.4); }
body.page-about .hm-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); flex-shrink: 0; }
body.page-about .proof-band { background: var(--dark); border-top: 1px solid rgba(255,255,255,0.06); padding: 28px 64px; text-align: center; }
body.page-about .proof-band p { font-size: 12px; color: rgba(255,255,255,0.35); margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.1em; }
body.page-about .proof-pills { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }
body.page-about .proof-pill { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: 999px; padding: 6px 16px; font-size: 12px; color: rgba(255,255,255,0.45); }
body.page-about .mission-inner { max-width: 720px; margin: 0 auto; }
body.page-about .mission-lead { font-size: 20px; font-weight: 700; color: var(--text); margin-bottom: 20px; line-height: 1.4; }
body.page-about .mission-inner p { font-size: 15px; color: var(--text-muted); line-height: 1.85; margin-bottom: 16px; }
body.page-about .pull { border-left: 4px solid var(--orange); padding: 16px 22px; background: rgba(232,82,26,0.05); margin: 28px 0; font-size: 16px; font-weight: 600; color: var(--text); line-height: 1.6; }
body.page-about .why-lp { background: var(--navy); padding: 64px; text-align: center; }
body.page-about .why-lp-inner { max-width: 680px; margin: 0 auto; }
body.page-about .why-lp h2 { font-size: 28px; font-weight: 700; color: #fff; margin-bottom: 14px; letter-spacing: -0.01em; }
body.page-about .why-lp p { font-size: 15px; color: var(--gray-mid); line-height: 1.8; margin-bottom: 12px; }
body.page-about .why-stat { display: flex; justify-content: center; gap: 40px; margin-top: 28px; flex-wrap: wrap; }
body.page-about .ws-num { font-size: 28px; font-weight: 700; color: var(--orange); line-height: 1; margin-bottom: 4px; }
body.page-about .ws-label { font-size: 12px; color: var(--gray-mid); }
body.page-about .timeline { margin-top: 32px; display: flex; flex-direction: column; max-width: 680px; }
body.page-about .tl-item { display: grid; grid-template-columns: 90px 1fr; gap: 24px; padding-bottom: 32px; position: relative; }
body.page-about .tl-item:last-child { padding-bottom: 0; }
body.page-about .tl-item::after { content: ''; position: absolute; left: 44px; top: 28px; bottom: 0; width: 1px; background: var(--border); }
body.page-about .tl-item:last-child::after { display: none; }
body.page-about .tl-date { font-size: 12px; font-weight: 700; color: var(--orange); text-align: right; padding-top: 2px; }
body.page-about .tl-dot { position: absolute; left: 40px; top: 4px; width: 9px; height: 9px; border-radius: 50%; background: var(--orange); border: 2px solid #fff; }
body.page-about .tl-h { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 5px; }
body.page-about .tl-p { font-size: 13px; color: var(--text-muted); line-height: 1.7; }
body.page-about .products-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 36px; }
body.page-about .prod { border-radius: 14px; padding: 30px; display: flex; flex-direction: column; }
body.page-about .prod.lp { background: rgba(232,82,26,0.08); border: 1px solid rgba(232,82,26,0.2); }
body.page-about .prod.lg { background: rgba(29,158,117,0.06); border: 1px solid rgba(29,158,117,0.2); }
body.page-about .prod.uz { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); }
body.page-about .prod-badge { display: inline-block; font-size: 9px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 3px 10px; border-radius: 999px; margin-bottom: 14px; }
body.page-about .prod-badge.lp { background: rgba(232,82,26,0.15); color: var(--orange); }
body.page-about .prod-badge.lg { background: rgba(29,158,117,0.15); color: var(--green); }
body.page-about .prod-badge.uz { background: rgba(255,255,255,0.08); color: var(--gray-mid); }
body.page-about .prod-name { font-size: 22px; font-weight: 700; color: #fff; margin-bottom: 6px; }
body.page-about .prod-tagline { font-size: 12px; font-weight: 600; color: var(--gray-mid); margin-bottom: 14px; line-height: 1.5; }
body.page-about .prod-desc { font-size: 13px; color: var(--gray-mid); line-height: 1.75; flex: 1; margin-bottom: 20px; }
body.page-about .prod-link { font-size: 12px; font-weight: 600; text-decoration: none; }
body.page-about .prod-link.lp { color: var(--orange); }
body.page-about .prod-link.lg { color: var(--green); }
body.page-about .prod-link.uz { color: var(--gray-mid); }
body.page-about .services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 36px; }
body.page-about .svc { background: #fff; border-radius: 12px; padding: 24px; border: 1px solid var(--border); }
body.page-about .svc-num { font-size: 28px; font-weight: 700; color: var(--orange); opacity: 0.2; line-height: 1; margin-bottom: 10px; }
body.page-about .svc-h { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
body.page-about .svc-p { font-size: 13px; color: var(--text-muted); line-height: 1.65; }
body.page-about .team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 36px; }
body.page-about .person { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 14px; padding: 28px; }
body.page-about .person-avatar { width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 16px; }
body.page-about .person-role { font-size: 10px; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 12px; }
body.page-about .person-bio { font-size: 13px; color: var(--gray-mid); line-height: 1.75; }
body.page-about .person-loc { display: flex; align-items: center; gap: 6px; margin-top: 14px; font-size: 12px; color: var(--text-muted); }
body.page-about .loc-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); flex-shrink: 0; }
body.page-about .values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 36px; }
body.page-about .val { background: var(--gray-warm); border-radius: 12px; padding: 24px; border: 1px solid var(--border); }
body.page-about .val-h { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 8px; display: flex; align-items: center; gap: 10px; }
body.page-about .val-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); flex-shrink: 0; }
body.page-about .val-p { font-size: 13px; color: var(--text-muted); line-height: 1.7; }
body.page-about .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; max-width: 860px; margin: 36px auto 0; }
body.page-about .contact-info h2 { font-size: 24px; font-weight: 700; color: #fff; margin-bottom: 10px; }
body.page-about .contact-info p { font-size: 14px; color: var(--gray-mid); line-height: 1.75; margin-bottom: 20px; }
body.page-about .ci-row { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 10px; }
body.page-about .ci-label { font-size: 10px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; min-width: 80px; padding-top: 2px; }
body.page-about .ci-value { font-size: 13px; color: var(--gray-mid); line-height: 1.6; }
body.page-about .ci-value a { color: var(--orange); text-decoration: none; }
body.page-about .contact-cta-card { background: rgba(232,82,26,0.08); border: 1px solid rgba(232,82,26,0.2); border-radius: 14px; padding: 28px; }
body.page-about .contact-cta-card h3 { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 8px; }
body.page-about .contact-cta-card p { font-size: 13px; color: var(--gray-mid); line-height: 1.7; margin-bottom: 20px; }
body.page-about .btn-cc { width: 100%; height: 46px; background: var(--orange); color: #fff; border: none; border-radius: 8px; font-family: inherit; font-size: 14px; font-weight: 700; cursor: pointer; margin-bottom: 10px; }
body.page-about .btn-cc2 { width: 100%; height: 46px; background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.15); border-radius: 8px; font-family: inherit; font-size: 14px; cursor: pointer; }
body.page-about .pre-cta { background: var(--dark); padding: 32px 64px; text-align: center; }
body.page-about .pre-cta p { font-size: 17px; font-weight: 700; color: #fff; max-width: 680px; margin: 0 auto; line-height: 1.6; }
body.page-about .pre-cta span { color: var(--orange); }

/* =========================================================
   Page: Book a demo
   ========================================================= */

body.page-book-a-demo .hero { text-align: left; padding-bottom: 64px; }
body.page-book-a-demo .hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; max-width: 1100px; margin: 0 auto; }
body.page-book-a-demo .hero h1 { font-size: 40px; }
body.page-book-a-demo .hero-sub { font-size: 15px; max-width: 480px; margin: 0 0 32px; }
body.page-book-a-demo .what-happens { margin-bottom: 36px; }
body.page-book-a-demo .wh-label { font-size: 11px; font-weight: 700; color: var(--orange); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px; }
body.page-book-a-demo .wh-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 18px; }
body.page-book-a-demo .wh-num { width: 28px; height: 28px; border-radius: 50%; background: var(--orange); color: #fff; font-size: 12px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
body.page-book-a-demo .wh-text h4 { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 3px; }
body.page-book-a-demo .wh-text p { font-size: 13px; color: var(--gray-mid); line-height: 1.6; }
body.page-book-a-demo .trust-items { display: flex; flex-direction: column; gap: 10px; }
body.page-book-a-demo .trust-item { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--gray-mid); }
body.page-book-a-demo .trust-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); flex-shrink: 0; }

body.page-book-a-demo .form-card { background: #fff; border-radius: 16px; padding: 40px; border: 1px solid var(--border); }
body.page-book-a-demo .form-card h2 { font-size: 22px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
body.page-book-a-demo .form-card .form-sub { font-size: 13px; color: var(--text-muted); margin-bottom: 28px; line-height: 1.6; }
body.page-book-a-demo .form-row { margin-bottom: 18px; }
body.page-book-a-demo .form-row label { display: block; font-size: 12px; font-weight: 600; color: var(--text); margin-bottom: 6px; letter-spacing: 0.02em; }
body.page-book-a-demo .form-row input,
body.page-book-a-demo .form-row select,
body.page-book-a-demo .form-row textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0 14px;
  height: 44px;
  font-family: inherit;
  font-size: 14px;
  color: var(--text);
  background: #fff;
  outline: none;
  transition: border-color 0.2s;
}
body.page-book-a-demo .form-row input:focus,
body.page-book-a-demo .form-row select:focus,
body.page-book-a-demo .form-row textarea:focus { border-color: var(--orange); }
body.page-book-a-demo .form-row textarea { height: 88px; padding: 12px 14px; resize: none; }
body.page-book-a-demo .form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 18px; }
body.page-book-a-demo .form-row-2 label { display: block; font-size: 12px; font-weight: 600; color: var(--text); margin-bottom: 6px; letter-spacing: 0.02em; }
body.page-book-a-demo .form-row-2 input,
body.page-book-a-demo .form-row-2 select {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0 14px;
  height: 44px;
  font-family: inherit;
  font-size: 14px;
  color: var(--text);
  background: #fff;
  outline: none;
  transition: border-color 0.2s;
}
body.page-book-a-demo .form-row-2 input:focus,
body.page-book-a-demo .form-row-2 select:focus { border-color: var(--orange); }
body.page-book-a-demo .btn-submit { width: 100%; height: 52px; background: var(--orange); color: #fff; border: none; border-radius: 10px; font-family: inherit; font-size: 16px; font-weight: 700; cursor: pointer; margin-top: 8px; transition: background 0.2s; }
body.page-book-a-demo .btn-submit:hover { background: #d44a17; }
body.page-book-a-demo .form-disclaimer { font-size: 11px; color: var(--gray-mid); text-align: center; margin-top: 12px; line-height: 1.6; }

body.page-book-a-demo .expect-section { background: var(--gray-warm); padding: 80px 64px; }
body.page-book-a-demo .expect-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 40px; }
body.page-book-a-demo .ex { background: #fff; border-radius: 14px; padding: 28px; border: 1px solid var(--border); }
body.page-book-a-demo .ex-step { font-size: 10px; font-weight: 700; color: var(--orange); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 10px; }
body.page-book-a-demo .ex-h { font-size: 18px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
body.page-book-a-demo .ex-p { font-size: 13px; color: var(--text-muted); line-height: 1.7; }
body.page-book-a-demo .ex-time { display: inline-block; margin-top: 14px; background: var(--gray-warm); border-radius: 999px; padding: 3px 12px; font-size: 11px; font-weight: 600; color: var(--text-muted); }

body.page-book-a-demo .demo-preview { background: var(--navy); padding: 80px 64px; }
body.page-book-a-demo .demo-shell { background: #1A1C1F; border-radius: 14px; overflow: hidden; border: 1px solid rgba(255,255,255,0.08); max-width: 900px; margin: 40px auto 0; }
body.page-book-a-demo .ds-nav { background: var(--dark); height: 40px; display: flex; align-items: center; padding: 0 16px; gap: 8px; border-bottom: 1px solid rgba(255,255,255,0.06); }
body.page-book-a-demo .ds-logo { font-size: 12px; font-weight: 700; color: #fff; }
body.page-book-a-demo .ds-logo span { color: var(--orange); }
body.page-book-a-demo .ds-badge { background: rgba(29,158,117,0.1); border: 1px solid rgba(29,158,117,0.2); border-radius: 999px; padding: 2px 10px; font-size: 10px; color: var(--green); font-weight: 600; margin-left: auto; }
body.page-book-a-demo .ds-time { font-size: 10px; color: var(--gray-mid); font-weight: 600; }
body.page-book-a-demo .ds-body { display: grid; grid-template-columns: 1fr 1fr; }
body.page-book-a-demo .ds-left { padding: 24px; border-right: 1px solid rgba(255,255,255,0.06); }
body.page-book-a-demo .ds-right { padding: 24px; }
body.page-book-a-demo .ds-label { font-size: 10px; font-weight: 700; color: var(--gray-mid); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 14px; }
body.page-book-a-demo .ds-run { background: rgba(232,82,26,0.08); border: 1px solid rgba(232,82,26,0.2); border-radius: 10px; padding: 14px 16px; margin-bottom: 12px; }
body.page-book-a-demo .ds-run-title { font-size: 12px; font-weight: 700; color: #fff; margin-bottom: 3px; }
body.page-book-a-demo .ds-run-meta { font-size: 10px; color: var(--gray-mid); }
body.page-book-a-demo .ds-stages { display: flex; gap: 4px; margin-bottom: 16px; }
body.page-book-a-demo .ds-stage { flex: 1; text-align: center; }
body.page-book-a-demo .ds-stage-dot { width: 20px; height: 20px; border-radius: 50%; background: var(--green); color: #fff; font-size: 8px; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto 3px; }
body.page-book-a-demo .ds-stage-name { font-size: 8px; color: var(--green); line-height: 1.2; }
body.page-book-a-demo .ds-formats { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
body.page-book-a-demo .ds-fmt { background: #232527; border-radius: 6px; padding: 8px 10px; display: flex; align-items: center; gap: 7px; }
body.page-book-a-demo .ds-fmt-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
body.page-book-a-demo .ds-fmt-name { font-size: 10px; color: #fff; font-weight: 500; flex: 1; }
body.page-book-a-demo .ds-fmt-status { font-size: 9px; font-weight: 600; }
body.page-book-a-demo .ds-fmt-status.ready { color: var(--green); }
body.page-book-a-demo .ds-score-ring { width: 48px; height: 48px; border-radius: 50%; border: 3px solid var(--orange); display: flex; flex-direction: column; align-items: center; justify-content: center; margin: 0 auto 8px; }
body.page-book-a-demo .ds-score-num { font-size: 16px; font-weight: 700; color: #fff; line-height: 1; }
body.page-book-a-demo .ds-score-den { font-size: 8px; color: var(--gray-mid); }
body.page-book-a-demo .ds-score-label { font-size: 10px; font-weight: 700; color: var(--green); text-align: center; margin-bottom: 10px; }
body.page-book-a-demo .ds-score-row { display: flex; justify-content: space-between; font-size: 10px; padding: 5px 0; border-bottom: 0.5px solid rgba(255,255,255,0.05); }
body.page-book-a-demo .ds-score-row:last-child { border-bottom: none; }
body.page-book-a-demo .ds-score-k { color: var(--gray-mid); }
body.page-book-a-demo .ds-score-v { font-weight: 700; }
body.page-book-a-demo .ds-score-v.g { color: var(--green); }
body.page-book-a-demo .ds-score-v.am { color: var(--amber); }

body.page-book-a-demo .obj-section { background: #fff; padding: 80px 64px; }
body.page-book-a-demo .obj-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 40px; }
body.page-book-a-demo .obj { background: var(--gray-warm); border-radius: 14px; padding: 28px; border: 1px solid var(--border); }
body.page-book-a-demo .obj-q { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 12px; line-height: 1.4; }
body.page-book-a-demo .obj-q::before { content: '"'; color: var(--orange); font-size: 24px; font-weight: 700; display: block; margin-bottom: 4px; line-height: 1; }
body.page-book-a-demo .obj-a { font-size: 13px; color: var(--text-muted); line-height: 1.75; }

/* FAQ grid inside obj-section (book-a-demo) */
body.page-book-a-demo .obj-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}

body.page-book-a-demo .proof-section { background: var(--ink); padding: 80px 64px; }
body.page-book-a-demo .proof-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-top: 40px; }
body.page-book-a-demo .proof-stat { text-align: center; }
body.page-book-a-demo .proof-num { font-size: 40px; font-weight: 700; color: var(--orange); line-height: 1; margin-bottom: 6px; }
body.page-book-a-demo .proof-label { font-size: 13px; color: var(--gray-mid); line-height: 1.5; }

body.page-book-a-demo .final-cta { background: var(--orange); padding: 80px 64px; text-align: center; }
body.page-book-a-demo .final-cta h2 { font-size: 36px; font-weight: 700; color: #fff; margin-bottom: 12px; letter-spacing: -0.01em; }
body.page-book-a-demo .final-cta p { font-size: 15px; color: rgba(255,255,255,0.8); margin-bottom: 28px; max-width: 480px; margin-left: auto; margin-right: auto; line-height: 1.75; }

/* =========================================================
   Page: Home (index)
   (Scoped because it has many unique classes + different nav height)
   ========================================================= */

body.page-home nav { height: 68px; }
body.page-home .nav-mobile-drawer { top: 68px; }
body.page-home .nav-links { gap: 32px; }
body.page-home .nav-links a { font-size: 13px; color: rgba(255,255,255,0.55); }
body.page-home .nav-links a.signin { color: #fff; }

body.page-home .hero { padding: 36px 64px 32px; }
body.page-home .hero h1 { font-size: 38px; letter-spacing: -0.03em; max-width: 800px; margin-left: auto; margin-right: auto; }
body.page-home .hero-sub { font-size: 14px; line-height: 1.7; margin: 0 auto 8px; }
body.page-home .hero-tagline { font-size: 15px; color: var(--orange); font-weight: 700; margin-bottom: 8px; letter-spacing: -0.01em; }
body.page-home .hero-icp { font-size: 12px; color: #5F5E5A; margin-bottom: 18px; }
body.page-home .hero-btns { align-items: center; margin-bottom: 8px; }
body.page-home .btn-hero-primary { border-radius: 9px; height: 44px; transition: background 0.2s; }
body.page-home .btn-hero-primary:hover { background: #d44a17; }
body.page-home .btn-hero-secondary { border-radius: 9px; height: 44px; font-weight: 500; }
body.page-home .hero-trust { font-size: 11px; color: #5F5E5A; margin-bottom: 24px; }
body.page-home .hero-stats { display: flex; justify-content: center; border-top: 1px solid rgba(255,255,255,0.07); padding-top: 20px; }
body.page-home .stat { padding: 0 28px; border-right: 1px solid rgba(255,255,255,0.07); text-align: center; }
body.page-home .stat:last-child { border-right: none; }
body.page-home .stat-v { font-size: 22px; font-weight: 700; color: var(--orange); line-height: 1; margin-bottom: 4px; }
body.page-home .stat-l { font-size: 11px; color: var(--gray-mid); }
body.page-home .stat-s { font-size: 10px; color: #444441; margin-top: 2px; }

/* Home shared section headings */
body.page-home .sec-label { font-size: 11px; font-weight: 700; color: var(--orange); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 10px; text-align: center; }
body.page-home .sec-h2 { font-size: 38px; font-weight: 700; color: #070202; text-align: center; margin-bottom: 10px; letter-spacing: -0.01em; line-height: 1.2; }
body.page-home .sec-sub { font-size: 16px; color: var(--gray-mid); text-align: center; max-width: 560px; margin: 0 auto 42px; line-height: 1.75; }

/* PRODUCT MOCK SECTION */
body.page-home .mock-section { background: var(--gray-warm); padding: 80px 64px; }
body.page-home .mock-intro { text-align: center; margin-bottom: 40px; }
body.page-home .mock-intro-label { font-size: 11px; font-weight: 700; color: var(--orange); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 12px; }
body.page-home .mock-intro h2 { font-size: 34px; font-weight: 700; color: var(--text); margin-bottom: 10px; letter-spacing: -0.01em; }
body.page-home .mock-intro p { font-size: 15px; color: var(--text-muted); max-width: 540px; margin: 0 auto; line-height: 1.75; }
body.page-home .mocks-row { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: start; }
body.page-home .mock-col-label { font-size: 10px; font-weight: 700; color: var(--text-muted); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 10px; display: flex; align-items: center; gap: 6px; }
body.page-home .mock-col-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); flex-shrink: 0; }

body.page-home .mock-image-card { margin: 0; }
body.page-home .mock-image-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.12);
  box-shadow: 0 10px 44px rgba(0,0,0,0.18);
}

/* App mock chrome */
body.page-home .shell { background: #1A1C1F; border-radius: 12px; overflow: hidden; border: 1px solid rgba(0,0,0,0.15); box-shadow: 0 8px 40px rgba(0,0,0,0.18); }
body.page-home .app-nav { background: #2C2C2A; height: 42px; display: flex; align-items: center; padding: 0 14px; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,0.06); }
body.page-home .app-logo { font-size: 13px; font-weight: 700; color: #fff; }
body.page-home .app-logo span { color: var(--orange); }
body.page-home .app-logo-sub { font-size: 6px; color: #888780; letter-spacing: 0.1em; text-transform: uppercase; }
body.page-home .a-nav-pills { display: flex; gap: 2px; }
body.page-home .a-nav-pill { font-size: 9px; color: rgba(255,255,255,0.35); padding: 2px 8px; border-radius: 4px; }
body.page-home .a-nav-pill.active { background: rgba(232,82,26,0.15); color: var(--orange); }
body.page-home .a-nav-right { display: flex; align-items: center; gap: 5px; }
body.page-home .a-score-box { background: rgba(232,82,26,0.1); border: 1px solid rgba(232,82,26,0.2); border-radius: 5px; padding: 2px 8px; font-size: 9px; color: var(--orange); font-weight: 700; }
body.page-home .a-pipeline-tag { background: rgba(29,158,117,0.1); border: 1px solid rgba(29,158,117,0.2); border-radius: 999px; padding: 2px 8px; font-size: 8px; color: #1D9E75; font-weight: 600; }
body.page-home .a-client-badge { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08); border-radius: 5px; padding: 2px 8px; font-size: 9px; color: #fff; }

body.page-home .app-body { display: grid; grid-template-columns: 130px 1fr; min-height: 360px; }
body.page-home .app-body-3 { display: grid; grid-template-columns: 130px 1fr 155px; min-height: 360px; }
body.page-home .a-sidebar { background: #232527; border-right: 1px solid rgba(255,255,255,0.05); padding: 10px 0; }
body.page-home .a-sidebar-sec { font-size: 7px; font-weight: 700; color: #5F5E5A; letter-spacing: 0.1em; text-transform: uppercase; padding: 0 10px; margin-bottom: 4px; margin-top: 10px; }
body.page-home .a-sidebar-sec:first-child { margin-top: 0; }
body.page-home .a-sidebar-item { display: flex; align-items: center; gap: 6px; padding: 5px 10px; font-size: 9px; color: rgba(255,255,255,0.35); }
body.page-home .a-sidebar-item.active { background: rgba(232,82,26,0.1); color: var(--orange); border-left: 2px solid var(--orange); }
body.page-home .a-s-dot { width: 4px; height: 4px; border-radius: 50%; background: currentColor; flex-shrink: 0; }
body.page-home .a-main { padding: 12px; }
body.page-home .a-page-title { font-size: 11px; font-weight: 700; color: #fff; margin-bottom: 2px; }
body.page-home .a-page-sub { font-size: 8px; color: #5F5E5A; margin-bottom: 10px; }
body.page-home .a-metrics { display: grid; grid-template-columns: repeat(4,1fr); gap: 6px; margin-bottom: 10px; }
body.page-home .a-metric { background: #1E2022; border-radius: 6px; padding: 8px; border: 1px solid rgba(255,255,255,0.05); }
body.page-home .a-m-label { font-size: 7px; color: #5F5E5A; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 2px; }
body.page-home .a-m-val { font-size: 16px; font-weight: 700; color: #fff; line-height: 1; margin-bottom: 1px; }
body.page-home .a-m-val.orange { color: var(--orange); }
body.page-home .a-m-val.green { color: #1D9E75; }
body.page-home .a-m-sub { font-size: 7px; color: #1D9E75; }
body.page-home .a-m-sub.amber { color: #EF9F27; }
body.page-home .a-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 8px; }
body.page-home .a-panel { background: #1E2022; border-radius: 7px; border: 1px solid rgba(255,255,255,0.05); overflow: hidden; }
body.page-home .a-panel-head { padding: 7px 10px; border-bottom: 1px solid rgba(255,255,255,0.05); display: flex; justify-content: space-between; }
body.page-home .a-ph-title { font-size: 9px; font-weight: 700; color: #fff; }
body.page-home .a-ph-action { font-size: 8px; color: var(--orange); }
body.page-home .a-run-row,
body.page-home .a-platform-row { display: flex; align-items: center; gap: 6px; padding: 6px 10px; border-bottom: 0.5px solid rgba(255,255,255,0.04); }
body.page-home .a-run-row:last-child,
body.page-home .a-platform-row:last-child { border-bottom: none; }
body.page-home .a-r-dot { width: 5px; height: 5px; border-radius: 50%; flex-shrink: 0; }
body.page-home .a-r-info { flex: 1; }
body.page-home .a-r-topic { font-size: 8px; color: #fff; font-weight: 500; margin-bottom: 1px; }
body.page-home .a-r-meta { font-size: 7px; color: #5F5E5A; }
body.page-home .a-r-score { font-size: 9px; font-weight: 700; color: var(--orange); }
body.page-home .a-p-icon { width: 14px; height: 14px; border-radius: 3px; display: flex; align-items: center; justify-content: center; font-size: 7px; font-weight: 700; flex-shrink: 0; }
body.page-home .a-p-name { font-size: 8px; color: #fff; flex: 1; }
body.page-home .a-p-status { font-size: 7px; font-weight: 600; padding: 1px 5px; border-radius: 999px; }
body.page-home .a-p-status.connected { background: rgba(29,158,117,0.1); color: #1D9E75; }
body.page-home .a-p-status.pending { background: rgba(232,82,26,0.1); color: var(--orange); }
body.page-home .a-p-status.nc { background: rgba(255,255,255,0.05); color: #5F5E5A; }
body.page-home .a-qa-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 4px; }
body.page-home .a-qa-btn { background: #2C2C2A; border: 1px solid rgba(255,255,255,0.06); border-radius: 5px; padding: 6px; text-align: center; }
body.page-home .a-qa-icon { font-size: 11px; color: #888780; margin-bottom: 2px; }
body.page-home .a-qa-label { font-size: 7px; color: rgba(255,255,255,0.4); }
body.page-home .a-qa-btn.primary .a-qa-icon,
body.page-home .a-qa-btn.primary .a-qa-label { color: var(--orange); }

body.page-home .a-run-back { font-size: 7px; color: #5F5E5A; margin-bottom: 4px; }
body.page-home .a-run-title { font-size: 10px; font-weight: 700; color: #fff; margin-bottom: 2px; }
body.page-home .a-run-meta { font-size: 7px; color: #5F5E5A; margin-bottom: 8px; }
body.page-home .a-hero-strip { display: grid; grid-template-columns: repeat(4,1fr); gap: 4px; margin-bottom: 8px; }
body.page-home .a-hs { background: #1E2022; border-radius: 5px; padding: 5px 7px; border: 1px solid rgba(255,255,255,0.05); }
body.page-home .a-hs-l { font-size: 7px; color: #5F5E5A; margin-bottom: 1px; }
body.page-home .a-hs-v { font-size: 11px; font-weight: 700; color: var(--orange); }
body.page-home .a-pipeline-bar { background: #1E2022; border-radius: 6px; padding: 8px 10px; margin-bottom: 8px; border: 1px solid rgba(255,255,255,0.05); }
body.page-home .a-pl-label { font-size: 7px; font-weight: 700; color: #888780; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 6px; display: flex; justify-content: space-between; }
body.page-home .a-pl-label span { color: #1D9E75; }
body.page-home .a-stages { display: flex; gap: 2px; }
body.page-home .a-stage { flex: 1; text-align: center; }
body.page-home .a-st-dot { width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 8px; font-weight: 700; margin: 0 auto 2px; background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.6); }
body.page-home .a-st-dot.done { background: #1D9E75; color: #fff; }
body.page-home .a-st-name { font-size: 7px; color: #1D9E75; line-height: 1.2; }
body.page-home .a-tabs { display: flex; gap: 2px; margin-bottom: 8px; background: #1A1C1F; border-radius: 5px; padding: 2px; }
body.page-home .a-tab { font-size: 8px; padding: 3px 8px; border-radius: 4px; color: rgba(255,255,255,0.3); }
body.page-home .a-tab.active { background: #2C2C2A; color: #fff; font-weight: 600; }
body.page-home .a-formats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
body.page-home .a-fc { background: #1E2022; border-radius: 6px; overflow: hidden; border: 1px solid rgba(255,255,255,0.05); }
body.page-home .a-fc-head { padding: 5px 8px; display: flex; align-items: center; gap: 5px; border-bottom: 1px solid rgba(255,255,255,0.04); }
body.page-home .a-fc-dot { width: 5px; height: 5px; border-radius: 50%; flex-shrink: 0; }
body.page-home .a-fc-name { font-size: 8px; font-weight: 600; color: #fff; flex: 1; }
body.page-home .a-fc-ok { font-size: 7px; color: #1D9E75; font-weight: 700; }
body.page-home .a-fc-body { padding: 5px 8px; font-size: 7px; color: #888780; line-height: 1.5; min-height: 32px; }
body.page-home .a-fc-foot { padding: 4px 8px; border-top: 1px solid rgba(255,255,255,0.04); display: flex; justify-content: space-between; align-items: center; }
body.page-home .a-fc-copy { font-size: 7px; color: var(--orange); font-weight: 600; }
body.page-home .a-pb { font-size: 7px; font-weight: 700; padding: 2px 6px; border-radius: 3px; border: none; cursor: pointer; }
body.page-home .a-pb.live { background: var(--orange); color: #fff; }
body.page-home .a-pb.done { background: rgba(29,158,117,0.15); color: #1D9E75; }
body.page-home .a-pb.grey { background: rgba(255,255,255,0.05); color: #5F5E5A; }
body.page-home .a-right-panel { background: #1A1C1F; border-left: 1px solid rgba(255,255,255,0.05); padding: 10px; }
body.page-home .a-rp-sec { margin-bottom: 12px; }
body.page-home .a-rp-title { font-size: 7px; font-weight: 700; color: #5F5E5A; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 6px; }
body.page-home .a-score-circle { width: 44px; height: 44px; border-radius: 50%; border: 2px solid var(--orange); display: flex; flex-direction: column; align-items: center; justify-content: center; margin: 0 auto 4px; }
body.page-home .a-sc-num { font-size: 14px; font-weight: 700; color: #fff; line-height: 1; }
body.page-home .a-sc-lbl { font-size: 6px; color: #888780; }
body.page-home .a-sc-desc { font-size: 7px; color: #1D9E75; text-align: center; font-weight: 600; margin-bottom: 6px; }
body.page-home .a-sig-row { display: flex; justify-content: space-between; padding: 3px 0; border-bottom: 0.5px solid rgba(255,255,255,0.04); font-size: 7px; }
body.page-home .a-sig-row:last-child { border-bottom: none; }
body.page-home .a-sig-l { color: #888780; }
body.page-home .a-sig-v.green { color: #1D9E75; font-weight: 600; }
body.page-home .a-sig-v.amber { color: #EF9F27; font-weight: 600; }
body.page-home .a-pub-row { display: flex; justify-content: space-between; align-items: center; font-size: 7px; margin-bottom: 3px; }
body.page-home .a-pub-p { color: #888780; }
body.page-home .a-pub-s { font-weight: 600; font-size: 7px; padding: 1px 5px; border-radius: 999px; }
body.page-home .a-pub-s.published { background: rgba(29,158,117,0.1); color: #1D9E75; }
body.page-home .a-pub-s.ready { background: rgba(232,82,26,0.1); color: var(--orange); }
body.page-home .a-pub-s.nc { background: rgba(255,255,255,0.04); color: #5F5E5A; }
body.page-home .a-act-btn { width: 100%; height: 22px; border-radius: 5px; font-size: 8px; font-weight: 600; cursor: pointer; margin-bottom: 4px; border: none; font-family: 'DM Sans', sans-serif; }
body.page-home .a-act-btn.primary { background: var(--orange); color: #fff; }
body.page-home .a-act-btn.dark { background: #2C2C2A; color: #fff; }
body.page-home .a-act-btn.outline { background: transparent; border: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.35); }
body.page-home .a-value-strip { display: flex; justify-content: space-around; background: #232527; border-top: 1px solid rgba(255,255,255,0.05); padding: 7px 12px; }
body.page-home .a-vs-item { text-align: center; }
body.page-home .a-vs-val { font-size: 10px; font-weight: 700; color: var(--orange); }
body.page-home .a-vs-label { font-size: 7px; color: #5F5E5A; margin-top: 1px; }

body.page-home .mock-cta { text-align: center; margin-top: 40px; }
body.page-home .mock-cta p { font-size: 13px; color: var(--text-muted); margin-bottom: 16px; }
body.page-home .mock-cta-btns { display: flex; justify-content: center; gap: 12px; }
body.page-home .btn-mc-p { background: var(--orange); color: #fff; border: none; border-radius: 9px; padding: 0 32px; height: 48px; font-size: 14px; font-weight: 700; cursor: pointer; font-family: 'DM Sans', sans-serif; }
body.page-home .btn-mc-o { background: transparent; color: var(--text); border: 1px solid var(--border); border-radius: 9px; padding: 0 32px; height: 48px; font-size: 14px; cursor: pointer; font-family: 'DM Sans', sans-serif; }

/* OUTPUT SECTION */
body.page-home .output-section { background: var(--dark); padding: 80px 64px; }
body.page-home .platform-logos { display: flex; justify-content: center; gap: 10px; margin-bottom: 40px; flex-wrap: wrap; }
body.page-home .platform-pill { display: flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 999px; padding: 7px 16px; }
body.page-home .platform-icon { width: 22px; height: 22px; border-radius: 5px; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; flex-shrink: 0; }
body.page-home .platform-name { font-size: 13px; color: #fff; font-weight: 500; }
body.page-home .output-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 16px; }
body.page-home .output-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; padding: 18px; }
body.page-home .output-card-platform { font-size: 10px; font-weight: 700; color: var(--orange); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 6px; }
body.page-home .output-card h4 { font-size: 13px; font-weight: 600; color: #fff; margin-bottom: 6px; }
body.page-home .output-card p { font-size: 12px; color: var(--gray-mid); line-height: 1.6; }
body.page-home .output-card-extra { font-size: 11px; color: #5F5E5A; margin-top: 8px; padding-top: 8px; border-top: 1px solid rgba(255,255,255,0.06); }
body.page-home .output-own { background: rgba(232,82,26,0.08); border-color: rgba(232,82,26,0.2); }
body.page-home .output-own .output-card-extra { color: var(--orange); border-top-color: rgba(232,82,26,0.2); }
body.page-home .output-bottom { text-align: center; background: rgba(232,82,26,0.08); border: 1px solid rgba(232,82,26,0.2); border-radius: 12px; padding: 18px 32px; }
body.page-home .output-bottom p { font-size: 14px; color: #fff; font-weight: 500; line-height: 1.7; }
body.page-home .output-bottom span { color: var(--orange); }

/* WHAT YOU ACTUALLY GET (index) */
body.page-home .what-you-get { background: var(--navy); padding: 64px 64px; }
body.page-home .what-you-get-inner { max-width: 800px; margin: 0 auto; }
body.page-home .what-you-get-eyebrow { font-size: 11px; font-weight: 700; color: var(--orange); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 10px; text-align: center; }
body.page-home .what-you-get-title { font-size: 28px; font-weight: 700; color: #fff; text-align: center; margin-bottom: 6px; letter-spacing: -0.01em; }
body.page-home .what-you-get-sub { font-size: 13px; color: rgba(255,255,255,0.4); text-align: center; margin-bottom: 28px; }
body.page-home .what-you-get-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 20px; }
body.page-home .what-you-get-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 10px; padding: 20px; text-align: center; }
body.page-home .what-you-get-flow { display: flex; align-items: stretch; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); border-radius: 10px; overflow: hidden; }
body.page-home .what-you-get-step { flex: 1; padding: 14px 8px; text-align: center; border-right: 1px solid rgba(255,255,255,0.07); }
body.page-home .what-you-get-arrow { padding: 0 6px; display: flex; align-items: center; color: #5F5E5A; font-size: 16px; }
body.page-home .what-you-get-total { flex: 1; padding: 14px 8px; text-align: center; background: rgba(232,82,26,0.08); border-left: 1px solid rgba(232,82,26,0.2); }

/* COORDINATION SECTION (index) */
body.page-home .coordination-section { background: var(--ink); padding: 72px 64px; }
body.page-home .coordination-sub { text-align: center; font-size: 15px; color: var(--gray-mid); max-width: 560px; margin: 0 auto 40px; line-height: 1.75; }
body.page-home .coordination-grid { display: grid; grid-template-columns: 1fr 48px 1fr; gap: 0; align-items: stretch; max-width: 800px; margin: 0 auto; }
body.page-home .coordination-vs { display: flex; align-items: center; justify-content: center; font-size: 13px; color: #5F5E5A; font-style: italic; padding-top: 60px; }
body.page-home .coordination-card { border-radius: 12px; padding: 28px; }
body.page-home .coordination-card.without { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); }
body.page-home .coordination-card.with { background: rgba(232,82,26,0.06); border: 1px solid rgba(232,82,26,0.2); }
body.page-home .coordination-card-label { font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray-mid); margin-bottom: 16px; }
body.page-home .coordination-card-label.lp { color: var(--orange); }
body.page-home .coordination-item { font-size: 13px; color: var(--gray-mid); padding: 8px 0; border-bottom: 0.5px solid rgba(255,255,255,0.05); display: flex; align-items: flex-start; gap: 10px; line-height: 1.5; }
body.page-home .coordination-item:last-child { border-bottom: none; }
body.page-home .coordination-item.lp { color: #fff; }
body.page-home .coordination-bullet { width: 16px; height: 16px; border-radius: 50%; font-size: 9px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
body.page-home .coordination-bullet.x { background: rgba(255,255,255,0.06); color: #5F5E5A; }
body.page-home .coordination-bullet.ok { background: rgba(29,158,117,0.15); color: var(--green); }

/* 30-DAY SECTION (index) */
body.page-home .thirty-section { background: var(--gray-warm); padding: 72px 64px; }
body.page-home .thirty-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
body.page-home .thirty-card { background: #fff; border-radius: 12px; padding: 24px; border: 1px solid var(--border); }
body.page-home .thirty-num { font-size: 28px; font-weight: 700; color: var(--orange); line-height: 1; margin-bottom: 6px; }
body.page-home .thirty-h { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 5px; }
body.page-home .thirty-p { font-size: 12px; color: var(--text-muted); line-height: 1.6; }

/* Pricing band line (between sections) */
body.page-home .pricing-band { background: var(--dark); padding: 20px 64px; text-align: center; }
body.page-home .pricing-band p { font-size: 15px; font-weight: 700; color: #fff; }
body.page-home .pricing-band p span { color: var(--orange); }

/* Pricing addon (below pricing cards) */
body.page-home .pricing-addon {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 28px;
  margin-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
body.page-home .pricing-addon-k { font-size: 11px; color: var(--text-muted); margin-bottom: 3px; }
body.page-home .pricing-addon-v { font-size: 14px; font-weight: 700; color: var(--text); }
body.page-home .pricing-addon-price { font-size: 18px; font-weight: 700; color: var(--orange); }

/* Savings band (index) */
body.page-home .savings-band {
  background: var(--ink);
  padding: 32px 64px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
body.page-home .savings-band p { font-size: 13px; color: rgba(255,255,255,0.7); }
body.page-home .savings-band-badge {
  display: inline-block;
  background: #fff;
  color: var(--orange);
  font-size: 20px;
  font-weight: 700;
  padding: 5px 18px;
  border-radius: 7px;
  letter-spacing: -0.01em;
  vertical-align: middle;
}
body.page-home .savings-band-note { font-size: 11px; color: #5F5E5A; font-style: italic; }

/* VALUE STACK */
body.page-home .value-section { background: var(--gray-light); padding: 80px 64px; }
body.page-home .value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 32px; }
body.page-home .value-card { background: #fff; border-radius: 12px; padding: 26px; border: 1px solid var(--border); }
body.page-home .value-num { font-size: 10px; font-weight: 700; color: var(--orange); margin-bottom: 8px; letter-spacing: 0.06em; text-transform: uppercase; }
body.page-home .value-card h3 { font-size: 22px; font-weight: 700; color: var(--text); margin-bottom: 6px; letter-spacing: -0.01em; }
body.page-home .value-card p { font-size: 13px; color: var(--text-muted); line-height: 1.7; }
body.page-home .value-close { background: var(--dark); border-radius: 14px; padding: 36px; text-align: center; }
body.page-home .value-close h3 { font-size: 26px; font-weight: 700; color: #fff; margin-bottom: 8px; }
body.page-home .value-close p { font-size: 14px; color: var(--gray-mid); margin-bottom: 20px; }
body.page-home .value-roles { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }
body.page-home .role-tag { background: var(--orange-light); border: 1px solid rgba(232,82,26,0.2); color: var(--orange); font-size: 12px; font-weight: 600; padding: 4px 14px; border-radius: 999px; }

/* DIFF SECTION */
body.page-home .diff-section { background: #fff; padding: 80px 64px; }
body.page-home .diff-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; background: var(--border); border-radius: 16px; overflow: hidden; }
body.page-home .diff-card { background: #fff; padding: 36px; }
body.page-home .diff-card.dark { background: var(--dark); }
body.page-home .diff-label { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 24px; padding: 4px 12px; border-radius: 6px; display: inline-block; }
body.page-home .diff-label.other { background: #F1EFE8; color: var(--gray-mid); }
body.page-home .diff-label.lp { background: var(--orange-light); color: var(--orange); }
body.page-home .diff-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; }
body.page-home .diff-item:last-child { margin-bottom: 0; }
body.page-home .diff-icon { width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0; margin-top: 1px; display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 700; }
body.page-home .diff-icon.no { background: #FCEBEB; color: #A32D2D; }
body.page-home .diff-icon.yes { background: #E1F5EE; color: #0F6E56; }
body.page-home .diff-text { font-size: 14px; line-height: 1.65; color: var(--gray-mid); }
body.page-home .diff-text.white { color: #fff; }

/* MEMORY */
body.page-home .memory-section { background: var(--dark); padding: 80px 64px; }
body.page-home .memory-box { max-width: 700px; margin: 0 auto; text-align: center; }
body.page-home .memory-items { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }
body.page-home .memory-item { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: 8px; padding: 8px 16px; font-size: 13px; color: #fff; }

/* HOW IT WORKS */
body.page-home .how-section { background: var(--gray-light); padding: 80px 64px; }
body.page-home .steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 48px; }
body.page-home .step { background: #fff; border-radius: 14px; padding: 28px; }
body.page-home .step-n { font-size: 44px; font-weight: 700; color: var(--orange); opacity: 0.2; line-height: 1; margin-bottom: 14px; }
body.page-home .step h3 { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
body.page-home .step p { font-size: 13px; color: var(--text-muted); line-height: 1.7; }

/* ICP SECTION */
body.page-home .icp-section { background: #fff; padding: 80px 64px; }
body.page-home .icp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
body.page-home .icp-card { border: 1px solid var(--border); border-radius: 14px; padding: 28px; }
body.page-home .icp-card.primary { border: 2px solid var(--orange); }
body.page-home .icp-primary-tag { background: var(--orange); color: #fff; font-size: 10px; font-weight: 700; padding: 3px 12px; border-radius: 999px; display: inline-block; margin-bottom: 14px; }
body.page-home .icp-card h3 { font-size: 18px; font-weight: 700; color: var(--text); margin-bottom: 8px; letter-spacing: -0.01em; }
body.page-home .icp-card p { font-size: 13px; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }
body.page-home .icp-features { list-style: none; }
body.page-home .icp-features li { font-size: 12px; color: var(--text-muted); padding: 6px 0; border-bottom: 0.5px solid var(--gray-light); display: flex; align-items: center; gap: 8px; }
body.page-home .icp-features li:last-child { border-bottom: none; }
body.page-home .ck { width: 15px; height: 15px; border-radius: 50%; background: #E1F5EE; color: #0F6E56; font-size: 8px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

/* PRICING */
body.page-home .pricing-section { background: var(--gray-light); padding: 80px 64px; }
body.page-home .pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
body.page-home .price-card { border: 1px solid var(--border); border-radius: 14px; padding: 26px; background: #fff; position: relative; }
body.page-home .price-card.featured { border: 2px solid var(--orange); }
body.page-home .pop-tag { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--orange); color: #fff; font-size: 10px; font-weight: 700; padding: 3px 14px; border-radius: 999px; white-space: nowrap; }
body.page-home .plan-tier { font-size: 11px; font-weight: 700; color: var(--orange); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 4px; }
body.page-home .plan-tag { font-size: 12px; color: var(--text-muted); margin-bottom: 16px; }
body.page-home .plan-price-area { background: var(--gray-light); border-radius: 10px; padding: 16px; margin-bottom: 16px; text-align: center; }
body.page-home .plan-price-label { font-size: 10px; color: var(--gray-mid); margin-bottom: 3px; }
body.page-home .plan-price-cta { font-size: 14px; font-weight: 700; color: var(--text); }
body.page-home .plan-feats { list-style: none; margin-bottom: 20px; }
body.page-home .plan-feats li { font-size: 12px; color: var(--text-muted); padding: 6px 0; border-bottom: 0.5px solid var(--gray-light); display: flex; align-items: center; gap: 7px; }
body.page-home .plan-feats li:last-child { border-bottom: none; }
body.page-home .btn-price { width: 100%; height: 40px; border-radius: 8px; font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 600; cursor: pointer; border: 1px solid var(--border); background: transparent; color: var(--text); transition: background 0.2s; }
body.page-home .btn-price:hover { background: var(--gray-light); }
body.page-home .btn-price.featured { background: var(--orange); color: #fff; border: none; }
body.page-home .btn-price.featured:hover { background: #d44a17; }

/* CLOSE CTA */
body.page-home .close-section { background: var(--orange); padding: 88px 64px; text-align: center; }
body.page-home .close-section h2 { font-size: 42px; font-weight: 700; color: #fff; margin-bottom: 14px; letter-spacing: -0.01em; }
body.page-home .close-section p { font-size: 16px; color: rgba(255,255,255,0.75); margin-bottom: 36px; max-width: 520px; margin-left: auto; margin-right: auto; line-height: 1.75; }
body.page-home .close-btns { display: flex; justify-content: center; gap: 12px; }
body.page-home .btn-white { background: #fff; color: var(--orange); border: none; border-radius: 9px; padding: 0 36px; height: 52px; font-size: 15px; font-weight: 700; cursor: pointer; font-family: 'DM Sans', sans-serif; }
body.page-home .btn-outline-white { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.4); border-radius: 9px; padding: 0 36px; height: 52px; font-size: 15px; font-weight: 500; cursor: pointer; font-family: 'DM Sans', sans-serif; }

/* =========================================================
   Page: Pricing
   ========================================================= */

body.page-pricing .hero { padding-bottom: 56px; }
body.page-pricing .hero-roi-line { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 14px; }
body.page-pricing .hero-note { font-size: 13px; color: var(--gray-mid); margin-bottom: 24px; }

body.page-pricing .toggle-row { display: flex; justify-content: center; align-items: center; gap: 14px; flex-wrap: wrap; }
body.page-pricing .toggle-label { font-size: 13px; color: var(--gray-mid); }
body.page-pricing .toggle-label.white { color: #fff; font-weight: 600; }
body.page-pricing .toggle-pill { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); border-radius: 999px; padding: 4px; display: flex; cursor: pointer; user-select: none; }
body.page-pricing .toggle-opt { font-size: 12px; padding: 5px 18px; border-radius: 999px; color: rgba(255,255,255,0.5); transition: all 0.2s; }
body.page-pricing .toggle-opt.active { background: var(--orange); color: #fff; font-weight: 700; }
body.page-pricing .save-pill { background: rgba(29,158,117,0.15); border: 1px solid rgba(29,158,117,0.25); border-radius: 999px; padding: 4px 12px; font-size: 11px; color: var(--green); font-weight: 700; }

body.page-pricing .pricing-section { background: var(--gray-warm); padding: 64px 64px 48px; }
body.page-pricing .roi-strip { background: #fff; border: 1px solid var(--orange); border-radius: 9px; padding: 13px 24px; text-align: center; font-size: 14px; font-weight: 700; color: var(--orange); margin-bottom: 14px; }
body.page-pricing .anchor-bar { background: var(--dark); border-radius: 12px; padding: 16px 24px; margin-bottom: 40px; text-align: center; }
body.page-pricing .anchor-bar p { font-size: 15px; font-weight: 700; color: #fff; }
body.page-pricing .anchor-bar span { color: var(--orange); }

body.page-pricing .pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; align-items: stretch; }
body.page-pricing .plan { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 28px 24px; display: flex; flex-direction: column; }
body.page-pricing .plan.popular { border: 2px solid var(--orange); position: relative; }
body.page-pricing .popular-tag { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--orange); color: #fff; font-size: 10px; font-weight: 700; padding: 4px 14px; border-radius: 999px; letter-spacing: 0.06em; white-space: nowrap; }
body.page-pricing .plan-name { font-size: 11px; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 8px; }
body.page-pricing .plan-price { font-size: 38px; font-weight: 700; color: var(--text); line-height: 1; margin-bottom: 2px; letter-spacing: -0.02em; }
body.page-pricing .plan-price sup { font-size: 18px; font-weight: 700; vertical-align: top; margin-top: 6px; }
body.page-pricing .plan-price sub { font-size: 14px; font-weight: 400; color: var(--gray-mid); }
body.page-pricing .plan-annual { font-size: 12px; color: var(--green); font-weight: 600; margin-bottom: 4px; }
body.page-pricing .plan-cpc { font-size: 12px; color: var(--text-muted); margin-bottom: 8px; }
body.page-pricing .plan-cpc strong { color: var(--orange); }
body.page-pricing .plan-time { font-size: 11px; color: var(--text-muted); margin-bottom: 12px; background: var(--gray-warm); border-radius: 6px; padding: 4px 10px; display: inline-block; }
body.page-pricing .plan-header { display: flex; flex-direction: column; }
body.page-pricing .plan-desc { font-size: 13px; color: var(--text-muted); line-height: 1.65; margin-bottom: 20px; min-height: 66px; }
body.page-pricing .plan-cta { width: 100%; height: 44px; border-radius: 9px; font-family: inherit; font-size: 13px; font-weight: 700; cursor: pointer; margin-bottom: 22px; transition: background 0.2s; }
body.page-pricing .plan-cta.primary { background: var(--orange); color: #fff; border: none; }
body.page-pricing .plan-cta.primary:hover { background: #d44a17; }
body.page-pricing .plan-cta.outline { background: transparent; color: var(--text); border: 1px solid var(--border); }
body.page-pricing .plan-cta.outline:hover { background: var(--gray-warm); }
body.page-pricing .plan-cta.enterprise { background: var(--orange); color: #fff; border: none; }
body.page-pricing .plan-divider { font-size: 10px; font-weight: 700; color: var(--gray-mid); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 14px; border-top: 1px solid var(--border); padding-top: 14px; }
body.page-pricing .plan-features { display: flex; flex-direction: column; gap: 9px; flex: 1; }
body.page-pricing .pf { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; color: var(--text); line-height: 1.5; }
body.page-pricing .pf.dim { color: #C0BDB6; }
body.page-pricing .cx { width: 16px; height: 16px; border-radius: 50%; background: rgba(255,255,255,0.06); color: var(--gray-mid); font-size: 9px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }

body.page-pricing .plan.plan-enterprise { background: var(--dark); border-color: var(--dark); }
body.page-pricing .plan.plan-enterprise .plan-name { color: var(--orange); }
body.page-pricing .plan.plan-enterprise .enterprise-title { font-size: 22px; font-weight: 700; color: #fff; margin-bottom: 4px; line-height: 1.2; }
body.page-pricing .plan.plan-enterprise .enterprise-sub { font-size: 12px; color: var(--gray-mid); margin-bottom: 10px; }
body.page-pricing .plan.plan-enterprise .plan-time { background: rgba(255,255,255,0.06); color: var(--gray-mid); }
body.page-pricing .plan.plan-enterprise .plan-desc { color: var(--gray-mid); margin-top: 10px; }
body.page-pricing .plan.plan-enterprise .plan-divider { color: var(--text-muted); border-top-color: rgba(255,255,255,0.08); }
body.page-pricing .plan.plan-enterprise .pf { color: var(--gray-mid); }

body.page-pricing .overage-row { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; background: #fff; border: 1px solid var(--border); border-radius: 10px; padding: 16px 22px; margin-top: 20px; }
body.page-pricing .overage-row p { font-size: 14px; color: var(--text); }
body.page-pricing .overage-row strong { color: var(--orange); }
body.page-pricing .overage-row small { font-size: 12px; color: var(--gray-mid); font-style: italic; }

body.page-pricing .roi-section { background: var(--navy); padding: 80px 64px; }
body.page-pricing .roi-head { text-align: center; margin-bottom: 48px; }
body.page-pricing .roi-title { font-size: 32px; font-weight: 700; color: #fff; margin-bottom: 8px; letter-spacing: -0.01em; }
body.page-pricing .roi-sub { font-size: 14px; color: var(--gray-mid); max-width: 500px; margin: 0 auto; line-height: 1.75; }
body.page-pricing .roi-sub-strong { font-size: 14px; font-weight: 700; color: #fff; margin-top: 10px; }
body.page-pricing .roi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: stretch; }
body.page-pricing .roi-calc { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 14px; overflow: hidden; display: flex; flex-direction: column; }
body.page-pricing .rc-head { padding: 14px 20px; border-bottom: 1px solid rgba(255,255,255,0.08); font-size: 11px; font-weight: 700; color: var(--gray-mid); text-transform: uppercase; letter-spacing: 0.08em; }
body.page-pricing .rc-row { display: flex; justify-content: space-between; align-items: center; padding: 12px 20px; border-bottom: 0.5px solid rgba(255,255,255,0.05); gap: 12px; }
body.page-pricing .rc-row:last-child { border-bottom: none; }
body.page-pricing .rc-k { font-size: 13px; color: var(--gray-mid); }
body.page-pricing .rc-v { font-size: 13px; font-weight: 700; color: #fff; }
body.page-pricing .rc-v.orange { color: var(--orange); }
body.page-pricing .rc-total { background: rgba(29,158,117,0.08); border-top: 1px solid rgba(29,158,117,0.2); padding: 16px 20px; display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
body.page-pricing .rc-total-l { font-size: 13px; color: var(--gray-mid); }
body.page-pricing .rc-total-v { font-size: 22px; font-weight: 700; color: var(--green); }

body.page-pricing .roi-stats { display: flex; flex-direction: column; gap: 14px; }
body.page-pricing .roi-stats-top { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
body.page-pricing .rs { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; padding: 20px; }
body.page-pricing .rs-num { font-size: 30px; font-weight: 700; color: var(--orange); line-height: 1; margin-bottom: 6px; }
body.page-pricing .rs-label { font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 4px; }
body.page-pricing .rs-desc { font-size: 12px; color: var(--gray-mid); line-height: 1.6; }
body.page-pricing .throughput-bar { background: rgba(232,82,26,0.08); border: 1px solid rgba(232,82,26,0.2); border-radius: 12px; padding: 18px 22px; flex: 1; display: flex; align-items: center; }
body.page-pricing .throughput-bar p { font-size: 15px; font-weight: 700; color: #fff; line-height: 1.5; }
body.page-pricing .throughput-bar span { color: var(--orange); }

body.page-pricing .faq-section { background: #fff; padding: 80px 64px; }
body.page-pricing .faq-head { text-align: center; }
body.page-pricing .faq-title { font-size: 32px; font-weight: 700; color: var(--text); margin-bottom: 8px; letter-spacing: -0.01em; }
body.page-pricing .faq-sub { font-size: 14px; color: var(--text-muted); max-width: 460px; margin: 0 auto; line-height: 1.75; }
body.page-pricing .faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 40px; }
body.page-pricing .fq { background: var(--gray-warm); border-radius: 14px; padding: 26px 28px; border: 1px solid var(--border); }
body.page-pricing .fq.dark { background: var(--dark); border-color: var(--dark); }
body.page-pricing .fq-q { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 12px; line-height: 1.4; display: flex; align-items: flex-start; gap: 10px; }
body.page-pricing .fq.dark .fq-q { color: #fff; }
body.page-pricing .fq-icon { width: 22px; height: 22px; border-radius: 50%; background: var(--orange); color: #fff; font-size: 11px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
body.page-pricing .fq-a { font-size: 13px; color: var(--text-muted); line-height: 1.75; padding-left: 32px; }
body.page-pricing .fq.dark .fq-a { color: var(--gray-mid); }

body.page-pricing .cfo-bar { background: var(--ink); padding: 32px 64px; text-align: center; }
body.page-pricing .cfo-bar p { font-size: 17px; font-weight: 700; color: #fff; max-width: 720px; margin: 0 auto; line-height: 1.6; }
body.page-pricing .cfo-bar span { color: var(--orange); }

body.page-pricing .cta-risk { margin-top: 16px; font-size: 13px; color: rgba(255,255,255,0.5); }

/* =========================================================
   Page: Privacy (Legal)
   ========================================================= */

body.page-privacy { background: var(--gray-warm); }

body.page-privacy .privacy-hero { background: var(--dark); border-bottom: 1px solid rgba(255,255,255,0.08); }
body.page-privacy .privacy-hero-inner { padding: 48px 64px 40px; max-width: 980px; margin: 0 auto; }
body.page-privacy .privacy-hero-label { font-size: 11px; color: var(--gray-mid); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 8px; }
body.page-privacy .privacy-hero-title { font-size: 32px; font-weight: 700; color: #fff; margin-bottom: 8px; letter-spacing: -0.01em; line-height: 1.2; }
body.page-privacy .privacy-hero-meta { font-size: 13px; color: var(--gray-mid); line-height: 1.6; }
body.page-privacy .privacy-hero-meta span { color: var(--orange); }

body.page-privacy .privacy-container { max-width: 900px; margin: 48px auto; padding: 0 64px 80px; }
body.page-privacy .privacy-section { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 32px; margin-bottom: 16px; }
body.page-privacy .privacy-section-num { font-size: 11px; font-weight: 700; color: var(--orange); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 6px; }
body.page-privacy .privacy-section-title { font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 16px; letter-spacing: -0.01em; }
body.page-privacy .privacy-section p { font-size: 14px; color: #444441; line-height: 1.75; margin-bottom: 12px; }
body.page-privacy .privacy-section p:last-child { margin-bottom: 0; }
body.page-privacy .privacy-section ul { padding-left: 20px; margin-bottom: 12px; }
body.page-privacy .privacy-section ul li { font-size: 14px; color: #444441; line-height: 1.85; margin-bottom: 6px; }
body.page-privacy .privacy-section ul li:last-child { margin-bottom: 0; }
body.page-privacy .privacy-sub-label { font-size: 12px; font-weight: 700; color: var(--text); margin: 14px 0 6px; }

body.page-privacy .privacy-highlight { background: #F7F5EF; border-left: 3px solid var(--orange); border-radius: 0 8px 8px 0; padding: 12px 16px; margin: 12px 0; font-size: 13px; color: var(--text); line-height: 1.6; }
body.page-privacy .privacy-no-sell { background: #E1F5EE; border: 1px solid #9FE1CB; border-radius: 8px; padding: 12px 16px; margin: 12px 0; font-size: 13px; color: #085041; font-weight: 600; line-height: 1.6; }

body.page-privacy .privacy-link { color: var(--orange); text-decoration: none; }
body.page-privacy .privacy-link:hover { text-decoration: underline; }
body.page-privacy .privacy-link:focus-visible { outline: 2px solid rgba(232,82,26,0.5); outline-offset: 2px; border-radius: 4px; }

body.page-privacy .privacy-contact-box { background: var(--dark); border-radius: 12px; padding: 24px 32px; color: #fff; margin-top: 32px; }
body.page-privacy .privacy-contact-box h3 { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 12px; }
body.page-privacy .privacy-contact-box p { font-size: 13px; color: var(--gray-mid); line-height: 1.7; }

/* =========================================================
   Page: Terms (Legal)
   ========================================================= */

body.page-terms { background: var(--gray-warm); }

body.page-terms .terms-hero { background: var(--dark); border-bottom: 1px solid rgba(255,255,255,0.08); }
body.page-terms .terms-hero-inner { padding: 48px 64px 40px; max-width: 980px; margin: 0 auto; }
body.page-terms .terms-hero-label { font-size: 11px; color: var(--gray-mid); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 8px; }
body.page-terms .terms-hero-title { font-size: 32px; font-weight: 700; color: #fff; margin-bottom: 8px; letter-spacing: -0.01em; line-height: 1.2; }
body.page-terms .terms-hero-meta { font-size: 13px; color: var(--gray-mid); line-height: 1.6; }
body.page-terms .terms-hero-meta span { color: var(--orange); }

body.page-terms .terms-container { max-width: 900px; margin: 48px auto; padding: 0 64px 80px; }
body.page-terms .terms-section { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 32px; margin-bottom: 16px; }
body.page-terms .terms-section-num { font-size: 11px; font-weight: 700; color: var(--orange); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 6px; }
body.page-terms .terms-section-title { font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 16px; letter-spacing: -0.01em; }
body.page-terms .terms-section p { font-size: 14px; color: #444441; line-height: 1.75; margin-bottom: 12px; }
body.page-terms .terms-section p:last-child { margin-bottom: 0; }
body.page-terms .terms-section ul { padding-left: 20px; margin-bottom: 12px; }
body.page-terms .terms-section ul li { font-size: 14px; color: #444441; line-height: 1.85; margin-bottom: 6px; }
body.page-terms .terms-section ul li:last-child { margin-bottom: 0; }

body.page-terms .terms-highlight { background: #F7F5EF; border-left: 3px solid var(--orange); border-radius: 0 8px 8px 0; padding: 12px 16px; margin: 12px 0; font-size: 13px; color: var(--text); line-height: 1.6; }
body.page-terms .terms-warning { background: #FEF2F2; border: 1px solid #FECACA; border-radius: 8px; padding: 12px 16px; margin: 12px 0; font-size: 13px; color: #A32D2D; font-weight: 600; line-height: 1.6; }

body.page-terms .terms-link { color: var(--orange); text-decoration: none; }
body.page-terms .terms-link:hover { text-decoration: underline; }
body.page-terms .terms-link:focus-visible { outline: 2px solid rgba(232,82,26,0.5); outline-offset: 2px; border-radius: 4px; }

body.page-terms .terms-contact-box { background: var(--dark); border-radius: 12px; padding: 24px 32px; color: #fff; margin-top: 32px; }
body.page-terms .terms-contact-box h3 { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 12px; }
body.page-terms .terms-contact-box p { font-size: 13px; color: var(--gray-mid); line-height: 1.7; }

/* =========================================================
   Page: Use Cases
   ========================================================= */

body.page-use-cases .uc-hero-note { font-size: 14px; color: rgba(255,255,255,0.55); margin-bottom: 28px; }

body.page-use-cases .hero-stats { display: flex; justify-content: center; gap: 48px; margin-top: 8px; flex-wrap: wrap; }
body.page-use-cases .hs { text-align: center; }
body.page-use-cases .hs-num { font-size: 28px; font-weight: 700; color: var(--orange); line-height: 1; }
body.page-use-cases .hs-label { font-size: 12px; color: var(--gray-mid); margin-top: 4px; }

body.page-use-cases .tab-section { background: var(--gray-warm); padding: 64px 64px 0; }
body.page-use-cases .tab-row { display: flex; gap: 0; border-bottom: 2px solid var(--border); }
body.page-use-cases .tab {
  appearance: none;
  border: none;
  background: transparent;
  padding: 14px 28px;
  font-size: 13px;
  font-weight: 700;
  color: var(--gray-mid);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: all 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
body.page-use-cases .tab:hover { color: var(--text); }
body.page-use-cases .tab.active { color: var(--orange); border-bottom-color: var(--orange); }
body.page-use-cases .tab:focus-visible { outline: 2px solid rgba(232,82,26,0.45); outline-offset: 2px; border-radius: 8px; }

body.page-use-cases .persona-panel { display: none; background: var(--gray-warm); padding: 48px 64px 64px; }
body.page-use-cases .persona-panel.active { display: block; }
body.page-use-cases .persona-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
body.page-use-cases .persona-left h2 { font-size: 32px; font-weight: 700; color: var(--text); line-height: 1.15; margin-bottom: 14px; letter-spacing: -0.01em; }
body.page-use-cases .persona-left h2 span { color: var(--orange); }
body.page-use-cases .persona-left p { font-size: 15px; color: var(--text-muted); line-height: 1.75; margin-bottom: 20px; }
body.page-use-cases .persona-problems { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
body.page-use-cases .problem-row { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text-muted); line-height: 1.55; }
body.page-use-cases .prob-x { width: 18px; height: 18px; border-radius: 50%; background: rgba(232,82,26,0.1); color: var(--orange); font-size: 10px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
body.page-use-cases .persona-cta-group { display: flex; gap: 10px; flex-wrap: wrap; }
body.page-use-cases .btn-primary { background: var(--orange); color: #fff; border: none; border-radius: 9px; padding: 0 24px; min-height: 46px; font-family: inherit; font-size: 13px; font-weight: 700; cursor: pointer; }
body.page-use-cases .btn-primary:hover { background: #d44a17; }
body.page-use-cases .btn-outline { background: transparent; color: var(--text); border: 1px solid var(--border); border-radius: 9px; padding: 0 24px; min-height: 46px; font-family: inherit; font-size: 13px; cursor: pointer; }
body.page-use-cases .btn-outline:hover { background: #fff; }

body.page-use-cases .result-card { background: var(--dark); border-radius: 16px; padding: 32px 28px; }
body.page-use-cases .rc-eyebrow { font-size: 10px; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px; }
body.page-use-cases .rc-scenario { font-size: 13px; color: var(--gray-mid); margin-bottom: 20px; line-height: 1.6; padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.08); }
body.page-use-cases .rc-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 20px; }
body.page-use-cases .rc-stat-num { font-size: 26px; font-weight: 700; color: var(--orange); line-height: 1; margin-bottom: 4px; }
body.page-use-cases .rc-stat-label { font-size: 12px; color: var(--gray-mid); line-height: 1.5; }
body.page-use-cases .rc-quote { font-size: 14px; color: #fff; line-height: 1.65; font-style: italic; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.08); }
body.page-use-cases .rc-attribution { font-size: 12px; color: var(--gray-mid); margin-top: 10px; font-style: normal; }

body.page-use-cases .uc-head { text-align: center; }
body.page-use-cases .uc-h2 { font-size: 32px; font-weight: 700; color: var(--text); margin-bottom: 8px; letter-spacing: -0.01em; line-height: 1.2; }
body.page-use-cases .uc-h2.uc-h2-white { color: #fff; }
body.page-use-cases .uc-sub { font-size: 14px; color: var(--text-muted); max-width: 460px; margin: 0 auto; line-height: 1.75; }
body.page-use-cases .uc-sub.uc-sub-wide { max-width: 520px; }
body.page-use-cases .uc-sub.uc-sub-white { color: var(--gray-mid); }
body.page-use-cases .uc-eyebrow-orange { color: var(--orange); }

body.page-use-cases .compare-section { background: var(--gray-warm); padding: 80px 64px; }
body.page-use-cases .uc-table-wrap { margin-top: 48px; overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: 12px; }
body.page-use-cases .uc-table-wrap:focus-visible { outline: 2px solid rgba(232,82,26,0.35); outline-offset: 4px; }
body.page-use-cases .compare-table { width: 100%; border-collapse: collapse; min-width: 720px; background: transparent; }
body.page-use-cases .compare-table th { padding: 16px 20px; text-align: left; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gray-mid); border-bottom: 2px solid var(--border); background: rgba(255,255,255,0.35); }
body.page-use-cases .compare-table th.lp { color: var(--orange); }
body.page-use-cases .compare-table td { padding: 14px 20px; font-size: 14px; color: var(--text-muted); border-bottom: 1px solid var(--border); vertical-align: top; line-height: 1.55; background: rgba(255,255,255,0.18); }
body.page-use-cases .compare-table td.label { font-weight: 700; color: var(--text); }
body.page-use-cases .compare-table td.lp { color: var(--green); font-weight: 700; }
body.page-use-cases .compare-table tr:last-child td { border-bottom: none; }
body.page-use-cases .compare-table tr:hover td { background: rgba(255,255,255,0.45); }
body.page-use-cases .uc-strong { font-weight: 700; color: var(--text); }
body.page-use-cases .uc-lp-strong { font-size: 16px; }

body.page-use-cases .output-section { background: #fff; padding: 80px 64px; }
body.page-use-cases .output-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
body.page-use-cases .output-card { background: var(--gray-warm); border: 1px solid var(--border); border-radius: 14px; padding: 24px; }
body.page-use-cases .output-icon { width: 40px; height: 40px; border-radius: 10px; background: rgba(232,82,26,0.1); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; font-size: 18px; }
body.page-use-cases .output-card h3 { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
body.page-use-cases .output-card p { font-size: 13px; color: var(--text-muted); line-height: 1.65; }
body.page-use-cases .output-formats { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
body.page-use-cases .format-tag { font-size: 11px; font-weight: 700; color: var(--orange); background: rgba(232,82,26,0.08); border: 1px solid rgba(232,82,26,0.15); border-radius: 5px; padding: 3px 8px; }

body.page-use-cases .workflow-section { background: var(--navy); padding: 80px 64px; }
body.page-use-cases .workflow-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; margin-top: 48px; position: relative; }
body.page-use-cases .workflow-steps::before { content: ''; position: absolute; top: 28px; left: 10%; right: 10%; height: 1px; background: rgba(255,255,255,0.1); z-index: 0; }
body.page-use-cases .wstep { text-align: center; position: relative; z-index: 1; padding: 0 12px; }
body.page-use-cases .wstep-num { width: 56px; height: 56px; border-radius: 50%; background: rgba(232,82,26,0.12); border: 1px solid rgba(232,82,26,0.3); color: var(--orange); font-size: 18px; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
body.page-use-cases .wstep-title { font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 6px; }
body.page-use-cases .wstep-desc { font-size: 12px; color: var(--gray-mid); line-height: 1.6; }
body.page-use-cases .wstep-time { font-size: 11px; font-weight: 700; color: var(--orange); margin-top: 8px; }

body.page-use-cases .mid-cta { background: var(--orange); padding: 40px 64px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
body.page-use-cases .mid-cta h3 { font-size: 22px; font-weight: 700; color: #fff; line-height: 1.3; }
body.page-use-cases .mid-cta p { font-size: 14px; color: rgba(255,255,255,0.8); margin-top: 4px; }
body.page-use-cases .mid-cta-btns { display: flex; gap: 10px; flex-shrink: 0; }
body.page-use-cases .mid-cta-btns button { white-space: nowrap; }

body.page-use-cases .faq-section { background: #fff; padding: 80px 64px; }
body.page-use-cases .faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 40px; }
body.page-use-cases .fq { background: var(--gray-warm); border-radius: 14px; padding: 26px 28px; border: 1px solid var(--border); }
body.page-use-cases .fq.dark { background: var(--dark); border-color: var(--dark); }
body.page-use-cases .fq-q { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 12px; line-height: 1.4; display: flex; align-items: flex-start; gap: 10px; }
body.page-use-cases .fq.dark .fq-q { color: #fff; }
body.page-use-cases .fq-icon { width: 22px; height: 22px; border-radius: 50%; background: var(--orange); color: #fff; font-size: 11px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
body.page-use-cases .fq-a { font-size: 13px; color: var(--text-muted); line-height: 1.75; padding-left: 32px; }
body.page-use-cases .fq.dark .fq-a { color: var(--gray-mid); }

body.page-use-cases .cfo-bar { background: var(--ink); padding: 32px 64px; text-align: center; }
body.page-use-cases .cfo-bar p { font-size: 17px; font-weight: 700; color: #fff; max-width: 720px; margin: 0 auto; line-height: 1.6; }
body.page-use-cases .cfo-bar span { color: var(--orange); }

/* =========================================================
   Page: DPA (Legal)
   ========================================================= */

body.page-dpa { background: var(--gray-warm); }

body.page-dpa .dpa-hero { background: var(--dark); border-bottom: 1px solid rgba(255,255,255,0.08); }
body.page-dpa .dpa-hero-inner { padding: 48px 64px 40px; max-width: 980px; margin: 0 auto; }
body.page-dpa .dpa-hero-label { font-size: 11px; color: var(--gray-mid); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 8px; }
body.page-dpa .dpa-hero-title { font-size: 32px; font-weight: 700; color: #fff; margin-bottom: 8px; letter-spacing: -0.01em; line-height: 1.2; }
body.page-dpa .dpa-hero-meta { font-size: 13px; color: var(--gray-mid); line-height: 1.6; }
body.page-dpa .dpa-hero-meta span { color: var(--orange); }

body.page-dpa .dpa-gdpr-badge { display: inline-flex; align-items: center; gap: 8px; background: #E6F1FB; border: 1px solid #B5D4F4; border-radius: 8px; padding: 8px 16px; margin-top: 16px; font-size: 12px; color: #185FA5; font-weight: 600; line-height: 1.5; }

body.page-dpa .dpa-container { max-width: 900px; margin: 48px auto; padding: 0 64px 80px; }
body.page-dpa .dpa-section { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 32px; margin-bottom: 16px; }
body.page-dpa .dpa-section-num { font-size: 11px; font-weight: 700; color: var(--orange); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 6px; }
body.page-dpa .dpa-section-title { font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 16px; letter-spacing: -0.01em; }
body.page-dpa .dpa-section p { font-size: 14px; color: #444441; line-height: 1.75; margin-bottom: 12px; }
body.page-dpa .dpa-section p:last-child { margin-bottom: 0; }
body.page-dpa .dpa-section ul { padding-left: 20px; margin-bottom: 12px; }
body.page-dpa .dpa-section ul li { font-size: 14px; color: #444441; line-height: 1.85; margin-bottom: 6px; }
body.page-dpa .dpa-section ul li:last-child { margin-bottom: 0; }

body.page-dpa .dpa-highlight { background: #F7F5EF; border-left: 3px solid var(--orange); border-radius: 0 8px 8px 0; padding: 12px 16px; margin: 12px 0; font-size: 13px; color: var(--text); line-height: 1.6; }

body.page-dpa .dpa-roles-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 12px 0; }
body.page-dpa .dpa-role-card { background: #F7F5EF; border-radius: 8px; padding: 16px; border: 1px solid rgba(231,228,218,0.8); }
body.page-dpa .dpa-role-label { font-size: 11px; font-weight: 700; color: var(--gray-mid); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
body.page-dpa .dpa-role-name { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
body.page-dpa .dpa-role-desc { font-size: 12px; color: var(--text-muted); line-height: 1.6; }

body.page-dpa .dpa-link { color: var(--orange); text-decoration: none; }
body.page-dpa .dpa-link:hover { text-decoration: underline; }
body.page-dpa .dpa-link:focus-visible { outline: 2px solid rgba(232,82,26,0.5); outline-offset: 2px; border-radius: 4px; }

body.page-dpa .dpa-contact-box { background: var(--dark); border-radius: 12px; padding: 24px 32px; color: #fff; margin-top: 32px; }
body.page-dpa .dpa-contact-box h3 { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 12px; }
body.page-dpa .dpa-contact-box p { font-size: 13px; color: var(--gray-mid); line-height: 1.7; }

/* =========================================================
   Page: Contact
   ========================================================= */

body.page-contact { background: var(--gray-warm); }

body.page-contact .hero-sub { max-width: 520px; }

body.page-contact .contact-main {
  max-width: 960px;
  margin: 0 auto;
  padding: 56px 64px 80px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: start;
}

body.page-contact .contact-form-card { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 36px; }
body.page-contact .contact-card-eyebrow { font-size: 11px; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 20px; }

body.page-contact .contact-form-group { margin-bottom: 16px; }
body.page-contact .contact-form-group label { display: block; font-size: 12px; font-weight: 700; color: var(--text); margin-bottom: 6px; letter-spacing: 0.02em; }
body.page-contact .contact-form-group input,
body.page-contact .contact-form-group select,
body.page-contact .contact-form-group textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0 14px;
  height: 44px;
  font-family: inherit;
  font-size: 14px;
  color: var(--text);
  background: #fff;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}
body.page-contact .contact-form-group input:focus,
body.page-contact .contact-form-group select:focus,
body.page-contact .contact-form-group textarea:focus { border-color: var(--orange); }
body.page-contact .contact-form-group textarea { height: 120px; padding: 12px 14px; resize: none; }
body.page-contact .contact-form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888780' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
}

body.page-contact .contact-btn-submit { width: 100%; height: 48px; background: var(--orange); color: #fff; border: none; border-radius: 9px; font-family: inherit; font-size: 14px; font-weight: 700; cursor: pointer; margin-top: 8px; transition: background 0.2s; }
body.page-contact .contact-btn-submit:hover { background: #d44a17; }

body.page-contact .contact-form-note { font-size: 12px; color: var(--gray-mid); text-align: center; margin-top: 12px; line-height: 1.6; }
body.page-contact .contact-form-note-tight { margin-top: 6px; }

body.page-contact .contact-field-error { margin-top: 6px; font-size: 12px; color: #b42318; font-weight: 600; }
body.page-contact .contact-input-error { border-color: rgba(180,35,24,0.6) !important; box-shadow: 0 0 0 3px rgba(180,35,24,0.08); }

body.page-contact .contact-success-msg { display: none; background: rgba(29,158,117,0.08); border: 1px solid rgba(29,158,117,0.25); border-radius: 10px; padding: 16px 20px; margin-top: 16px; font-size: 14px; color: var(--green); font-weight: 600; text-align: center; }

body.page-contact .contact-right { display: flex; flex-direction: column; gap: 20px; }

body.page-contact .contact-info-card { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 24px; }
body.page-contact .contact-info-card h4 { font-size: 11px; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 14px; }
body.page-contact .contact-info-email { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
body.page-contact .contact-info-address { font-size: 13px; color: var(--text-muted); line-height: 1.8; }

body.page-contact .contact-response-card { background: var(--dark); border-radius: 14px; padding: 22px 24px; }
body.page-contact .contact-response-card h4 { font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 6px; }
body.page-contact .contact-response-card p { font-size: 12px; color: var(--gray-mid); line-height: 1.65; }
body.page-contact .contact-response-time { font-size: 22px; font-weight: 700; color: var(--orange); margin-bottom: 4px; }
body.page-contact .contact-urgent-note { font-size: 12px; color: rgba(255,255,255,0.45); margin-top: 10px; }

body.page-contact .contact-demo-nudge { background: var(--gray-warm); border: 1px solid var(--border); border-radius: 14px; padding: 22px 24px; }
body.page-contact .contact-demo-nudge h4 { font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
body.page-contact .contact-demo-nudge p { font-size: 12px; color: var(--text-muted); line-height: 1.65; margin-bottom: 14px; }
body.page-contact .contact-btn-demo { width: 100%; height: 38px; background: var(--orange); color: #fff; border: none; border-radius: 7px; font-family: inherit; font-size: 12px; font-weight: 700; cursor: pointer; }

/* =========================================================
   Page: Book a Demo (Calendly)
   ========================================================= */

body.page-book-a-demo .bd-hero-outcome { font-size: 15px; font-weight: 700; color: #fff; }

body.page-book-a-demo .bd-main-section { background: var(--gray-warm); padding: 64px 64px 80px; }
body.page-book-a-demo .bd-main-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 40px; max-width: 1100px; margin: 0 auto; align-items: start; }
body.page-book-a-demo .bd-tension-bar { background: rgba(232,82,26,0.08); border: 1px solid rgba(232,82,26,0.2); border-radius: 10px; padding: 14px 20px; margin-bottom: 16px; font-size: 14px; color: var(--text); line-height: 1.65; }

body.page-book-a-demo .bd-calendly-card { background: #fff; border: 1px solid var(--border); border-radius: 16px; overflow: hidden; }
body.page-book-a-demo .bd-calendly-header { background: var(--dark); padding: 16px 24px; display: flex; align-items: center; justify-content: space-between; gap: 14px; }
body.page-book-a-demo .bd-calendly-title { font-size: 14px; font-weight: 700; color: #fff; }
body.page-book-a-demo .bd-calendly-sub { font-size: 12px; color: var(--gray-mid); margin-top: 2px; }
body.page-book-a-demo .bd-no-commit-badge { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-radius: 6px; padding: 4px 10px; font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.7); white-space: nowrap; }
body.page-book-a-demo .calendly-inline-widget { min-width: 320px; height: 700px; }

body.page-book-a-demo .bd-right-col { display: flex; flex-direction: column; gap: 20px; }
body.page-book-a-demo .bd-benefits-card { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 28px; }
body.page-book-a-demo .bd-card-eyebrow { font-size: 11px; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 18px; }
body.page-book-a-demo .bd-benefit-list { display: flex; flex-direction: column; gap: 14px; }
body.page-book-a-demo .bd-benefit-row { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text); line-height: 1.6; }

body.page-book-a-demo .bd-roi-card { background: var(--dark); border-radius: 16px; padding: 22px 24px; }
body.page-book-a-demo .bd-roi-num { font-size: 28px; font-weight: 700; color: var(--orange); line-height: 1; margin-bottom: 6px; }
body.page-book-a-demo .bd-roi-label { font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 6px; }
body.page-book-a-demo .bd-roi-desc { font-size: 12px; color: var(--gray-mid); line-height: 1.65; }

body.page-book-a-demo .bd-section-head { text-align: center; max-width: 1100px; margin: 0 auto; }
body.page-book-a-demo .bd-eyebrow-orange { color: var(--orange); }
body.page-book-a-demo .bd-h2 { font-size: 32px; font-weight: 700; color: var(--text); margin-bottom: 12px; letter-spacing: -0.01em; line-height: 1.2; }
body.page-book-a-demo .bd-h2.bd-h2-white { color: #fff; }
body.page-book-a-demo .bd-sub { font-size: 14px; color: var(--text-muted); max-width: 560px; margin: 0 auto 36px; line-height: 1.75; }
body.page-book-a-demo .bd-sub.bd-sub-white { color: var(--gray-mid); }
body.page-book-a-demo .bd-sub.bd-sub-wide { max-width: 560px; }

body.page-book-a-demo .bd-platforms-section { background: var(--dark); padding: 80px 64px; }
body.page-book-a-demo .bd-platform-pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
body.page-book-a-demo .bd-platform-pill { display: flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 999px; padding: 8px 18px; font-size: 14px; font-weight: 600; color: #fff; }
body.page-book-a-demo .bd-platform-icon { width: 26px; height: 26px; border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; flex-shrink: 0; }
body.page-book-a-demo .bd-platform-icon.wp { background: #21759B; color: #fff; }
body.page-book-a-demo .bd-platform-icon.li { background: #0A66C2; color: #fff; }
body.page-book-a-demo .bd-platform-icon.ig { background: #E1306C; color: #fff; }
body.page-book-a-demo .bd-platform-icon.fb { background: #1877F2; color: #fff; }
body.page-book-a-demo .bd-platform-icon.x  { background: #000; color: #fff; }
body.page-book-a-demo .bd-platform-icon.yt { background: #FF0000; color: #fff; }
body.page-book-a-demo .bd-platform-icon.em { background: #1D9E75; color: #fff; }

body.page-book-a-demo .bd-preview-section { background: var(--navy); padding: 80px 64px; }
body.page-book-a-demo .bd-preview-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 1100px; margin: 48px auto 0; }
body.page-book-a-demo .bd-preview-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 14px; padding: 24px; }
body.page-book-a-demo .bd-preview-tag { display: inline-block; font-size: 10px; font-weight: 700; color: var(--orange); background: rgba(232,82,26,0.1); border: 1px solid rgba(232,82,26,0.2); border-radius: 5px; padding: 2px 8px; margin-bottom: 12px; }
body.page-book-a-demo .bd-preview-card h4 { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 6px; }
body.page-book-a-demo .bd-preview-card p { font-size: 13px; color: var(--gray-mid); line-height: 1.65; }

body.page-book-a-demo .bd-stats-section { background: var(--gray-warm); padding: 64px 64px; }
body.page-book-a-demo .bd-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: 1100px; margin: 48px auto 0; }
body.page-book-a-demo .bd-stat-card { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 24px; text-align: center; }
body.page-book-a-demo .bd-stat-num { font-size: 32px; font-weight: 700; color: var(--orange); line-height: 1; margin-bottom: 6px; }
body.page-book-a-demo .bd-stat-label { font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
body.page-book-a-demo .bd-stat-desc { font-size: 12px; color: var(--text-muted); line-height: 1.55; }

body.page-book-a-demo .bd-cfo-bar { background: var(--ink); padding: 32px 64px; text-align: center; }
body.page-book-a-demo .bd-cfo-bar p { font-size: 17px; font-weight: 700; color: #fff; max-width: 720px; margin: 0 auto; line-height: 1.6; }
body.page-book-a-demo .bd-cfo-accent { color: var(--orange); margin-top: 8px; }

/* =========================================================
   Page: Demo Confirmation
   ========================================================= */

body.page-demo-confirmation { background: var(--gray-warm); }

body.page-demo-confirmation .dc-hero { background: var(--dark); padding: 72px 64px 56px; text-align: center; }
body.page-demo-confirmation .dc-confirm-icon { width: 64px; height: 64px; border-radius: 50%; background: rgba(29,158,117,0.15); border: 2px solid rgba(29,158,117,0.3); display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; }
body.page-demo-confirmation .dc-confirm-icon svg { width: 28px; height: 28px; }
body.page-demo-confirmation .dc-hero h1 { font-size: 42px; font-weight: 700; color: #fff; line-height: 1.1; margin-bottom: 14px; letter-spacing: -0.02em; }
body.page-demo-confirmation .dc-hero h1 span { color: var(--orange); }
body.page-demo-confirmation .dc-hero-sub { font-size: 16px; color: var(--gray-mid); max-width: 560px; margin: 0 auto; line-height: 1.75; }
body.page-demo-confirmation .dc-hero-urgency { font-size: 13px; color: rgba(232,82,26,0.85); margin-top: 12px; font-weight: 700; }
body.page-demo-confirmation .dc-hero-decision { font-size: 15px; color: rgba(255,255,255,0.65); margin-top: 8px; font-style: italic; }
body.page-demo-confirmation .dc-hero-explore { font-size: 13px; color: rgba(255,255,255,0.45); margin-top: 8px; }

body.page-demo-confirmation .dc-reminder-bar { background: rgba(232,82,26,0.06); border-bottom: 1px solid rgba(232,82,26,0.15); padding: 10px 64px; text-align: center; }
body.page-demo-confirmation .dc-reminder-bar p { font-size: 13px; color: var(--orange); font-weight: 700; }

body.page-demo-confirmation .dc-value-anchor { background: var(--ink); padding: 28px 64px; display: grid; grid-template-columns: auto 1px auto 1px auto; gap: 32px; align-items: center; max-width: 100%; }
body.page-demo-confirmation .dc-va-num { font-size: 32px; font-weight: 700; color: var(--orange); line-height: 1; }
body.page-demo-confirmation .dc-va-label { font-size: 12px; color: var(--gray-mid); margin-top: 4px; white-space: nowrap; }
body.page-demo-confirmation .dc-va-divider { width: 1px; height: 48px; background: rgba(255,255,255,0.1); }
body.page-demo-confirmation .dc-va-text { font-size: 14px; color: #fff; line-height: 1.7; }
body.page-demo-confirmation .dc-va-keep { font-size: 14px; font-weight: 700; color: var(--orange); line-height: 1.7; }

body.page-demo-confirmation .dc-main { max-width: 860px; margin: 0 auto; padding: 56px 64px 80px; }

body.page-demo-confirmation .dc-prep-card { background: var(--gray-warm); border: 1px solid var(--border); border-radius: 16px; padding: 28px; margin-bottom: 24px; }
body.page-demo-confirmation .dc-prep-list { display: flex; flex-direction: column; gap: 12px; margin-top: 4px; }
body.page-demo-confirmation .dc-prep-row { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text); line-height: 1.6; }

body.page-demo-confirmation .dc-what-card { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 32px 36px; margin-bottom: 24px; }
body.page-demo-confirmation .dc-card-eyebrow { font-size: 11px; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 20px; }
body.page-demo-confirmation .dc-steps { display: flex; flex-direction: column; gap: 18px; }
body.page-demo-confirmation .dc-step { display: flex; align-items: flex-start; gap: 16px; }
body.page-demo-confirmation .dc-step-num { width: 28px; height: 28px; border-radius: 50%; background: rgba(232,82,26,0.1); border: 1px solid rgba(232,82,26,0.2); color: var(--orange); font-size: 12px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
body.page-demo-confirmation .dc-step-text h4 { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 2px; }
body.page-demo-confirmation .dc-step-text p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

body.page-demo-confirmation .dc-secondary-card { background: var(--dark); border-radius: 16px; padding: 36px; text-align: center; margin-bottom: 24px; }
body.page-demo-confirmation .dc-secondary-card h2 { font-size: 24px; font-weight: 700; color: #fff; margin-bottom: 10px; letter-spacing: -0.01em; }
body.page-demo-confirmation .dc-secondary-card p { font-size: 14px; color: var(--gray-mid); margin-bottom: 24px; line-height: 1.75; max-width: 420px; margin-left: auto; margin-right: auto; }
body.page-demo-confirmation .dc-btn-primary { background: var(--orange); color: #fff; border: none; border-radius: 9px; padding: 0 28px; height: 48px; font-family: inherit; font-size: 14px; font-weight: 700; cursor: pointer; }
body.page-demo-confirmation .dc-btn-primary:hover { background: #d44a17; }
body.page-demo-confirmation .dc-cta-risk { font-size: 12px; color: var(--gray-mid); margin-top: 12px; }

body.page-demo-confirmation .dc-preview-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 24px; }
body.page-demo-confirmation .dc-preview-card { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 20px; }
body.page-demo-confirmation .dc-preview-card h4 { font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
body.page-demo-confirmation .dc-preview-card p { font-size: 12px; color: var(--text-muted); line-height: 1.6; }
body.page-demo-confirmation .dc-preview-tag { display: inline-block; font-size: 10px; font-weight: 700; color: var(--orange); background: rgba(232,82,26,0.08); border: 1px solid rgba(232,82,26,0.15); border-radius: 4px; padding: 2px 8px; margin-bottom: 10px; }

body.page-demo-confirmation .dc-live-line { text-align: center; font-size: 15px; font-weight: 700; color: var(--text); margin-top: 28px; max-width: 860px; margin-left: auto; margin-right: auto; }

body.page-demo-confirmation .dc-cfo-bar { background: var(--ink); padding: 28px 64px; text-align: center; }
body.page-demo-confirmation .dc-cfo-bar p { font-size: 15px; font-weight: 700; color: #fff; max-width: 640px; margin: 0 auto; line-height: 1.6; }
body.page-demo-confirmation .dc-cfo-bar span { color: var(--orange); }

/* =========================================================
   Responsive (shared)
   ========================================================= */

@media (max-width: 1024px) {
  body.page-home nav,
  body.page-home .hero { padding-left: 32px; padding-right: 32px; }

  body.page-home .mock-section,
  body.page-home .what-you-get,
  body.page-home .output-section,
  body.page-home .coordination-section,
  body.page-home .thirty-section,
  body.page-home .value-section,
  body.page-home .diff-section,
  body.page-home .memory-section,
  body.page-home .how-section,
  body.page-home .icp-section,
  body.page-home .pricing-section,
  body.page-home .close-section { padding-left: 32px; padding-right: 32px; }

  body.page-home .pricing-band { padding-left: 32px; padding-right: 32px; }

  body.page-home .mocks-row { grid-template-columns: 1fr; }
  body.page-home .output-grid { grid-template-columns: repeat(2, 1fr); }
  body.page-home .value-grid { grid-template-columns: repeat(2, 1fr); }
  body.page-home .diff-grid { grid-template-columns: 1fr; }
  body.page-home .steps,
  body.page-home .icp-grid,
  body.page-home .pricing-grid { grid-template-columns: repeat(2, 1fr); }

  /* Pricing */
  body.page-pricing .pricing-section,
  body.page-pricing .roi-section,
  body.page-pricing .faq-section,
  body.page-pricing .cfo-bar,
  body.page-pricing .cta-band { padding-left: 32px; padding-right: 32px; }
  body.page-pricing .pricing-grid { grid-template-columns: repeat(2, 1fr); }

  /* Privacy */
  body.page-privacy .privacy-hero-inner { padding-left: 32px; padding-right: 32px; }
  body.page-privacy .privacy-container { padding-left: 32px; padding-right: 32px; }

  /* Terms */
  body.page-terms .terms-hero-inner { padding-left: 32px; padding-right: 32px; }
  body.page-terms .terms-container { padding-left: 32px; padding-right: 32px; }

  /* Use cases */
  body.page-use-cases .tab-section,
  body.page-use-cases .persona-panel,
  body.page-use-cases .compare-section,
  body.page-use-cases .output-section,
  body.page-use-cases .workflow-section,
  body.page-use-cases .mid-cta,
  body.page-use-cases .faq-section,
  body.page-use-cases .cfo-bar,
  body.page-use-cases .cta-band { padding-left: 32px; padding-right: 32px; }
  body.page-use-cases .output-grid { grid-template-columns: repeat(2, 1fr); }
  body.page-use-cases .workflow-steps { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  body.page-use-cases .workflow-steps::before { display: none; }

  /* DPA */
  body.page-dpa .dpa-hero-inner { padding-left: 32px; padding-right: 32px; }
  body.page-dpa .dpa-container { padding-left: 32px; padding-right: 32px; }

  /* Contact */
  body.page-contact .contact-main { padding-left: 32px; padding-right: 32px; }
}

/* Tablet / landscape: switch nav to hamburger earlier */
@media (max-width: 1100px) {
  nav { padding: 0 32px; }
  .nav-links { gap: 14px; }
  .nav-links a { font-size: 11px; }

  .btn-nav-primary,
  .btn-nav-secondary {
    height: 32px;
    font-size: 11px;
    padding-left: 12px;
    padding-right: 12px;
  }

  /* Prevent the long primary CTA from wrapping awkwardly */
  .btn-nav-primary {
    max-width: 260px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
  }
}

@media (max-width: 1024px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-btns { display: none; }
  .nav-hamburger { display: flex; }
}

@media (max-width: 900px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-btns { display: none; }
  .nav-hamburger { display: flex; }

  .section { padding: 48px 24px; }
  .hero { padding: 40px 24px; }
  .hero h1 { font-size: 28px; }

  /* Home */
  body.page-home .hero h1 { font-size: 26px; }
  body.page-home .sec-label { margin-bottom: 8px; }
  body.page-home .sec-h2 { margin-bottom: 8px; }
  body.page-home .sec-sub { margin-bottom: 28px; }
  body.page-home .mock-cta-btns { flex-direction: column; align-items: stretch; }
  body.page-home .mock-cta-btns button { width: 100%; }
  body.page-home .close-btns { flex-direction: column; align-items: stretch; }
  body.page-home .close-btns button { width: 100%; }
  body.page-home .hero-stats { flex-wrap: wrap; }
  body.page-home .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); padding: 12px 0; width: 50%; }
  body.page-home .stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.07); }
  body.page-home .stat:nth-last-child(-n+2) { border-bottom: none; }
  body.page-home .steps,
  body.page-home .icp-grid,
  body.page-home .pricing-grid,
  body.page-home .value-grid { grid-template-columns: 1fr; }
  body.page-home .output-grid { grid-template-columns: 1fr; }

  body.page-home .what-you-get { padding: 48px 24px; }
  body.page-home .what-you-get-grid { grid-template-columns: repeat(2, 1fr); }
  body.page-home .what-you-get-flow { flex-direction: column; overflow: visible; }
  body.page-home .what-you-get-step { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); padding: 14px 12px; }
  body.page-home .what-you-get-arrow { display: none; }
  body.page-home .what-you-get-total { border-left: none; }

  body.page-home .coordination-section { padding: 48px 24px; }
  body.page-home .coordination-grid { grid-template-columns: 1fr; gap: 12px; }
  body.page-home .coordination-vs { padding-top: 0; }

  body.page-home .thirty-section { padding: 48px 24px; }
  body.page-home .thirty-grid { grid-template-columns: 1fr; }
  body.page-home .pricing-band { padding: 20px 24px; }
  body.page-home .pricing-addon { padding: 16px 18px; }
  body.page-home .savings-band { padding: 24px; }
  body.page-home .app-body,
  body.page-home .app-body-3 { grid-template-columns: 1fr; min-height: auto; }
  body.page-home .a-sidebar,
  body.page-home .a-right-panel { display: none; }
  body.page-home .a-metrics { grid-template-columns: repeat(2, 1fr); }

  /* Pricing */
  body.page-pricing .hero { padding: 48px 24px 40px; }
  body.page-pricing .hero h1 { font-size: 30px; }
  body.page-pricing .hero-sub { font-size: 15px; }
  body.page-pricing .hero-roi-line { font-size: 14px; }
  body.page-pricing .pricing-section { padding: 48px 24px 36px; }
  body.page-pricing .roi-strip { font-size: 13px; padding: 10px 16px; }
  body.page-pricing .pricing-grid { grid-template-columns: 1fr; gap: 20px; }
  body.page-pricing .plan.popular { margin-top: 14px; }
  body.page-pricing .roi-section { padding: 56px 24px; }
  body.page-pricing .roi-grid { grid-template-columns: 1fr; }
  body.page-pricing .roi-stats-top { grid-template-columns: 1fr 1fr; }
  body.page-pricing .faq-section { padding: 56px 24px; }
  body.page-pricing .faq-grid { grid-template-columns: 1fr; }
  body.page-pricing .cfo-bar { padding: 24px; }
  body.page-pricing .cfo-bar p { font-size: 15px; }
  body.page-pricing .cta-band { padding: 56px 24px; }

  /* Privacy */
  body.page-privacy .privacy-hero-inner { padding: 40px 24px 32px; }
  body.page-privacy .privacy-hero-title { font-size: 26px; }
  body.page-privacy .privacy-container { margin-top: 28px; padding: 0 24px 56px; }
  body.page-privacy .privacy-section { padding: 22px; }
  body.page-privacy .privacy-contact-box { padding: 20px 22px; }

  /* Terms */
  body.page-terms .terms-hero-inner { padding: 40px 24px 32px; }
  body.page-terms .terms-hero-title { font-size: 26px; }
  body.page-terms .terms-container { margin-top: 28px; padding: 0 24px 56px; }
  body.page-terms .terms-section { padding: 22px; }
  body.page-terms .terms-contact-box { padding: 20px 22px; }

  /* Use cases */
  body.page-use-cases .hero { padding: 48px 24px 40px; }
  body.page-use-cases .hero h1 { font-size: 28px; }
  body.page-use-cases .hero-stats { gap: 24px; }
  body.page-use-cases .tab-section { padding: 40px 24px 0; }
  body.page-use-cases .tab { padding: 12px 16px; font-size: 11px; }
  body.page-use-cases .persona-panel { padding: 32px 24px 48px; }
  body.page-use-cases .persona-grid { grid-template-columns: 1fr; gap: 32px; }
  body.page-use-cases .output-section { padding: 56px 24px; }
  body.page-use-cases .output-grid { grid-template-columns: 1fr 1fr; }
  body.page-use-cases .workflow-section { padding: 56px 24px; }
  body.page-use-cases .workflow-steps { grid-template-columns: 1fr 1fr; gap: 24px; }
  body.page-use-cases .compare-section { padding: 56px 24px; }
  body.page-use-cases .mid-cta { padding: 32px 24px; flex-direction: column; align-items: flex-start; }
  body.page-use-cases .mid-cta-btns { flex-direction: column; width: 100%; }
  body.page-use-cases .mid-cta-btns button { width: 100%; white-space: normal; }
  body.page-use-cases .faq-section { padding: 56px 24px; }
  body.page-use-cases .faq-grid { grid-template-columns: 1fr; }
  body.page-use-cases .cfo-bar { padding: 24px; }
  body.page-use-cases .cta-band { padding: 56px 24px; }

  /* DPA */
  body.page-dpa .dpa-hero-inner { padding: 40px 24px 32px; }
  body.page-dpa .dpa-hero-title { font-size: 26px; }
  body.page-dpa .dpa-container { margin-top: 28px; padding: 0 24px 56px; }
  body.page-dpa .dpa-section { padding: 22px; }
  body.page-dpa .dpa-contact-box { padding: 20px 22px; }
  body.page-dpa .dpa-roles-grid { grid-template-columns: 1fr; }

  /* Contact */
  body.page-contact .hero { padding: 48px 24px 40px; }
  body.page-contact .hero h1 { font-size: 28px; }
  body.page-contact .contact-main { grid-template-columns: 1fr; padding: 32px 24px 64px; }
  body.page-contact .contact-form-card { padding: 24px; }

  /* Book-a-demo (Calendly) */
  body.page-book-a-demo .hero { padding: 48px 24px 40px; }
  body.page-book-a-demo .hero h1 { font-size: 28px; }
  body.page-book-a-demo .bd-main-section { padding: 40px 24px 56px; }
  body.page-book-a-demo .bd-main-grid { grid-template-columns: 1fr; }
  body.page-book-a-demo .bd-preview-section { padding: 56px 24px; }
  body.page-book-a-demo .bd-preview-grid { grid-template-columns: 1fr; margin-top: 32px; }
  body.page-book-a-demo .bd-stats-section { padding: 48px 24px; }
  body.page-book-a-demo .bd-stats-grid { grid-template-columns: 1fr 1fr; }
  body.page-book-a-demo .bd-cfo-bar { padding: 24px; }

  /* Demo confirmation */
  body.page-demo-confirmation .dc-hero { padding: 48px 24px 40px; }
  body.page-demo-confirmation .dc-hero h1 { font-size: 28px; }
  body.page-demo-confirmation .dc-main { padding: 32px 24px 64px; }
  body.page-demo-confirmation .dc-what-card { padding: 24px; }
  body.page-demo-confirmation .dc-secondary-card { padding: 28px 24px; }
  body.page-demo-confirmation .dc-preview-grid { grid-template-columns: 1fr; }
  body.page-demo-confirmation .dc-value-anchor { grid-template-columns: 1fr; padding: 28px 24px; }
  body.page-demo-confirmation .dc-va-divider { width: 100%; height: 1px; }
  body.page-demo-confirmation .dc-reminder-bar { padding-left: 24px; padding-right: 24px; }
  body.page-demo-confirmation .dc-cfo-bar { padding: 24px; }

  /* Features grids */
  body.page-features .pipe-steps { grid-template-columns: repeat(2,1fr); }
  body.page-features .ps { border-right: none; border-bottom: 1px solid var(--border); }
  body.page-features .fmt-row { grid-template-columns: 1fr 1fr; }
  body.page-features .out-summary { grid-template-columns: repeat(2,1fr); }
  body.page-features .two-col { grid-template-columns: 1fr; }
  body.page-features .intel-cards { grid-template-columns: 1fr 1fr; }
  body.page-features .score-wrap { grid-template-columns: 1fr; }
  body.page-features .score-cards { grid-template-columns: 1fr 1fr; }
  body.page-features .feat-cost-section { padding: 48px 24px !important; }
  body.page-features .feat-cost-head { margin-bottom: 28px !important; }
  body.page-features .feat-cost-grid { grid-template-columns: 1fr !important; }
  body.page-features .feat-cost-card-body { padding-left: 18px !important; padding-right: 18px !important; }
  body.page-features .feat-cost-card-head,
  body.page-features .feat-cost-total,
  body.page-features .feat-cost-meta,
  body.page-features .feat-cost-cta { padding-left: 18px !important; padding-right: 18px !important; }
  body.page-features .feat-cost-row { flex-wrap: wrap; }
  body.page-features .feat-cost-row > span:last-child { width: 100%; text-align: left; white-space: normal; }
  body.page-features .pub-grid { grid-template-columns: 1fr; }
  body.page-features .ag-grid { grid-template-columns: 1fr; }
  body.page-features .cta-band { padding: 48px 24px; }
  body.page-features footer { padding: 40px 24px 20px; }
  body.page-features .fg { grid-template-columns: 1fr 1fr; }

  /* How-it-works */
  body.page-how-it-works .bva-cols,
  body.page-how-it-works .coord-cols { grid-template-columns: 1fr; }
  body.page-how-it-works .bva-vs,
  body.page-how-it-works .cvs { padding: 10px 0; font-size: 13px; }
  body.page-how-it-works .hitw-thirty-grid { grid-template-columns: 1fr; }
  body.page-how-it-works .hitw-thirty-card { padding: 22px; }
  body.page-how-it-works .hitw-walkthrough { padding: 48px 24px !important; }
  body.page-how-it-works .hitw-walk-step { display: flex !important; flex-direction: column; gap: 18px !important; align-items: stretch !important; margin-bottom: 40px !important; }
  body.page-how-it-works .hitw-walk-2col { grid-template-columns: 1fr !important; }
  body.page-how-it-works .pipe-steps { grid-template-columns: repeat(2,1fr); }
  body.page-how-it-works .ps { border-right: none; border-bottom: 1px solid var(--border); }
  body.page-how-it-works .fmt-row { grid-template-columns: 1fr 1fr; }
  body.page-how-it-works .output-summary { grid-template-columns: repeat(2,1fr); }
  body.page-how-it-works .mem-grid { grid-template-columns: 1fr; }
  body.page-how-it-works .pub-grid { grid-template-columns: 1fr; }
  body.page-how-it-works .cta-band { padding: 48px 24px; }
  body.page-how-it-works .cta-btns { flex-direction: column; align-items: stretch; }
  body.page-how-it-works .cta-btns button { width: 100%; }

  /* About */
  body.page-about .hero { padding: 40px 24px 0; }
  body.page-about .proof-band { padding: 20px 24px; }
  body.page-about .why-lp { padding: 40px 24px; }
  body.page-about .products-grid,
  body.page-about .team-grid { grid-template-columns: 1fr; }
  body.page-about .services-grid,
  body.page-about .values-grid { grid-template-columns: 1fr 1fr; }
  body.page-about .contact-grid { grid-template-columns: 1fr; }
  body.page-about .pre-cta { padding: 24px; }

  /* Book-a-demo */
  body.page-book-a-demo .hero { padding: 40px 24px; }
  body.page-book-a-demo .hero-grid { grid-template-columns: 1fr; gap: 28px; }
  body.page-book-a-demo .expect-section,
  body.page-book-a-demo .demo-preview,
  body.page-book-a-demo .proof-section,
  body.page-book-a-demo .final-cta,
  body.page-book-a-demo .obj-section { padding: 48px 24px; }
  body.page-book-a-demo .obj-faq-grid { grid-template-columns: 1fr; }
  body.page-book-a-demo .expect-grid { grid-template-columns: 1fr; }
  body.page-book-a-demo .proof-grid { grid-template-columns: repeat(2,1fr); }
  body.page-book-a-demo .ds-body { grid-template-columns: 1fr; }
  body.page-book-a-demo .form-row-2 { grid-template-columns: 1fr; }
  body.page-book-a-demo .cta-btns { flex-direction: column; align-items: stretch; }
  body.page-book-a-demo .cta-btns button { width: 100%; }

  /* Footer shared */
  footer { padding: 40px 24px 20px; }
  .fg { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 24px; }

  /* Home */
  body.page-home .mock-section,
  body.page-home .what-you-get,
  body.page-home .output-section,
  body.page-home .coordination-section,
  body.page-home .value-section,
  body.page-home .diff-section,
  body.page-home .memory-section,
  body.page-home .how-section,
  body.page-home .icp-section,
  body.page-home .pricing-section,
  body.page-home .close-section { padding-left: 20px; padding-right: 20px; }
  body.page-home .hero h1 { font-size: 22px; }
  body.page-home .a-metrics { grid-template-columns: 1fr; }
  body.page-home .sec-sub { margin-bottom: 22px; }

  body.page-home .what-you-get-grid { grid-template-columns: 1fr; }

  body.page-features .pipe-steps { grid-template-columns: 1fr; }
  body.page-features .fmt-row { grid-template-columns: 1fr; }
  body.page-features .intel-cards { grid-template-columns: 1fr; }
  body.page-features .score-cards { grid-template-columns: 1fr; }
  body.page-features .fg { grid-template-columns: 1fr; }

  body.page-how-it-works .pipe-steps { grid-template-columns: 1fr; }
  body.page-how-it-works .fmt-row { grid-template-columns: 1fr; }
  body.page-how-it-works .output-summary { grid-template-columns: repeat(2,1fr); }
  body.page-how-it-works .fg { grid-template-columns: 1fr; }
  body.page-how-it-works .bva-badge { font-size: 14px; }

  body.page-about .services-grid,
  body.page-about .values-grid { grid-template-columns: 1fr; }
  body.page-about .fg { grid-template-columns: 1fr; }
  body.page-about .why-stat { flex-direction: column; gap: 16px; align-items: center; }

  /* Pricing */
  body.page-pricing .hero h1 { font-size: 24px; }
  body.page-pricing .hero-sub { font-size: 14px; }
  body.page-pricing .hero-anchor { font-size: 12px; padding: 8px 16px; }
  body.page-pricing .hero-roi-line { font-size: 13px; }
  body.page-pricing .roi-stats-top { grid-template-columns: 1fr; }
  body.page-pricing .rs-num { font-size: 26px; }
  body.page-pricing .plan-price { font-size: 32px; }
  body.page-pricing .overage-row { flex-direction: column; align-items: flex-start; gap: 6px; }

  /* Privacy */
  body.page-privacy .privacy-hero-title { font-size: 22px; }
  body.page-privacy .privacy-container { padding-left: 20px; padding-right: 20px; }
  body.page-privacy .privacy-section { padding: 18px; }
  body.page-privacy .privacy-section-title { font-size: 16px; }
  body.page-privacy .privacy-section ul li { margin-bottom: 4px; }

  /* Terms */
  body.page-terms .terms-hero-title { font-size: 22px; }
  body.page-terms .terms-container { padding-left: 20px; padding-right: 20px; }
  body.page-terms .terms-section { padding: 18px; }
  body.page-terms .terms-section-title { font-size: 16px; }
  body.page-terms .terms-section ul li { margin-bottom: 4px; }

  /* Use cases */
  body.page-use-cases .hero h1 { font-size: 24px; }
  body.page-use-cases .output-grid { grid-template-columns: 1fr; }
  body.page-use-cases .workflow-steps { grid-template-columns: 1fr; }
  body.page-use-cases .tab-row { flex-wrap: wrap; }
  body.page-use-cases .tab { padding: 10px 12px; }
  body.page-use-cases .rc-stats { grid-template-columns: 1fr; }

  /* DPA */
  body.page-dpa .dpa-hero-title { font-size: 22px; }
  body.page-dpa .dpa-container { padding-left: 20px; padding-right: 20px; }
  body.page-dpa .dpa-section { padding: 18px; }
  body.page-dpa .dpa-section-title { font-size: 16px; }
  body.page-dpa .dpa-section ul li { margin-bottom: 4px; }
  body.page-dpa .dpa-gdpr-badge { padding: 8px 12px; }

  /* Contact */
  body.page-contact .hero h1 { font-size: 24px; }

  /* Book-a-demo (Calendly) */
  body.page-book-a-demo .hero h1 { font-size: 24px; }
  body.page-book-a-demo .bd-stats-grid { grid-template-columns: 1fr; }

  /* Demo confirmation */
  body.page-demo-confirmation .dc-hero h1 { font-size: 24px; }
  body.page-demo-confirmation .dc-reminder-bar { padding-left: 20px; padding-right: 20px; }

  .fbot-right { flex-direction: column; align-items: flex-start; gap: 10px; }
  .footer-right { width: 100%; justify-content: flex-start; }

  .fg { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}