/* ══════════════════════════════════════════════════════════════
   GLOK Advisory — Shared Stylesheet
   ══════════════════════════════════════════════════════════════ */

:root {
  --deep-slate: #2F4550;
  --steel-blue: #586F7C;
  --copper: #B8860B;
  --copper-light: #D4A017;
  --off-white: #F5F3EF;
  --white: #FFFFFF;
  --light-gray: #E8E4DE;
  --text-dark: #1A2730;
  --text-mid: #3D5260;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--off-white);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  height: 72px;
  background: #2F4550;
  border-bottom: 1px solid rgba(184,134,11,0.25);
  transition: height 0.3s ease;
}
nav.scrolled { height: 60px; }

.nav-logo {
  display: flex;
  align-items: center;
  height: 100%;
  text-decoration: none;
}
.nav-logo svg {
  height: 36px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  height: 100%;
}
.nav-links li {
  display: flex;
  align-items: center;
  height: 100%;
  position: relative;
}
.nav-links a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--copper-light); }
.nav-links a.active { color: var(--copper-light); }

/* Dropdown */
.nav-dropdown {
  position: relative;
}
.nav-dropdown > a {
  cursor: pointer;
}
.nav-dropdown > a::after {
  content: ' ▾';
  font-size: 9px;
  opacity: 0.6;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--deep-slate);
  border: 1px solid rgba(184,134,11,0.25);
  padding: 12px 0;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
  z-index: 200;
  list-style: none;
}
.nav-dropdown:hover .dropdown-menu,
.dropdown-menu.active {
  opacity: 1;
  visibility: visible;
}
.dropdown-menu li a {
  display: block;
  padding: 10px 24px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: all 0.15s;
}
.dropdown-menu li a:hover {
  color: var(--copper-light);
  background: rgba(255,255,255,0.05);
}

.nav-cta {
  background: transparent;
  border: 1px solid var(--copper);
  color: var(--copper-light);
  padding: 9px 22px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  display: flex;
  align-items: center;
  transition: all 0.2s;
}
.nav-cta:hover {
  background: var(--copper);
  color: var(--white);
}

/* ── HERO ── */
#hero {
  min-height: 100vh;
  background: var(--deep-slate);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 60px 80px;
}

.hero-bg-lines {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image:
    linear-gradient(90deg, var(--copper) 1px, transparent 1px),
    linear-gradient(180deg, var(--copper) 1px, transparent 1px);
  background-size: 80px 80px;
}

.hero-accent {
  position: absolute;
  top: -200px;
  right: -100px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(184,134,11,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--copper-light);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--copper);
}

.hero-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(40px, 4.5vw, 62px);
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 28px;
}
.hero-headline em {
  font-style: italic;
  color: rgba(255,255,255,0.55);
}

.hero-sub {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255,255,255,0.65);
  margin-bottom: 44px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── BUTTONS ── */
.btn-primary {
  background: var(--copper);
  color: var(--white);
  padding: 15px 32px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
}
.btn-primary:hover { background: var(--copper-light); transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,0.7);
  padding: 15px 32px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.5); color: var(--white); }

.btn-outline {
  background: transparent;
  color: var(--copper);
  padding: 15px 32px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--copper);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
}
.btn-outline:hover { background: var(--copper); color: var(--white); }

/* ── HERO STAT CARDS ── */
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-stat-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 28px 32px;
  position: relative;
  animation: fadeSlideIn 0.8s ease forwards;
  opacity: 0;
}
.hero-stat-card:nth-child(1) { animation-delay: 0.2s; }
.hero-stat-card:nth-child(2) { animation-delay: 0.35s; }
.hero-stat-card:nth-child(3) { animation-delay: 0.5s; }
.hero-stat-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--copper);
}

.stat-number {
  font-family: 'DM Serif Display', serif;
  font-size: 36px;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  font-weight: 400;
  letter-spacing: 0.05em;
}

@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ── MARQUEE BAR ── */
.marquee-bar {
  background: var(--copper);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  animation: marquee 28s linear infinite;
}
.marquee-item {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  padding: 0 40px;
}
.marquee-dot {
  color: rgba(255,255,255,0.5);
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── SECTIONS ── */
section { padding: 100px 60px; }

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--copper);
}

.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(32px, 3.5vw, 48px);
  line-height: 1.15;
  color: var(--deep-slate);
  margin-bottom: 20px;
}

.section-sub {
  font-size: 17px;
  line-height: 1.75;
  color: var(--steel-blue);
  font-weight: 300;
  max-width: 580px;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--deep-slate);
  padding: 140px 60px 80px;
  position: relative;
  overflow: hidden;
}
.page-hero .hero-bg-lines {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image:
    linear-gradient(90deg, var(--copper) 1px, transparent 1px),
    linear-gradient(180deg, var(--copper) 1px, transparent 1px);
  background-size: 80px 80px;
}
.page-hero .hero-accent {
  position: absolute;
  top: -200px;
  right: -100px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(184,134,11,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.page-hero .section-label { color: var(--copper-light); }
.page-hero .section-label::before { background: var(--copper); }
.page-hero .section-title {
  color: var(--white);
  font-size: clamp(36px, 4vw, 56px);
  max-width: 700px;
}
.page-hero .section-sub {
  color: rgba(255,255,255,0.6);
  max-width: 600px;
}

/* ── ABOUT ── */
#about { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 60px;
}

.about-text p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-mid);
  margin-bottom: 20px;
}

.about-credentials {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.credential-item {
  padding: 24px 0;
  border-bottom: 1px solid var(--light-gray);
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.credential-item:first-child { border-top: 1px solid var(--light-gray); }

.cred-number {
  font-family: 'DM Serif Display', serif;
  font-size: 28px;
  color: var(--copper);
  line-height: 1;
  min-width: 60px;
}

.cred-text strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--deep-slate);
  margin-bottom: 4px;
  letter-spacing: 0.03em;
}
.cred-text span {
  font-size: 13px;
  color: var(--steel-blue);
  line-height: 1.5;
}

/* ── TRANSFORMATION SECTION ── */
.transform-section { background: var(--deep-slate); }

.transform-inner {
  max-width: 860px;
  margin: 0 auto;
}

.transform-hook {
  margin-bottom: 80px;
}

.transform-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 28px;
}

.transform-dim {
  color: rgba(255,255,255,0.35);
}

.transform-intro {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  max-width: 600px;
  font-weight: 300;
}

/* Vignettes */
.transform-vignettes {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.transform-vignette {
  padding: 0 0 56px 32px;
  border-left: 2px solid rgba(255,255,255,0.1);
  position: relative;
  margin-bottom: 0;
}

.transform-vignette:last-child {
  padding-bottom: 0;
  border-left-color: transparent;
}

.vignette-dot {
  position: absolute;
  left: -5px;
  top: 0;
  width: 8px;
  height: 8px;
  background: var(--copper);
  border-radius: 50%;
}

.vignette-wish {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(20px, 2.5vw, 24px);
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.35;
}

.vignette-text {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255,255,255,0.55);
  max-width: 580px;
  font-weight: 300;
}

.vignette-text + .vignette-text {
  margin-top: 12px;
}

.vignette-result {
  margin-top: 20px;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  font-weight: 500;
  letter-spacing: 0.05em;
}

.vignette-built {
  color: var(--copper-light);
  font-weight: 700;
}

/* Closing */
.transform-closing {
  margin-top: 60px;
  padding-top: 60px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.transform-closing-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}

.transform-closing-text {
  font-size: 17px;
  color: rgba(255,255,255,0.5);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 44px;
  font-weight: 300;
}

/* ── AUDIENCE CARDS (homepage) ── */
#audiences { background: var(--deep-slate); }
#audiences .section-title { color: var(--white); }
#audiences .section-sub { color: rgba(255,255,255,0.55); }
#audiences .section-label { color: var(--copper-light); }
#audiences .section-label::before { background: var(--copper); }

.audience-cards,
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.audience-card {
  border: 1px solid rgba(255,255,255,0.1);
  padding: 44px 36px;
  position: relative;
  transition: all 0.3s;
  background: transparent;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.audience-card:hover { border-color: var(--copper); transform: translateY(-4px); }

.audience-card-dark {
  border-color: rgba(255,255,255,0.1);
  background: transparent;
}
.audience-card-dark:hover { border-color: var(--copper); }

.audience-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 16px;
}

.audience-title {
  font-family: 'DM Serif Display', serif;
  font-size: 24px;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
  text-decoration: none;
}
.audience-card:hover .audience-title {
  color: var(--copper-light);
}

.audience-desc {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255,255,255,0.65);
  margin-bottom: 28px;
  flex-grow: 1;
}

/* ── VERTICAL GRID (detail pages) ── */
.vertical-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.vertical-left {
  position: sticky;
  top: 100px;
}

.vertical-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.vertical-card {
  background: var(--white);
  padding: 32px 36px;
  border-left: 3px solid var(--copper);
}

.dark-card {
  background: rgba(255,255,255,0.06);
  border-left: 3px solid var(--copper);
}

.vertical-card-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--steel-blue);
  margin-bottom: 16px;
}

.audience-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.audience-list li {
  font-size: 14px;
  color: var(--text-mid);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}
.audience-list li::before {
  content: '\2192';
  position: absolute;
  left: 0;
  color: var(--copper);
  font-size: 11px;
  top: 2px;
}

/* dark bg list items */
.dark-list li { color: rgba(255,255,255,0.65); }

/* ── AI ANALYTICS / DASHBOARDS ── */
#ai-analytics {
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.ai-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 60px;
}

.ai-visual {
  background: var(--deep-slate);
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.ai-visual-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-red { background: #FF5F56; }
.dot-yellow { background: #FFBD2E; }
.dot-green { background: #27C93F; }

/* ── Dashboard Visual (replaces chat mockup) ── */
.dash-visual { padding: 24px !important; }
.dash-subtitle {
  font-family: 'DM Serif Display', serif;
  font-size: 14px; color: var(--white); margin-bottom: 16px;
}
.dash-subtitle span { font-family: 'Inter','DM Sans',sans-serif; font-size: 10px; color: rgba(255,255,255,0.35); margin-left: 8px; }

.dash-kpi-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; margin-bottom: 14px; }
.dash-kpi {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  padding: 10px 12px; border-left: 2px solid var(--copper);
}
.dash-kpi-label { font-size: 7px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.4); margin-bottom: 4px; }
.dash-kpi-val { font-family: 'DM Serif Display', serif; font-size: 20px; color: var(--white); line-height: 1.1; }
.dash-kpi-delta { font-size: 7px; margin-top: 3px; }
.dash-kpi-delta.up { color: #5cb85c; }
.dash-kpi-delta.down { color: #d9534f; }

.dash-charts-row { display: grid; grid-template-columns: 1.6fr 1fr; gap: 10px; margin-bottom: 10px; }
.dash-chart-box {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  padding: 14px; border-radius: 2px;
}
.dash-chart-title { font-size: 8px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.45); margin-bottom: 10px; }

.dash-svg-line { width: 100%; height: auto; display: block; }
.dash-svg-donut { width: 140px; height: 140px; display: block; margin: 0 auto 12px; transform: rotate(-90deg); }
.dash-chart-donut { display: flex; flex-direction: column; justify-content: center; }
.dash-svg-bars { width: 100%; height: auto; display: block; }

/* Donut legend */
.donut-legend { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 12px; justify-items: start; padding: 0 8px; }
.donut-legend span { font-size: 7px; color: rgba(255,255,255,0.45); display: flex; align-items: center; gap: 3px; }
.donut-legend i, .bar-legend i { width: 6px; height: 6px; border-radius: 50%; display: inline-block; }
.bar-legend { display: flex; gap: 14px; justify-content: center; margin-top: 6px; }
.bar-legend span { font-size: 7px; color: rgba(255,255,255,0.45); display: flex; align-items: center; gap: 3px; }
.bar-legend i { border-radius: 1px; }

/* ── AI Audit Independence Disclosure ── */
.audit-disclosure {
  max-width: 780px;
  margin: 0 auto;
  text-align: left;
}
.audit-disclosure-line {
  width: 60px;
  height: 3px;
  background: var(--copper);
  margin-bottom: 28px;
}
.audit-disclosure-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: 20px;
}
.audit-disclosure-body {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 32px;
}
.audit-disclosure-pledge {
  background: var(--deep-slate);
  padding: 32px 36px;
  border-left: 4px solid var(--copper);
}
.audit-disclosure-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper-light);
  margin-bottom: 12px;
}
.audit-disclosure-pledge p {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,0.7);
}
.audit-disclosure-pledge strong {
  color: var(--white);
  font-weight: 700;
}

/* ── AI Audit Process Steps ── */
.audit-steps {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.audit-step {
  display: flex;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.audit-step:last-child { border-bottom: none; }
.audit-step-num {
  font-family: 'DM Serif Display', serif;
  font-size: 48px;
  color: var(--copper);
  line-height: 1;
  min-width: 72px;
  opacity: 0.6;
}
.audit-step-content h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 24px;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1.2;
}
.audit-step-week {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--copper-light);
  margin-bottom: 12px;
  padding: 3px 10px;
  border: 1px solid rgba(212,160,23,0.3);
  border-radius: 2px;
}
.audit-step-content p {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,0.55);
  max-width: 540px;
}

/* ── Dashboard Embed (custom-dashboards page) ── */
.dash-embed-section .section-inner { max-width: 1100px; }
.dash-embed-window {
  background: #1a2730;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.dash-embed-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(0,0,0,0.25);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.dash-embed-url {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  margin-left: 8px;
  letter-spacing: 0.05em;
  font-family: 'DM Sans', sans-serif;
}
.dash-embed-iframe {
  width: 100%;
  height: 700px;
  border: none;
  display: block;
  background: #1a2730;
}

/* ── Dashboard Animations ── */
.dash-line-draw {
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
}
.dash-area-fill { opacity: 0; }
.dash-animated .dash-line-draw {
  animation: drawLine 1.5s ease-out 0.3s forwards;
}
.dash-animated .dash-area-fill {
  animation: fadeArea 1s ease-out 1.2s forwards;
}
@keyframes drawLine { to { stroke-dashoffset: 0; } }
@keyframes fadeArea { to { opacity: 0.15; } }

.donut-seg { stroke-dasharray: 0 264; }
.dash-animated .donut-seg {
  animation: drawDonut 0.8s ease-out forwards;
  animation-delay: var(--delay, 0.3s);
}
@keyframes drawDonut { to { stroke-dasharray: var(--final-dash); } }

.dash-bar { transform-origin: bottom; }
.dash-animated .dash-bar {
  animation: growBar 0.6s ease-out forwards;
}
@keyframes growBar {
  to { height: calc(var(--bar-h) * 1px); y: calc(85px - var(--bar-h) * 1px); }
}

/* Count-up handled by JS */

/* Legacy chat bubble kept for inner pages */
.ai-chat-bubble {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 2px;
  padding: 14px 18px;
  margin-bottom: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}
.ai-chat-bubble.user {
  background: rgba(184,134,11,0.15);
  border-color: rgba(184,134,11,0.3);
  color: rgba(255,255,255,0.85);
}
.ai-chat-bubble .label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: var(--copper);
}

.ai-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 36px;
}

.ai-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.ai-feature-icon {
  width: 40px;
  height: 40px;
  background: rgba(47,69,80,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.ai-feature-text strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--deep-slate);
  margin-bottom: 4px;
}
.ai-feature-text span {
  font-size: 13px;
  color: var(--steel-blue);
  line-height: 1.6;
}

/* ── CONTACT ── */
#contact { background: var(--off-white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 60px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-item-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper);
}

.contact-item-value {
  font-size: 17px;
  color: var(--deep-slate);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}
a.contact-item-value:hover { color: var(--copper); }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steel-blue);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--white);
  border: 1px solid var(--light-gray);
  padding: 13px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.2s;
  border-radius: 0;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--copper);
}

.form-group textarea { resize: vertical; min-height: 120px; }

/* ── MARKET RESEARCH ── */
#market-research { background: var(--off-white); }

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--deep-slate);
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner .hero-bg-lines {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    linear-gradient(90deg, var(--copper) 1px, transparent 1px),
    linear-gradient(180deg, var(--copper) 1px, transparent 1px);
  background-size: 80px 80px;
}
.cta-banner-inner {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}
.cta-banner .section-title {
  color: var(--white);
  text-align: center;
  margin-bottom: 16px;
}
.cta-banner .section-sub {
  color: rgba(255,255,255,0.55);
  text-align: center;
  max-width: 500px;
  margin: 0 auto 32px;
}

/* ── FOOTER ── */
footer {
  background: var(--text-dark);
  padding: 40px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo img { height: 28px; }

.footer-text {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.05em;
}

.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}
.footer-links a {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--copper-light); }

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 16px 24px; }
  nav.scrolled { padding: 12px 24px; }
  .nav-links { display: none; }
  section { padding: 70px 24px; }
  #hero { padding: 100px 24px 60px; }
  .page-hero { padding: 100px 24px 60px; }
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { display: none; }
  .about-grid,
  .ai-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .transform-vignette { padding-left: 24px; }
  .transform-hook { margin-bottom: 60px; }
  .audience-cards,
  .audience-grid { grid-template-columns: 1fr; gap: 16px; }
  .vertical-grid { grid-template-columns: 1fr; gap: 40px; }
  .vertical-left { position: static; }
  .cta-banner { padding: 60px 24px; }
  .dash-kpi-row { grid-template-columns: repeat(2,1fr); }
  .dash-charts-row { grid-template-columns: 1fr; }
  .dash-kpi-val { font-size: 16px; }
  .dash-embed-iframe { height: 500px; }
  .audit-step { flex-direction: column; gap: 12px; }
  .audit-step-num { font-size: 36px; min-width: auto; }
  footer { padding: 30px 24px; flex-direction: column; align-items: flex-start; }
}
