/* ─── Google Fonts ──────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* ─── Variables ─────────────────────────────────────── */
:root {
  --accent:       #2563eb;
  --accent-dark:  #1d4ed8;
  --black:        #000;
  --white:        #fff;
  --g100: rgba(255,255,255,0.04);
  --g200: rgba(255,255,255,0.08);
  --g300: rgba(255,255,255,0.14);
  --g400: rgba(255,255,255,0.25);
  --g500: rgba(255,255,255,0.40);
  --g600: rgba(255,255,255,0.55);
  --font:    'Inter', sans-serif;
  --display: 'Space Grotesk', sans-serif;
  --max: 1280px;
  --px: clamp(1.25rem, 5vw, 4rem);
  --radius: 1.25rem;
}

/* ─── Reset ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { background: var(--black); color: var(--white); font-family: var(--font); line-height: 1.6; }
img, svg { display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
ul, ol { list-style: none; }
input, textarea, select { font: inherit; }

/* ─── Typography ─────────────────────────────────────── */
h1,h2,h3,h4,h5,h6 { font-family: var(--display); line-height: 1.08; letter-spacing: -0.03em; }

/* ─── Layout ─────────────────────────────────────────── */
.wrap  { max-width: var(--max); margin: 0 auto; padding: 0 var(--px); }
.sec   { padding: 6rem 0; }
.sec-lg{ padding: 8rem 0; }

/* ─── Buttons ────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-weight: 600; font-size: .85rem; border-radius: 999px;
  padding: .85rem 1.85rem; transition: .2s; white-space: nowrap; cursor: pointer;
}
.btn-primary { background: var(--accent); color: var(--white); }
.btn-primary:hover { background: var(--accent-dark); }
.btn-white   { background: var(--white); color: var(--black); }
.btn-white:hover { opacity: .9; }
.btn-outline  { border: 1px solid var(--g300); color: var(--white); }
.btn-outline:hover { border-color: var(--g400); background: var(--g100); }

/* ─── Utility tags / labels ─────────────────────────── */
.label {
  display: block; font-size: .7rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; color: var(--accent);
}
.tag {
  display: inline-block; font-size: .72rem; font-weight: 500;
  border: 1px solid var(--g300); border-radius: 999px;
  padding: .28rem .75rem; color: var(--g500);
}

/* ─── Reveal animation ───────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity .65s cubic-bezier(.22,1,.36,1), transform .65s cubic-bezier(.22,1,.36,1);
}
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { transform: none; transition: opacity .4s; }
}

/* ─── Grid backgrounds ───────────────────────────────── */
.bg-grid {
  background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 64px 64px;
}
.bg-dots {
  background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 32px 32px;
}

/* ═══════════════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════════════ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .3s, border-color .3s, backdrop-filter .3s;
  border-bottom: 1px solid transparent;
}
#navbar.scrolled {
  background: rgba(0,0,0,.88);
  backdrop-filter: blur(14px);
  border-color: var(--g200);
}
.nav-inner {
  display: flex; align-items: center; height: 64px; gap: 2rem;
}
.nav-logo {
  font-family: var(--display); font-size: 1.1rem; font-weight: 700;
  letter-spacing: -.02em; flex-shrink: 0;
}
.nav-logo span { color: var(--accent); }
.nav-links { display: flex; gap: 2rem; flex: 1; }
.nav-link {
  font-size: .85rem; font-weight: 500; color: var(--g500);
  transition: color .2s; position: relative;
}
.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-cta { margin-left: auto; }

.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  padding: 8px; margin-left: auto; cursor: pointer;
}
.nav-burger span {
  display: block; width: 22px; height: 2px; background: var(--white);
  transition: transform .3s, opacity .3s; transform-origin: center;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none; flex-direction: column;
  background: var(--black); border-bottom: 1px solid var(--g200);
  overflow: hidden; max-height: 0; transition: max-height .3s ease;
  padding: 0 var(--px);
}
.nav-mobile.open { max-height: 400px; padding-bottom: 1.5rem; }
.nav-mobile .nav-link {
  display: block; padding: .85rem 0;
  border-bottom: 1px solid var(--g100); font-size: 1rem;
}
.nav-mobile .nav-link:last-of-type { border: none; }
.nav-mobile .btn { margin-top: 1rem; width: 100%; justify-content: center; border-radius: 12px; }

/* ═══════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════ */
#footer { border-top: 1px solid var(--g200); padding: 5rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 3rem; padding-bottom: 4rem; }
.footer-logo { font-family: var(--display); font-size: 1.1rem; font-weight: 700; letter-spacing: -.02em; }
.footer-logo span { color: var(--accent); }
.footer-tagline { margin-top: 1rem; font-size: .85rem; color: var(--g500); line-height: 1.7; max-width: 240px; }
.footer-col-label { font-size: .65rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--g400); margin-bottom: 1.2rem; }
.footer-nav { display: flex; flex-direction: column; gap: .75rem; }
.footer-link { font-size: .85rem; color: var(--g500); transition: color .2s; }
.footer-link:hover { color: var(--white); }
.footer-socials { display: flex; gap: 1rem; margin-top: 1.5rem; }
.footer-social { color: var(--g400); transition: color .2s; }
.footer-social:hover { color: var(--white); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 2rem; border-top: 1px solid var(--g100);
  font-size: .75rem; color: var(--g400);
}

/* ═══════════════════════════════════════════════════════
   HOME — HERO
═══════════════════════════════════════════════════════ */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center; padding-top: 64px; overflow: hidden;
}
.hero-glow {
  position: absolute; top: 35%; left: 50%;
  transform: translate(-50%,-50%);
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner { padding: 4rem 0; max-width: 820px; position: relative; }
.hero-eyebrow { margin-bottom: 1.25rem; }
.hero-h1 {
  font-size: clamp(3.2rem, 9vw, 7.5rem);
  font-weight: 700; letter-spacing: -.04em; line-height: 1.0;
  margin-bottom: 1.5rem;
}
.hero-h1 .faded { color: var(--g400); }
.hero-sub { font-size: 1.1rem; color: var(--g600); max-width: 560px; line-height: 1.75; margin-bottom: 2.5rem; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ─── Proof bar ─────────────────────────── */
.proof-bar { border-top: 1px solid var(--g200); border-bottom: 1px solid var(--g200); background: var(--g100); padding: 1.2rem 0; }
.proof-inner { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.proof-label { font-size: .65rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--g400); white-space: nowrap; }
.proof-tags { display: flex; flex-wrap: wrap; gap: .5rem; }

/* ─── Section headings ─────────────────── */
.sec-h { font-size: clamp(2rem,4.5vw,3.5rem); margin-bottom: .75rem; }
.sec-sub { font-size: 1rem; color: var(--g500); max-width: 480px; line-height: 1.75; margin-bottom: 3.5rem; }

/* ─── Services grid ────────────────────── */
.services-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  border: 1px solid var(--g200); border-radius: var(--radius); overflow: hidden;
}
.service-card { padding: 2.5rem; border-right: 1px solid var(--g200); }
.service-card:last-child { border-right: none; }
.service-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(37,99,235,.12); color: var(--accent);
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem;
}
.service-icon svg { width: 22px; height: 22px; }
.service-title { font-size: 1.1rem; font-weight: 600; margin-bottom: .75rem; }
.service-desc { font-size: .85rem; color: var(--g500); line-height: 1.8; }

/* ─── How it works ─────────────────────── */
.how-sec { border-top: 1px solid var(--g200); border-bottom: 1px solid var(--g200); }
.steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 3rem; margin-top: 3.5rem; }
.step-num { font-family: var(--display); font-size: 5rem; font-weight: 700; color: rgba(255,255,255,.04); line-height: 1; }
.step-title { font-size: 1.4rem; font-weight: 600; margin: -.5rem 0 .75rem; }
.step-desc { font-size: .85rem; color: var(--g500); line-height: 1.8; }

/* ─── Results / case study cards ───────── */
.results-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; margin-bottom: 3rem; flex-wrap: wrap; }
.view-all { display: flex; align-items: center; gap: .4rem; font-size: .85rem; font-weight: 600; color: var(--g500); transition: color .2s; }
.view-all:hover { color: var(--white); }
.cases-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.case-card {
  display: flex; flex-direction: column;
  border: 1px solid var(--g200); border-radius: var(--radius); padding: 2rem;
  transition: border-color .25s, background .25s; cursor: pointer;
}
.case-card:hover { border-color: var(--g400); background: var(--g100); }
.case-card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.5rem; color: var(--g400); }
.case-metric { font-family: var(--display); font-size: 2.4rem; font-weight: 700; line-height: 1; margin-bottom: .3rem; }
.case-niche { font-size: .75rem; color: var(--g400); margin-bottom: 1.25rem; }
.case-brand { font-family: var(--display); font-size: 1.1rem; font-weight: 600; margin-bottom: .6rem; }
.case-summary { font-size: .82rem; color: var(--g500); line-height: 1.75; }

/* ─── CTA Box ──────────────────────────── */
.cta-box {
  border: 1px solid rgba(37,99,235,.25); background: rgba(37,99,235,.05);
  border-radius: 2rem; padding: clamp(2.5rem,6vw,6rem);
  text-align: center; display: flex; flex-direction: column; align-items: center;
}
.cta-h { font-size: clamp(2rem,4vw,3.5rem); margin-bottom: 1rem; max-width: 600px; }
.cta-sub { font-size: 1rem; color: var(--g500); max-width: 460px; line-height: 1.75; margin-bottom: 2rem; }

/* ═══════════════════════════════════════════════════════
   WORK PAGE
═══════════════════════════════════════════════════════ */
.page-hero { padding: 8rem 0 4rem; }
.page-h { font-size: clamp(2.5rem,6.5vw,5rem); letter-spacing: -.04em; margin-bottom: 1rem; }
.page-sub { font-size: 1rem; color: var(--g500); max-width: 480px; line-height: 1.75; margin-bottom: 3.5rem; }

.work-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; margin-bottom: 5rem; }
.work-card {
  border: 1px solid var(--g200); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: border-color .25s; cursor: pointer; text-decoration: none;
}
.work-card:hover { border-color: var(--g400); }
.work-thumb {
  aspect-ratio: 16/9; background: var(--g100); position: relative;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.work-thumb-glow { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(37,99,235,.1), transparent); }
.work-thumb-letter { font-family: var(--display); font-size: 5rem; font-weight: 700; color: rgba(255,255,255,.04); position: relative; }
.work-thumb-tag { position: absolute; bottom: .75rem; left: .75rem; }
.work-body { padding: 1.75rem; flex: 1; display: flex; flex-direction: column; gap: .75rem; }
.work-body-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; }
.work-brand { font-family: var(--display); font-size: 1.05rem; font-weight: 600; }
.work-niche { font-size: .75rem; color: var(--g400); margin-top: .2rem; }
.work-metric { font-family: var(--display); font-size: 1.5rem; font-weight: 700; color: var(--accent); flex-shrink: 0; }
.work-summary { font-size: .82rem; color: var(--g500); line-height: 1.75; flex: 1; }
.work-read {
  display: flex; align-items: center; gap: .4rem;
  font-size: .82rem; font-weight: 600; color: var(--g400); transition: color .2s; margin-top: .5rem;
}
.work-card:hover .work-read { color: var(--white); }
.bottom-cta { text-align: center; padding: 2rem 0; }
.bottom-cta p { color: var(--g500); margin-bottom: 1.5rem; }

/* ═══════════════════════════════════════════════════════
   CASE STUDY DETAIL
═══════════════════════════════════════════════════════ */
.detail-wrap { max-width: 800px; margin: 0 auto; padding: 8rem var(--px) 6rem; }
.back-link { display: inline-flex; align-items: center; gap: .5rem; font-size: .82rem; color: var(--g500); transition: color .2s; margin-bottom: 3rem; }
.back-link:hover { color: var(--white); }
.detail-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.5rem; }
.detail-h { font-size: clamp(2.5rem,6vw,5rem); letter-spacing: -.04em; margin-bottom: .5rem; }
.detail-niche { font-size: 1rem; color: var(--g500); margin-bottom: 3rem; }
.metrics-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  border: 1px solid var(--g200); border-radius: var(--radius); overflow: hidden; margin-bottom: 3rem;
}
.metric-cell { padding: 2rem 1.5rem; text-align: center; border-right: 1px solid var(--g200); }
.metric-cell:last-child { border-right: none; }
.metric-val { display: block; font-family: var(--display); font-size: 2rem; font-weight: 700; color: var(--accent); margin-bottom: .3rem; }
.metric-label { font-size: .72rem; color: var(--g400); }
.hero-placeholder {
  aspect-ratio: 16/9; background: var(--g100); border: 1px solid var(--g200);
  border-radius: var(--radius); display: flex; align-items: center;
  justify-content: center; overflow: hidden; position: relative; margin-bottom: 4rem;
}
.hero-placeholder-glow { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(37,99,235,.1), transparent); }
.hero-placeholder-letter { font-family: var(--display); font-size: 8rem; font-weight: 700; color: rgba(255,255,255,.04); position: relative; }
.detail-sec-h { font-size: 1.5rem; font-weight: 600; margin: 3rem 0 1rem; }
.detail-body { font-size: 1rem; color: var(--g600); line-height: 1.85; }
.approach-list { display: flex; flex-direction: column; gap: 1rem; }
.approach-item { display: flex; gap: 1rem; }
.approach-num { font-family: var(--display); font-size: .82rem; font-weight: 700; color: var(--accent); flex-shrink: 0; margin-top: .2rem; }
.approach-item p { font-size: .95rem; color: var(--g600); line-height: 1.8; }
.results-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.5rem; }
.result-card {
  border: 1px solid var(--g200); border-radius: var(--radius); padding: 1.75rem;
  transition: border-color .2s, background .2s;
}
.result-card:hover { border-color: rgba(37,99,235,.3); background: rgba(37,99,235,.04); }
.result-val { display: block; font-family: var(--display); font-size: 2.5rem; font-weight: 700; margin-bottom: .4rem; }
.result-label { font-size: .82rem; color: var(--g500); }
.detail-cta {
  margin-top: 4rem; border: 1px solid rgba(37,99,235,.25);
  background: rgba(37,99,235,.05); border-radius: 1.5rem;
  padding: 3rem; text-align: center; display: flex; flex-direction: column; align-items: center;
}
.detail-cta h3 { font-size: 1.75rem; margin-bottom: .75rem; }
.detail-cta p { font-size: .9rem; color: var(--g500); max-width: 400px; line-height: 1.75; margin-bottom: 1.75rem; }
.more-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.more-card {
  border: 1px solid var(--g200); border-radius: var(--radius); padding: 1.75rem;
  transition: border-color .25s, background .25s; display: block; cursor: pointer;
}
.more-card:hover { border-color: var(--g400); background: var(--g100); }
.more-top { display: flex; align-items: center; justify-content: space-between; color: var(--g400); margin-bottom: .75rem; }
.more-metric { font-family: var(--display); font-size: 1.5rem; font-weight: 700; color: var(--accent); }
.more-brand { font-family: var(--display); font-size: 1rem; font-weight: 600; margin-bottom: .25rem; }
.more-niche { font-size: .75rem; color: var(--g400); }

/* ═══════════════════════════════════════════════════════
   SERVICES PAGE
═══════════════════════════════════════════════════════ */
.offer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; margin-bottom: 2rem; }
.deliverables { display: flex; flex-direction: column; gap: .9rem; }
.deliverable-item { display: flex; align-items: flex-start; gap: .75rem; font-size: .9rem; color: var(--g600); }
.d-check {
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(37,99,235,.15); color: var(--accent);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: .1rem;
}
.d-check svg { width: 11px; height: 11px; }
.matrix-card {
  background: var(--g100); border: 1px solid var(--g200);
  border-radius: 1.5rem; padding: 2.5rem; height: 100%;
}
.matrix-desc { font-size: .9rem; color: var(--g500); line-height: 1.8; margin-bottom: 2rem; }
.matrix-divider { height: 1px; background: var(--g200); margin-bottom: 1.5rem; }
.matrix-sub-label { font-size: .65rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--g400); margin-bottom: 1rem; }
.matrix-cells { display: grid; grid-template-columns: repeat(3,1fr); gap: .75rem; }
.matrix-cell { border: 1px solid var(--g200); border-radius: 10px; padding: 1.25rem .5rem; text-align: center; }
.matrix-n { display: block; font-family: var(--display); font-size: 1.5rem; font-weight: 700; color: var(--accent); }
.matrix-u { font-size: .72rem; color: var(--g400); }
.matrix-note { font-size: .78rem; color: var(--g400); text-align: center; margin-top: 1rem; }
.audience-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; margin-bottom: 2rem; }
.audience-card { border: 1px solid var(--g200); border-radius: var(--radius); padding: 2rem; }
.audience-num {
  width: 32px; height: 32px; border-radius: 50%; background: var(--accent);
  color: var(--white); font-family: var(--display); font-weight: 700;
  font-size: .85rem; display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem;
}
.audience-title { font-family: var(--display); font-size: 1rem; font-weight: 600; margin-bottom: .75rem; line-height: 1.4; }
.audience-desc { font-size: .82rem; color: var(--g500); line-height: 1.75; }
.faq-list { display: flex; flex-direction: column; gap: .75rem; margin-bottom: 5rem; }
.faq-item { border: 1px solid var(--g200); border-radius: var(--radius); padding: 2rem; background: var(--g100); }
.faq-q { font-family: var(--display); font-size: 1rem; font-weight: 600; margin-bottom: .75rem; }
.faq-a { font-size: .88rem; color: var(--g500); line-height: 1.8; }

/* ═══════════════════════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════════════════════ */
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; margin-bottom: 2rem; align-items: start; }
.story p { font-size: .95rem; color: var(--g600); line-height: 1.9; margin-bottom: 1.25rem; }
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.stat-card { border: 1px solid var(--g200); border-radius: var(--radius); padding: 2rem; background: var(--g100); }
.stat-val { display: block; font-family: var(--display); font-size: 2.5rem; font-weight: 700; margin-bottom: .4rem; }
.stat-label { font-size: .8rem; color: var(--g400); }
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-bottom: 2rem; }
.value-card { border: 1px solid var(--g200); border-radius: var(--radius); padding: 2rem; transition: border-color .2s; }
.value-card:hover { border-color: var(--g400); }
.value-title { font-family: var(--display); font-size: 1.05rem; font-weight: 600; margin-bottom: .75rem; }
.value-desc { font-size: .85rem; color: var(--g500); line-height: 1.75; }
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; margin-bottom: 2rem; }
.team-card { border: 1px solid var(--g200); border-radius: var(--radius); overflow: hidden; }
.team-photo { aspect-ratio: 1; background: var(--g100); display: flex; align-items: center; justify-content: center; }
.team-photo span { font-family: var(--display); font-size: 5rem; font-weight: 700; color: rgba(255,255,255,.04); }
.team-body { padding: 1.5rem; }
.team-name { font-family: var(--display); font-size: 1rem; font-weight: 600; }
.team-role { font-size: .78rem; color: var(--accent); font-weight: 500; margin: .25rem 0 .75rem; }
.team-bio { font-size: .82rem; color: var(--g500); line-height: 1.75; }
.compare-box { background: var(--g100); border: 1px solid var(--g200); border-radius: 2rem; padding: clamp(2rem,5vw,4rem); margin: 5rem 0 3rem; }
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.compare-label { font-size: .65rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; color: var(--g400); margin-bottom: 1.25rem; }
.compare-label-good { font-size: .65rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; color: var(--accent); margin-bottom: 1.25rem; }
.compare-list { display: flex; flex-direction: column; gap: .85rem; }
.compare-bad { display: flex; align-items: center; gap: .75rem; font-size: .88rem; color: var(--g500); }
.compare-good { display: flex; align-items: center; gap: .75rem; font-size: .88rem; color: var(--g600); }
.c-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--g300); flex-shrink: 0; }
.c-check { width: 18px; height: 18px; border-radius: 50%; background: rgba(37,99,235,.15); color: var(--accent); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.c-check svg { width: 10px; height: 10px; }

/* ═══════════════════════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.contact-info-list { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2.5rem; }
.contact-info-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-info-icon { font-size: 1.1rem; margin-top: .1rem; }
.contact-info-label { font-size: .65rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; color: var(--g400); margin-bottom: .25rem; }
.contact-info-val { font-size: .88rem; color: var(--g600); }
.contact-info-val a { transition: color .2s; }
.contact-info-val a:hover { color: var(--white); }
.calendly-box { border: 1px solid var(--g200); border-radius: var(--radius); padding: 2rem; background: var(--g100); }
.calendly-label { font-size: .65rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; color: var(--g400); margin-bottom: .75rem; }
.calendly-h { font-family: var(--display); font-size: 1.4rem; font-weight: 700; margin-bottom: .5rem; }
.calendly-sub { font-size: .85rem; color: var(--g500); line-height: 1.75; margin-bottom: 1.5rem; }
.calendly-btn { width: 100%; justify-content: center; border-radius: 12px; }
.form { display: flex; flex-direction: column; gap: 1.25rem; }
.field { display: flex; flex-direction: column; gap: .5rem; }
.field label { font-size: .65rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; color: var(--g400); }
.field input, .field select, .field textarea {
  background: var(--g100); border: 1px solid var(--g200); border-radius: 12px;
  padding: .9rem 1.1rem; color: var(--white); font-size: .9rem; width: 100%;
  transition: border-color .2s; outline: none;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,.2); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--accent); }
.field .err { border-color: rgba(239,68,68,.5) !important; }
.field-error { font-size: .75rem; color: #f87171; margin-top: .2rem; display: none; }
.field-error.show { display: block; }
.select-wrap { position: relative; }
.select-wrap select { appearance: none; cursor: pointer; }
.select-wrap select option { background: #111; }
.select-wrap svg { position: absolute; right: 1rem; top: 50%; transform: translateY(-50%); width: 16px; height: 16px; color: var(--g400); pointer-events: none; }
.field textarea { resize: none; }
.form-submit { width: 100%; justify-content: center; border-radius: 12px; }
.form-privacy { font-size: .75rem; color: var(--g400); text-align: center; }
.form-success {
  display: none; flex-direction: column; align-items: flex-start;
  justify-content: center; padding: 4rem 0;
}
.form-success.show { display: flex; }
.success-icon {
  width: 64px; height: 64px; border-radius: 1rem;
  background: rgba(37,99,235,.12); color: var(--accent);
  display: flex; align-items: center; justify-content: center; margin-bottom: 2rem;
}
.success-icon svg { width: 30px; height: 30px; }
.success-h { font-family: var(--display); font-size: 2.5rem; font-weight: 700; margin-bottom: .75rem; }
.success-sub { font-size: 1rem; color: var(--g500); max-width: 340px; line-height: 1.75; margin-bottom: 2rem; }
.success-reset { font-size: .85rem; color: var(--g500); transition: color .2s; }
.success-reset:hover { color: var(--white); }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .services-grid, .cases-grid, .work-grid, .offer-grid,
  .audience-grid, .story-grid, .contact-grid { grid-template-columns: 1fr; }
  .service-card { border-right: none; border-bottom: 1px solid var(--g200); }
  .service-card:last-child { border-bottom: none; }
  .steps-grid { grid-template-columns: 1fr; gap: 2rem; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .compare-grid { grid-template-columns: 1fr; gap: 2rem; }
  .metrics-grid { grid-template-columns: 1fr 1fr; }
  .metric-cell:nth-child(2) { border-right: none; }
  .metric-cell:nth-child(1), .metric-cell:nth-child(2) { border-bottom: 1px solid var(--g200); }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .nav-mobile { display: flex; }
  .work-grid { grid-template-columns: 1fr 1fr; }
  .more-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .hero-h1 { font-size: 3rem; }
  .work-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .results-header { flex-direction: column; align-items: flex-start; }
  .footer-bottom { flex-direction: column; gap: .5rem; text-align: center; }
}
