/* ===== TOKENS ===== */
:root {
  color-scheme: dark;
  --bg:         #08090C;
  --bg-2:       #0E1117;
  --bg-3:       #141A23;
  --bg-card:    rgba(255,255,255,0.025);

  --text:       #EEF1F6;
  --text-dim:   #9AA5B4;
  --text-muted: #5C6A7C;

  --accent:     #D4A843;
  --accent-hi:  #E8C060;
  --accent-dim: rgba(212,168,67,0.12);
  --accent-bdr: rgba(212,168,67,0.28);

  --positive:   #2DD4AE;
  --border:     rgba(255,255,255,0.07);

  --font-d: 'Fraunces', Georgia, serif;
  --font-m: 'IBM Plex Mono', 'Courier New', monospace;
  --font-b: 'DM Sans', system-ui, sans-serif;

  --rad:    14px;
  --rad-lg: 22px;

  /* Light zone tokens */
  --light-bg:     #f5f4f0;
  --light-bg2:    #eeecea;
  --light-text:   #0a0a0a;
  --light-dim:    #666666;
  --light-muted:  #999999;
  --light-border: rgba(0,0,0,0.09);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 76px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-b);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img  { max-width: 100%; height: auto; display: block; }
a    { color: inherit; text-decoration: none; }
p    { margin: 0; }
h1, h2, h3 { margin: 0; line-height: 1.1; }
ul   { margin: 0; padding: 0; list-style: none; }

/* ===== UTILS ===== */
.container {
  width: min(1160px, calc(100% - 2.5rem));
  margin: 0 auto;
}

.eyebrow {
  display: block;
  font-family: var(--font-m);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--light-muted);
  margin: 0 0 1rem;
}

.accent-text { color: var(--light-text); }
.section-dark .accent-text,
.section-alt .accent-text  { color: var(--text); }
.mono        { font-family: var(--font-m); }

.section-header {
  max-width: 680px;
  margin-bottom: 3.5rem;
}

.section-header h2 {
  font-family: var(--font-d);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 1rem;
}

.section-sub {
  color: var(--text-dim);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-top: 0.5rem;
}

/* ===== SCROLL REVEAL ===== */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
[data-reveal].visible {
  opacity: 1;
  transform: none;
}
[data-reveal-group] > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
[data-reveal-group].visible > *:nth-child(1) { transition-delay: 0.05s; }
[data-reveal-group].visible > *:nth-child(2) { transition-delay: 0.18s; }
[data-reveal-group].visible > *:nth-child(3) { transition-delay: 0.31s; }
[data-reveal-group].visible > *:nth-child(4) { transition-delay: 0.44s; }
[data-reveal-group].visible > * { opacity: 1; transform: none; }

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  background: var(--light-bg);
  border-bottom: 1px solid var(--light-border);
  transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
}
.site-header.scrolled {
  background: rgba(245,244,240,0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-color: var(--light-border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: 68px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-m);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--light-text);
}
.brand-logo {
  width: 38px;
  height: auto;
  filter: brightness(0);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.site-nav a:not(.btn) {
  font-family: var(--font-m);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--light-muted);
  transition: color 0.2s;
}
.site-nav a:not(.btn):hover { color: var(--light-text); }
.nav-cta { margin-left: 0.25rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.28s ease;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  border-radius: 999px;
  padding: 0.72rem 1.55rem;
  font-family: var(--font-m);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0);    }

.btn-primary {
  background: var(--light-text);
  color: var(--light-bg);
}
.btn-primary:hover {
  background: #333;
  box-shadow: 0 4px 20px rgba(0,0,0,0.18);
}

/* Dark-zone button overrides — white replaces gold */
.section-dark .btn-primary,
.section-alt .btn-primary {
  background: #ffffff;
  color: var(--bg);
}
.section-dark .btn-primary:hover,
.section-alt .btn-primary:hover {
  background: #e8e8e8;
  box-shadow: 0 4px 20px rgba(255,255,255,0.15);
}

.section-dark .btn-outline,
.section-alt .btn-outline {
  background: transparent;
  color: var(--text-dim);
  border: 1px solid rgba(255,255,255,0.18);
}
.section-dark .btn-outline:hover,
.section-alt .btn-outline:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent-bdr);
}
.btn-outline:hover {
  background: var(--accent-dim);
  border-color: var(--accent);
}

.btn-ghost {
  background: transparent;
  color: var(--light-muted);
  padding-left: 0;
  padding-right: 0;
}
.btn-ghost:hover {
  color: var(--light-text);
  transform: none;
}

.btn-full { width: 100%; }

/* ===== HERO ===== */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--light-bg);
  padding-top: 0;
}

.hero-grid-bg {
  display: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 4rem;
  align-items: center;
  padding: 140px 0 4rem;
}

.hero h1 {
  font-family: var(--font-d);
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 800;
  color: var(--light-text);
  margin: 1rem 0 1.5rem;
  line-height: 1.06;
}

.hero-copy {
  color: var(--light-dim);
  font-size: 1.08rem;
  line-height: 1.72;
  max-width: 520px;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero-tagline {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-family: var(--font-m);
  font-size: 0.74rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

/* Hero Chart Card */
.chart-card {
  background: #ffffff;
  border: 1px solid var(--light-border);
  border-radius: var(--rad-lg);
  padding: 1.75rem;
  box-shadow: 0 2px 24px rgba(0,0,0,0.07);
}
@keyframes float {
  0%,100% { transform: translateY(0);   }
  50%      { transform: translateY(-8px); }
}

.chart-header-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.chart-title {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--light-text);
}
.chart-meta {
  font-size: 0.66rem;
  color: var(--light-muted);
}

.chart-bars { display: grid; gap: 0.8rem; }

.chart-row {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 0.75rem;
  align-items: center;
}
.chart-lbl {
  font-size: 0.66rem;
  color: var(--light-dim);
  text-align: right;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.chart-track {
  height: 24px;
  background: rgba(0,0,0,0.05);
  border-radius: 4px;
  overflow: hidden;
}
.chart-bar {
  height: 100%;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 7px;
  width: 0;
  animation: bar-grow 0.9s cubic-bezier(0.2,0.85,0.4,1) forwards;
  animation-delay: var(--bar-delay, 0.4s);
}
.bar-accent { background: var(--light-text); }
.bar-dim    { background: rgba(0,0,0,0.12); }
.chart-bar span {
  font-family: var(--font-m);
  font-size: 0.63rem;
  font-weight: 500;
  color: #ffffff;
  white-space: nowrap;
}
.bar-dim span   { color: var(--light-muted); }

@keyframes bar-grow {
  from { width: 0; }
  to   { width: var(--w); }
}

.chart-footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--light-border);
}
.chart-source { font-size: 0.63rem; color: var(--light-muted); }
.chart-badge {
  font-family: var(--font-m);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--light-dim);
  background: rgba(0,0,0,0.06);
  border: 1px solid var(--light-border);
  padding: 2px 9px;
  border-radius: 999px;
}

/* Hero Stats Bar */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--light-border);
  border-bottom: 1px solid var(--light-border);
}
.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 1.75rem 1.5rem;
  border-right: 1px solid var(--light-border);
}
.stat-item:last-child { border-right: none; }
.stat-num  { font-family: var(--font-d); font-size: 1.45rem; font-weight: 800; color: var(--light-text); line-height: 1; }
.stat-desc { font-size: 0.8rem; color: var(--light-muted); line-height: 1.3; }

/* ===== BRAND STATEMENT ===== */
.brand-statement {
  background: var(--light-bg);
  border-top: 1px solid var(--light-border);
  border-bottom: 1px solid var(--light-border);
  padding: 3.5rem 0;
}

.statement-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.statement-phrase {
  font-family: var(--font-m);
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 500;
  color: var(--light-text);
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.statement-accent {
  color: var(--light-text);
}
.statement-dot {
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  color: var(--light-muted);
  opacity: 0.5;
  line-height: 1;
}

@media (max-width: 640px) {
  .statement-inner {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
  .statement-dot { display: none; }
}

/* ===== CATEGORIES MARQUEE ===== */
.categories-strip {
  background: var(--light-bg2);
  border-top: 1px solid var(--light-border);
  border-bottom: 1px solid var(--light-border);
  padding: 1.25rem 0 0.75rem;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  margin-bottom: 0.75rem;
}

.marquee-inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  white-space: nowrap;
  animation: marquee-scroll 40s linear infinite;
  flex-shrink: 0;
  padding-right: 0.75rem;
}

.marquee-inner span {
  font-family: var(--font-m);
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  color: var(--light-dim);
  text-transform: uppercase;
}
.marquee-inner .dot {
  color: var(--light-muted);
  font-size: 0.6rem;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.categories-strip:hover .marquee-inner {
  animation-play-state: paused;
}

.marquee-label {
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--light-dim);
  margin: 0;
  padding-bottom: 0.25rem;
}

/* ===== SECTION SHELLS ===== */
.section-alt  { background: var(--bg-2); padding: 6rem 0; }
.section-dark { background: var(--bg);   padding: 6rem 0; }
.transition-band {
  height: 80px;
  background: linear-gradient(to bottom, var(--light-bg2), var(--bg));
  pointer-events: none;
}

/* ===== COMPARISON TABLE ===== */
.comparison-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.comparison-table {
  width: 100%;
  min-width: 580px;
  border: 1px solid var(--border);
  border-radius: var(--rad-lg);
  overflow: hidden;
  background: var(--bg-3);
}

.comparison-head {
  display: grid;
  grid-template-columns: 1fr 190px 190px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--border);
}
.comp-feature-head,
.comp-col {
  padding: 1.4rem 1.6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 600;
  border-right: 1px solid var(--border);
  line-height: 1.3;
}
.comp-col:last-child    { border-right: none; }
.comp-feature-head      { border-right: 1px solid var(--border); }
.comp-col--us {
  background: var(--accent-dim);
  color: var(--accent-hi);
  border-color: var(--accent-bdr);
}
.comp-col--them { color: var(--text-muted); }
.comp-logo  { width: 26px; filter: brightness(0) invert(1); }
.comp-icon  { font-size: 1.3rem; opacity: 0.35; }

.comparison-body .comp-row {
  display: grid;
  grid-template-columns: 1fr 190px 190px;
  border-bottom: 1px solid var(--border);
}
.comparison-body .comp-row:last-child { border-bottom: none; }

.comp-feature,
.comp-val {
  padding: 0.95rem 1.6rem;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  border-right: 1px solid var(--border);
}
.comp-val:last-child { border-right: none; }
.comp-feature        { color: var(--text-dim); }

.comp-yes {
  color: var(--positive);
  font-weight: 500;
  background: rgba(45,212,174,0.04);
  justify-content: center;
  text-align: center;
  font-size: 0.82rem;
}
.comp-no {
  color: var(--text-muted);
  justify-content: center;
  text-align: center;
  font-size: 0.82rem;
}

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.service-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--rad-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  transition: border-color 0.25s, transform 0.25s;
}
.service-card:hover {
  border-color: rgba(212,168,67,0.3);
  transform: translateY(-3px);
}
.service-card--featured {
  border-color: rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.03);
}
.service-badge, .pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  color: var(--bg);
  font-family: var(--font-m);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 999px;
  white-space: nowrap;
}

.service-num {
  font-size: 0.7rem;
  color: var(--text-muted);
  opacity: 0.7;
}
.service-card h3 {
  font-family: var(--font-d);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}
.service-tagline {
  font-size: 0.85rem;
  color: var(--text-dim);
  font-weight: 500;
}
.service-body {
  color: var(--text-dim);
  font-size: 0.9rem;
  line-height: 1.65;
  flex-grow: 1;
}

.feature-list { display: grid; gap: 0.45rem; }
.feature-list li {
  font-size: 0.83rem;
  color: var(--text-dim);
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}
.feature-list li::before {
  content: '→';
  color: var(--text-muted);
  font-family: var(--font-m);
  font-size: 0.72rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.service-for {
  font-family: var(--font-m);
  font-size: 0.7rem;
  color: var(--text-muted);
  padding-top: 0.5rem;
  border-top: 1px solid var(--border);
  margin-top: auto;
}

.section-quote {
  margin: 0;
  padding: 2rem 2.5rem;
  border-left: 3px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.03);
  border-radius: 0 var(--rad) var(--rad) 0;
  font-family: var(--font-d);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-dim);
  line-height: 1.65;
}

/* ===== PRICING ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
  margin-bottom: 2rem;
}

.pricing-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--rad-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  transition: border-color 0.25s;
}
.pricing-card--featured {
  border-color: rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.04);
  box-shadow: 0 0 60px rgba(255,255,255,0.04);
}

.pricing-tier {
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
}
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  flex-wrap: wrap;
}
.price-from   { font-family: var(--font-m); font-size: 0.76rem; color: var(--text-muted); }
.price-num    { font-family: var(--font-m); font-size: 2.4rem; font-weight: 500; color: var(--text); line-height: 1; }
.price-period { font-family: var(--font-m); font-size: 0.76rem; color: var(--text-muted); }
.price-custom { font-size: 1.5rem !important; line-height: 1.3; }

.pricing-desc {
  font-size: 0.87rem;
  color: var(--text-dim);
  line-height: 1.6;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--border);
}
.pricing-features { display: grid; gap: 0.55rem; flex-grow: 1; }
.pricing-features li {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
  font-size: 0.86rem;
  color: var(--text-dim);
}
.chk     { font-family: var(--font-m); font-size: 0.78rem; color: var(--positive); flex-shrink: 0; }
.chk-dim { font-family: var(--font-m); font-size: 0.78rem; color: var(--text-muted); flex-shrink: 0; }

.pricing-note {
  text-align: center;
  font-size: 0.76rem;
  color: var(--text-muted);
}

/* ===== CASES ===== */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.case-card {
  border: 1px solid var(--border);
  border-radius: var(--rad-lg);
  overflow: hidden;
  background: var(--bg-card);
  transition: border-color 0.25s, transform 0.25s;
}
.case-card:hover {
  border-color: rgba(212,168,67,0.3);
  transform: translateY(-3px);
}
.case-img {
  width: 100%;
  height: 175px;
  object-fit: cover;
  filter: grayscale(30%);
}
.case-body {
  padding: 1.4rem;
  display: grid;
  gap: 0.45rem;
}
.case-tag {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.case-body h3 {
  font-family: var(--font-d);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
}
.case-body p {
  font-size: 0.86rem;
  color: var(--text-dim);
  line-height: 1.65;
}
.cases-note {
  font-size: 0.88rem;
  color: var(--text-muted);
  text-align: center;
}
.cases-note a { color: var(--accent); }
.cases-note a:hover { text-decoration: underline; }

/* ===== CONTACT ===== */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 4rem;
  align-items: start;
}
.contact-info h2 {
  font-family: var(--font-d);
  font-size: clamp(1.9rem, 3.5vw, 2.7rem);
  font-weight: 800;
  margin: 0.5rem 0 1rem;
}
.contact-detail {
  display: grid;
  gap: 0.2rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}
.contact-label {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.contact-link {
  color: var(--text-dim);
  font-size: 0.94rem;
  word-break: break-all;
}
.contact-link:hover { text-decoration: underline; color: var(--text); }

.contact-form {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--rad-lg);
  padding: 2rem;
  display: grid;
  gap: 1.2rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-field {
  display: grid;
  gap: 0.45rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-dim);
  letter-spacing: 0.02em;
}
.form-field input,
.form-field textarea {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--rad);
  padding: 0.78rem 1rem;
  font-family: var(--font-b);
  font-size: 0.9rem;
  color: var(--text);
  width: 100%;
  transition: border-color 0.2s;
  resize: vertical;
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent-bdr);
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--text-muted);
}
.form-status {
  font-family: var(--font-m);
  font-size: 0.8rem;
  color: var(--positive);
  min-height: 1.2rem;
  text-align: center;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 2rem 0;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  text-align: center;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-m);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.footer-logo { width: 26px; filter: brightness(0) invert(1); }
.footer-copy { font-size: 0.8rem; color: var(--text-muted); }
.footer-meta { font-size: 0.7rem; color: var(--text-muted); opacity: 0.55; }

/* ===== FOCUS ===== */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--text-dim);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1060px) {
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 120px 0 3rem;
  }
  .hero-visual { display: none; }

  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-right: 1px solid var(--border); }
  .stat-item:nth-child(4) { border-right: none; }

  .services-grid,
  .pricing-grid,
  .cases-grid     { grid-template-columns: 1fr 1fr; }

  .contact-wrap   { grid-template-columns: 1fr; gap: 2.5rem; }

  .comparison-head,
  .comp-row       { grid-template-columns: 1fr 155px 155px; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .site-nav {
    display: none;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: rgba(8,9,12,0.97);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    gap: 0;
    padding: 1rem 0 1.5rem;
  }
  .site-nav.open { display: flex; }
  .site-nav a:not(.btn) { padding: 0.85rem 1.5rem; width: 100%; text-align: center; }
  .nav-cta { margin: 0.75rem 1.5rem 0; width: calc(100% - 3rem); text-align: center; }

  .services-grid,
  .pricing-grid,
  .cases-grid     { grid-template-columns: 1fr; }

  .form-row       { grid-template-columns: 1fr; }

  .hero-tagline   { gap: 1rem; }

  .section-quote  { padding: 1.5rem; }
}

@media (max-width: 480px) {
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .stat-item  { padding: 1.25rem 1rem; }
  .stat-num   { font-size: 1.2rem; }
}
