/* ===== d4 Analytics — v5 — Dark-First Rebuild ===== */

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

:root {
  --bg:           #0C0B09;
  --bg-subtle:    #161412;
  --bg-surface:   #1A1816;
  --bg-elevated:  #222019;
  --text:         #E8E0D4;
  --text-secondary:#B5ADA0;
  --text-muted:   #7A7470;
  --accent:       #C96B20;
  --accent-hover: #E88A3A;
  --accent-light: rgba(201,107,32,.1);
  --accent-glow:  rgba(201,107,32,.2);
  --border:       #2A2520;
  --border-light: #1E1B18;
  --nav-bg:       rgba(12,11,9,.88);
  --shadow:       0 4px 24px rgba(0,0,0,.4);
  --shadow-lg:    0 12px 48px rgba(0,0,0,.5);
  --radius:       12px;
  --radius-lg:    16px;
  --font:         'Inter', -apple-system, system-ui, sans-serif;
  --font-display: 'Playfair Display', 'Georgia', serif;
  --font-mono:    'SF Mono', 'Fira Code', monospace;
  --ease:         cubic-bezier(.25,.1,.25,1);
  --transition:   .3s var(--ease);
}

[data-theme="light"] {
  --bg:           #FAF7F2;
  --bg-subtle:    #F0EDE6;
  --bg-surface:   #FFFFFF;
  --bg-elevated:  #FDF9F4;
  --text:         #1A1714;
  --text-secondary:#3D3832;
  --text-muted:   #6B6560;
  --border:       #E8E0D4;
  --border-light: #F0EDE6;
  --nav-bg:       rgba(250,247,242,.88);
  --shadow:       0 4px 24px rgba(26,23,20,.06);
  --shadow-lg:    0 12px 48px rgba(26,23,20,.1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a   { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-hover); }

::selection { background: var(--accent-light); color: var(--text); }

/* --- Typography --- */
h1 { font-family: var(--font-display); font-size: clamp(3.2rem, 7.5vw, 5.5rem); line-height: 1.05; font-weight: 800; letter-spacing: -.035em; color: var(--text); }
h2 { font-family: var(--font); font-size: clamp(2rem, 4vw, 3rem); line-height: 1.15; font-weight: 700; letter-spacing: -.03em; color: var(--text); }
h3 { font-family: var(--font); font-size: clamp(1.25rem, 2.5vw, 1.5rem); line-height: 1.25; font-weight: 600; letter-spacing: -.02em; color: var(--text); }
h4 {
  font-family: var(--font);
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--accent);
  font-weight: 600;
  line-height: 1.3;
}

p + p { margin-top: 1em; }

.lead {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.8;
}

/* --- Layout --- */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.container--narrow { max-width: 720px; }

.section     { padding: 120px 0; position: relative; }
.section--sm { padding: 80px 0;  position: relative; }
.section--subtle { background: var(--bg-subtle); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: .88rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  letter-spacing: .01em;
}

.btn--sm { padding: 12px 22px; font-size: .84rem; }

.btn--primary {
  background: linear-gradient(180deg, #E88A3A, #C96B20);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 1px 3px rgba(0,0,0,.3);
}
.btn--primary:hover {
  background: linear-gradient(180deg, #F0A050, #E88A3A);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 0 0 3px var(--accent-glow), 0 4px 20px rgba(201,107,32,.25);
}

[data-theme="light"] .btn--primary {
  background: linear-gradient(180deg, #2C2824, #1A1714);
  color: #FAF7F2;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04), 0 1px 3px rgba(0,0,0,.12);
}
[data-theme="light"] .btn--primary:hover {
  background: linear-gradient(180deg, #3A3530, #2C2824);
  color: #FAF7F2;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04), 0 0 0 3px rgba(201,107,32,.12), 0 4px 16px rgba(0,0,0,.1);
}

.btn--outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn--outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--text-secondary);
  padding: 14px 12px;
}
.btn--ghost:hover { color: var(--text); }

.btn-arrow::after { content: ' \2192'; margin-left: 2px; }
.btn-group { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--nav-bg);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid var(--border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  display: inline-flex;
  align-items: baseline;
  letter-spacing: -.01em;
}
.nav__logo .d4-mark { color: var(--text); }
.nav__logo .d4-triangle {
  display: inline-block;
  width: .7em; height: .8em;
  margin: 0 .04em;
  position: relative;
  top: .02em;
  vertical-align: baseline;
}
.nav__logo .d4-triangle svg { width: 100%; height: 100%; display: block; }
.nav__logo .d4-triangle svg path {
  fill: none;
  stroke: var(--accent);
  stroke-width: 2.5;
  stroke-linejoin: round;
}
.nav__logo .d4-text {
  color: var(--text-muted);
  font-weight: 400;
  margin-left: .12em;
  font-family: var(--font);
  font-size: .85rem;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav__links a {
  color: var(--text-muted);
  font-size: .85rem;
  font-weight: 500;
  text-decoration: none;
  transition: color var(--transition);
  letter-spacing: .01em;
}
.nav__links a:hover { color: var(--text); }
.nav__cta { margin-left: 8px; }

.theme-toggle {
  background: none;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: .9rem;
  color: var(--text-muted);
  transition: all var(--transition);
}
.theme-toggle:hover { border-color: var(--accent); color: var(--accent); }

.nav__hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 20px; height: 2px;
  background: var(--text);
  margin: 4px 0;
  border-radius: 2px;
  transition: all var(--transition);
}
.nav__mobile-controls {
  display: none;
  align-items: center;
  gap: 10px;
}

.nav__mobile {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0; bottom: 0;
  background: var(--bg);
  z-index: 99;
  padding: 32px;
}
.nav__mobile.open { display: flex; flex-direction: column; gap: 4px; }
.nav__mobile a {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
}

/* ======== HERO ======== */
.hero {
  padding: 160px 0 120px;
  position: relative;
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero h1 { margin-bottom: 24px; }
.hero h1 .highlight {
  background: linear-gradient(135deg, #E88A3A, #C96B20);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: normal;
}

.hero__sub {
  color: var(--text-secondary);
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  max-width: 500px;
  line-height: 1.8;
  margin-bottom: 36px;
}

.hero__cta { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }

.hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__triangle {
  width: 100%;
  max-width: 360px;
  height: auto;
  color: var(--text);
}

/* Hero gradient mesh */
.hero__mesh {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero__mesh::before {
  content: '';
  position: absolute;
  top: -25%; right: -15%;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(201,107,32,.1) 0%, transparent 55%);
}
.hero__mesh::after {
  content: '';
  position: absolute;
  bottom: -30%; left: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(107,92,70,.06) 0%, transparent 55%);
}

/* ======== TOOL STRIP ======== */
.tools {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.tools__label {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--text-muted);
  margin-bottom: 16px;
  font-weight: 600;
}
.tools__list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  align-items: center;
}
.tools__list span {
  color: var(--text-muted);
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .01em;
  transition: color var(--transition);
}
.tools__list span:hover { color: var(--text-secondary); }

/* ======== PAIN LIST ======== */
.pain-list { display: flex; flex-direction: column; }

.pain-item {
  display: flex;
  align-items: flex-start;
  gap: 36px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}
.pain-item:first-child { border-top: 1px solid var(--border); }

.pain-item__num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--accent);
  opacity: .15;
  line-height: 1;
  min-width: 80px;
  flex-shrink: 0;
}

.pain-item p {
  color: var(--text-secondary);
  font-size: 1.08rem;
  line-height: 1.75;
  padding-top: 6px;
}

/* ======== PROCESS STEPS ======== */
.process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.process__step {
  padding: 36px 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.process__step:hover {
  border-color: var(--accent);
  background: var(--bg-surface);
}

.process__num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent);
  opacity: .25;
  line-height: 1;
  margin-bottom: 20px;
}
.process__step h3 { margin-bottom: 12px; }
.process__step p  { color: var(--text-secondary); font-size: .9rem; line-height: 1.7; }

/* ======== BENTO (Services Grid) ======== */
.bento {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
}

.bento__card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
}
.bento__card:hover {
  border-color: rgba(201,107,32,.2);
  background: var(--bg-elevated);
}

.bento__card--large {
  grid-row: 1 / 3;
  border-color: rgba(201,107,32,.15);
}
.bento__card--large:hover {
  border-color: rgba(201,107,32,.3);
}

.bento__tag {
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--accent);
  margin-bottom: 16px;
}

.bento__card h3 { margin-bottom: 14px; }
.bento__card p  { color: var(--text-secondary); font-size: .9rem; line-height: 1.7; margin-bottom: 28px; flex: 1; }
.bento__card .btn { align-self: flex-start; }

/* ======== RESULTS ======== */
.results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.result {
  text-align: center;
  padding: 40px 28px;
  position: relative;
}
.result:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 20%;
  height: 60%; width: 1px;
  background: var(--border);
}
.result__num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 16px;
}
.result p {
  color: var(--text-secondary);
  font-size: .85rem;
  line-height: 1.6;
}

/* ======== FAQ ACCORDION ======== */
.faq__item {
  border-bottom: 1px solid var(--border);
}
.faq__item:first-child { border-top: 1px solid var(--border); }

.faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 22px 0;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  transition: color var(--transition);
  gap: 16px;
}
.faq__question:hover { color: var(--accent); }

.faq__question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq__item.open .faq__question::after { content: '\2212'; }

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease);
}
.faq__answer p {
  padding-bottom: 22px;
  color: var(--text-secondary);
  font-size: .93rem;
  line-height: 1.75;
}
.faq__item.open .faq__answer { max-height: 200px; }

/* ======== FINAL CTA ======== */
.final-cta {
  padding: 120px 0;
  background: var(--bg-subtle);
  border-top: 1px solid var(--border);
}
.final-cta h2 { margin-bottom: 20px; }
.final-cta__sub {
  color: var(--text-secondary);
  max-width: 460px;
  margin: 0 auto 40px;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ======== SERVICES PAGE ======== */
.offering {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 52px;
  margin-bottom: 20px;
  transition: all var(--transition);
}
.offering:hover { border-color: rgba(201,107,32,.15); }

.offering__tag {
  display: inline-block;
  color: var(--accent);
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 16px;
}

.offering h2 { margin-bottom: 16px; }

.offering__intro {
  color: var(--text-muted);
  font-style: italic;
  font-size: .93rem;
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 680px;
}

.offering__details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.offering__detail h4 { margin-bottom: 10px; }
.offering__detail p {
  color: var(--text-secondary);
  font-size: .9rem;
  line-height: 1.7;
}

.dont-list { list-style: none; max-width: 680px; }
.dont-list li {
  padding: 18px 0 18px 28px;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
  position: relative;
  font-size: .93rem;
  line-height: 1.7;
}
.dont-list li:first-child { border-top: 1px solid var(--border); }
.dont-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 24px;
  width: 14px; height: 1.5px;
  background: var(--accent);
}

/* ======== ABOUT PAGE ======== */
.about-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 56px;
  align-items: start;
}

.about-photo {
  aspect-ratio: 4/5;
  background: var(--bg-surface);
  border: 1.5px dashed var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: .85rem;
  text-align: center;
  padding: 20px;
}

.about-intro p {
  font-size: 1.1rem;
  line-height: 1.85;
  color: var(--text-secondary);
}
.about-intro p + p { margin-top: 1.4em; }

.method {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.method__step {
  padding: 32px 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.method__step:hover { border-color: var(--accent); background: var(--bg-surface); }
.method__step h3 { color: var(--accent); margin-bottom: 10px; font-size: 1.1rem; }
.method__step p { color: var(--text-secondary); font-size: .88rem; line-height: 1.7; }

.cred-list { list-style: none; max-width: 680px; }
.cred-list li {
  padding: 22px 0 22px 24px;
  border-bottom: 1px solid var(--border);
  position: relative;
  color: var(--text-secondary);
  font-size: .93rem;
  line-height: 1.7;
}
.cred-list li:first-child { border-top: 1px solid var(--border); }
.cred-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 30px;
  width: 7px; height: 7px;
  border: 2px solid var(--accent);
  border-radius: 50%;
}

.cta-banner {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 72px 52px;
  text-align: center;
}
.cta-banner h2 { margin-bottom: 16px; }
.cta-banner p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto 32px;
}

.divider-line {
  border: none;
  border-top: 1px solid var(--border);
  margin-bottom: 48px;
}

.mx-auto { margin-left: auto; margin-right: auto; }

/* ======== CONTACT PAGE ======== */
.booking-section {
  max-width: 640px;
  margin: 0 auto;
}

.calendly-placeholder {
  background: var(--bg-surface);
  border: 1.5px dashed var(--border);
  border-radius: var(--radius-lg);
  padding: 80px 32px;
  text-align: center;
  color: var(--text-muted);
  min-height: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.calendly-placeholder svg { opacity: .3; }
.calendly-placeholder h3 { color: var(--text-secondary); }

.email-fallback {
  text-align: center;
  padding: 80px 0;
}
.email-fallback p {
  color: var(--text-secondary);
  font-size: 1.05rem;
}

/* ======== FOOTER ======== */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px 0;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  display: inline-flex;
  align-items: baseline;
}
.footer__brand .d4-triangle {
  display: inline-block;
  width: .6em; height: .7em;
  margin: 0 .04em;
  position: relative;
  top: .02em;
}
.footer__brand .d4-triangle svg { width: 100%; height: 100%; display: block; }
.footer__brand .d4-triangle svg path {
  fill: none;
  stroke: var(--accent);
  stroke-width: 2.5;
  stroke-linejoin: round;
}

.footer__links {
  display: flex;
  gap: 24px;
  list-style: none;
}
.footer__links a {
  color: var(--text-muted);
  font-size: .82rem;
  text-decoration: none;
}
.footer__links a:hover { color: var(--text); }

.footer__copy {
  color: var(--text-muted);
  font-size: .75rem;
  width: 100%;
  text-align: center;
  margin-top: 28px;
  letter-spacing: .02em;
}

/* ======== HERO DASHBOARD MOCKUP ======== */
.hero__dashboard {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  width: 100%;
  max-width: 420px;
  box-shadow: var(--shadow-lg);
}
.hero__dashboard-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
.hero__dashboard-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
}
.hero__dashboard-dot:first-child { background: var(--accent); }
.hero__dashboard-title {
  font-size: .7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 600;
  margin-left: 8px;
}
.hero__dashboard-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 80px;
  margin-bottom: 20px;
  padding: 0 4px;
}
.hero__dashboard-bar {
  flex: 1;
  border-radius: 3px 3px 0 0;
  background: var(--border);
  transition: background var(--transition);
}
.hero__dashboard-bar:nth-child(1) { height: 45%; }
.hero__dashboard-bar:nth-child(2) { height: 65%; }
.hero__dashboard-bar:nth-child(3) { height: 50%; }
.hero__dashboard-bar:nth-child(4) { height: 80%; background: var(--accent); opacity: .7; }
.hero__dashboard-bar:nth-child(5) { height: 70%; }
.hero__dashboard-bar:nth-child(6) { height: 90%; background: var(--accent); }
.hero__dashboard-bar:nth-child(7) { height: 60%; }
.hero__dashboard-bar:nth-child(8) { height: 75%; }
.hero__dashboard-stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}
.hero__dashboard-stat {
  background: var(--bg-elevated);
  border-radius: 8px;
  padding: 14px 12px;
}
.hero__dashboard-stat-num {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}
.hero__dashboard-stat-label {
  font-size: .6rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* ======== TOOL BADGES ======== */
.tools__list--badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.tools__list--badges span {
  color: var(--text-muted);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .02em;
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 6px;
  transition: all var(--transition);
  font-family: var(--font-mono);
}
.tools__list--badges span:hover {
  border-color: var(--accent);
  color: var(--text-secondary);
}

/* ======== WHO THIS IS FOR ======== */
.audience {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.audience__card {
  padding: 36px 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.audience__card:hover {
  border-color: var(--accent);
  background: var(--bg-surface);
}
.audience__icon {
  width: 40px; height: 40px;
  margin-bottom: 20px;
  color: var(--accent);
  opacity: .7;
}
.audience__card h3 { margin-bottom: 10px; font-size: 1.05rem; }
.audience__card p { color: var(--text-secondary); font-size: .88rem; line-height: 1.7; }

/* ======== TESTIMONIALS ======== */
.testimonials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.testimonial {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
}
.testimonial__quote {
  color: var(--text-secondary);
  font-size: .95rem;
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 20px;
}
.testimonial__quote::before { content: '\201C'; color: var(--accent); font-size: 1.4rem; margin-right: 2px; }
.testimonial__author {
  font-size: .82rem;
  font-weight: 600;
  color: var(--text);
}
.testimonial__role {
  font-size: .75rem;
  color: var(--text-muted);
}

/* ======== PROCESS ICONS ======== */
.process__icon {
  width: 32px; height: 32px;
  color: var(--accent);
  opacity: .6;
  margin-bottom: 16px;
}

/* ======== CAPABILITY ITEMS ======== */
.pain-item h3 {
  font-size: 1.1rem;
  color: var(--text);
}

/* ======== PRIVACY PAGE ======== */
.privacy-content h3 {
  font-size: 1.1rem;
  margin-top: 40px;
  margin-bottom: 12px;
  color: var(--text);
}
.privacy-content h3:first-child { margin-top: 0; }
.privacy-content p {
  color: var(--text-secondary);
  font-size: .92rem;
  line-height: 1.8;
  margin-bottom: 16px;
}
.privacy-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}
.privacy-content li {
  color: var(--text-secondary);
  font-size: .92rem;
  line-height: 1.8;
  margin-bottom: 4px;
}
.privacy-content a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ======== MOBILE CTA ======== */
@media (min-width: 769px) { .mobile-cta { display: none; } }

/* ======== UTILITIES ======== */
.text-center { text-align: center; }
.mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; }
.mb-20 { margin-bottom: 20px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mb-64 { margin-bottom: 64px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }

/* ======== RESPONSIVE ======== */
@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__mobile-controls { display: flex; }
  .container { padding: 0 20px; }

  .hero { padding: 120px 0 80px; }
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { display: none; }

  .section { padding: 80px 0; }
  .section--sm { padding: 56px 0; }

  .tools__list { gap: 8px 20px; }

  .pain-item { flex-direction: column; gap: 6px; }
  .pain-item__num { font-size: 2.5rem; min-width: auto; }

  .process { grid-template-columns: 1fr; }
  .method  { grid-template-columns: 1fr 1fr; }

  .bento {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .bento__card--large { grid-row: auto; }

  .results { grid-template-columns: 1fr; }
  .result:not(:last-child)::after {
    left: 20%; right: 20%;
    top: auto; bottom: 0;
    height: 1px; width: auto;
  }

  .offering { padding: 28px 24px; }
  .offering__details { grid-template-columns: 1fr; }

  .audience { grid-template-columns: 1fr; }
  .testimonials { grid-template-columns: 1fr; }

  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-photo { max-width: 240px; }

  .mobile-cta {
    display: block;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: var(--nav-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 20px;
    border-top: 1px solid var(--border);
    z-index: 100;
    text-align: center;
  }
  .mobile-cta .btn { width: 100%; justify-content: center; }
  body { padding-bottom: 64px; }
}

@media (max-width: 480px) {
  .method { grid-template-columns: 1fr; }
}

/* ======== ANIMATIONS ======== */
.fade-up {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger > .fade-up:nth-child(1) { transition-delay: 0s; }
.stagger > .fade-up:nth-child(2) { transition-delay: .08s; }
.stagger > .fade-up:nth-child(3) { transition-delay: .16s; }
.stagger > .fade-up:nth-child(4) { transition-delay: .24s; }
.stagger > .fade-up:nth-child(5) { transition-delay: .32s; }
