/* ─── DESIGN TOKENS ─────────────────────────────────────────────── */
:root {
  --bg:        #0d0d0d;
  --surface:   #151515;
  --surface-2: #1a1a1a;
  --border:    #202020;
  --text:      #f2ede5;
  --muted:     #7a7772;
  --dim:       #3d3b39;
  --accent:    #e04a10;
  --accent-h:  #f05520;
  --radius:    2px;
}

/* ─── BASE ───────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::selection { background: var(--accent); color: #fff; }

/* ─── SCROLLBAR ──────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--dim); border-radius: 2px; }

/* ─── NAVIGATION ─────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.375rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(13,13,13,0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
}
.nav-logo {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800; font-size: 0.9375rem;
  letter-spacing: -0.02em;
  color: var(--text); text-decoration: none;
}
.nav-logo .accent { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 2.25rem; list-style: none; }
.nav-links a {
  font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); text-decoration: none;
  transition: color 0.2s ease;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0;
  height: 1px; background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1);
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.nav-cta {
  padding: 0.5rem 1.25rem;
  background: var(--accent); color: #fff;
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none; border-radius: var(--radius);
  transition: background 0.2s ease, transform 0.1s ease;
  border: none; cursor: pointer;
}
.nav-cta:hover { background: var(--accent-h); }
.nav-cta:active { transform: scale(0.98) translateY(1px); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.nav-toggle span { display: block; width: 22px; height: 1.5px; background: var(--text); transition: transform 0.3s ease, opacity 0.3s ease; }

.nav-mobile {
  display: none; position: fixed; inset: 0;
  background: var(--bg); z-index: 99;
  flex-direction: column; align-items: flex-start; justify-content: center;
  padding: 2rem; gap: 0;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(2rem, 8vw, 3.5rem);
  font-weight: 800; color: var(--text);
  text-decoration: none; letter-spacing: -0.02em;
  padding: 0.375rem 0;
  border-bottom: 1px solid var(--border);
  width: 100%;
  transition: color 0.2s ease, padding-left 0.3s ease;
}
.nav-mobile a:first-child { border-top: 1px solid var(--border); }
.nav-mobile a:hover { color: var(--accent); padding-left: 0.5rem; }

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav { padding: 1.125rem 1.25rem; }
}

/* ─── BUTTONS ────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background: var(--accent); color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem; font-weight: 600; letter-spacing: 0.04em;
  text-decoration: none; border-radius: var(--radius);
  transition: background 0.2s ease, transform 0.1s ease;
  border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--accent-h); }
.btn-primary:active { transform: scale(0.98) translateY(1px); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background: transparent; color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem; font-weight: 500; letter-spacing: 0.04em;
  text-decoration: none; border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.1s ease;
  cursor: pointer;
}
.btn-ghost:hover { border-color: var(--muted); }
.btn-ghost:active { transform: scale(0.98) translateY(1px); }

/* ─── HERO ───────────────────────────────────────────────────────── */
.hero {
  min-height: 100dvh;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 55fr 45fr;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  gap: 5rem;
}
@media (max-width: 1024px) { .hero { gap: 3rem; } }
@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; padding: 6.5rem 1.25rem 3rem; gap: 3rem; }
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.3125rem 0.875rem;
  border: 1px solid var(--border); border-radius: 999px;
  font-size: 0.6875rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted);
  margin-bottom: 2.25rem;
}
.hero-badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  animation: pulse 2.4s ease-in-out infinite;
}

.hero-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(2.75rem, 5vw, 4.75rem);
  font-weight: 700; line-height: 1.05; letter-spacing: -0.02em;
  color: var(--text); margin-bottom: 1.625rem;
}
.hero-title em { font-style: normal; color: var(--accent); }

.hero-sub {
  font-size: 1rem; line-height: 1.75; color: var(--muted);
  max-width: 46ch; margin-bottom: 2.75rem;
}

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

/* ─── HERO VISUAL ────────────────────────────────────────────────── */
.hero-visual {
  display: flex; align-items: center; justify-content: flex-end;
}
@media (max-width: 768px) { .hero-visual { justify-content: center; } }

.stats-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  width: 100%;
  max-width: 400px;
}
.stat-tile {
  background: var(--bg);
  padding: 1.75rem 1.5rem;
  display: flex; flex-direction: column; gap: 0.375rem;
  transition: background 0.3s ease;
}
.stat-tile:hover { background: var(--surface); }
.stat-tile-wide {
  grid-column: 1 / -1;
  background: var(--surface);
  padding: 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
}
.stat-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 2.375rem; font-weight: 800;
  letter-spacing: -0.025em; line-height: 1; color: var(--text);
}
.stat-num .a { color: var(--accent); }
.stat-lbl { font-size: 0.6875rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.partner-badge-inner {
  display: flex; align-items: center; gap: 0.75rem;
}
.partner-icon {
  width: 36px; height: 36px;
  border: 1px solid rgba(224,74,16,0.3);
  background: rgba(224,74,16,0.1);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.partner-text-label { font-size: 0.625rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.partner-text-name { font-family: 'Bricolage Grotesque', sans-serif; font-size: 1rem; font-weight: 700; color: var(--text); letter-spacing: -0.02em; margin-top: 0.125rem; }
.established { font-family: 'Bricolage Grotesque', sans-serif; font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-left: auto; }

/* ─── MARQUEE ────────────────────────────────────────────────────── */
.marquee-wrap {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden; padding: 1.125rem 0;
  background: var(--surface);
}
.marquee-track {
  display: flex; gap: 0;
  width: max-content;
  animation: marquee 32s linear infinite;
  will-change: transform;
}
.marquee-wrap:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.6875rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted);
  white-space: nowrap; padding: 0 3rem;
  display: flex; align-items: center; gap: 3rem;
}
.marquee-sep { color: var(--accent); font-size: 0.5rem; }

/* ─── SECTIONS ───────────────────────────────────────────────────── */
.section {
  padding: 7rem 2rem;
  max-width: 1400px; margin: 0 auto;
}
@media (max-width: 768px) { .section { padding: 4.5rem 1.25rem; } }

.section-label {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-size: 0.6875rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent);
  margin-bottom: 2rem;
}
.section-label::before {
  content: ''; display: block;
  width: 20px; height: 1px; background: var(--accent);
}
.section-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(2rem, 4vw, 3.375rem);
  font-weight: 800; letter-spacing: -0.02em; line-height: 1.05;
  color: var(--text);
}
.section-sub {
  font-size: 1rem; line-height: 1.75; color: var(--muted);
  max-width: 52ch; margin-top: 1rem;
}

/* ─── SERVICES ZIG-ZAG ───────────────────────────────────────────── */
.services-list { margin-top: 4rem; }
.service-row {
  display: grid; grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--border);
}
.service-row:last-child { border-bottom: 1px solid var(--border); }
@media (max-width: 768px) { .service-row { grid-template-columns: 1fr; } }

.service-content {
  padding: 2.75rem 2.5rem;
  display: flex; flex-direction: column; justify-content: space-between;
  transition: background 0.35s ease;
  border-right: 1px solid var(--border);
}
.service-content:hover { background: var(--surface); }
.service-row.odd .service-content { order: 2; border-right: none; border-left: 1px solid var(--border); }
.service-row.odd .service-index { order: 1; }
@media (max-width: 768px) {
  .service-row.odd .service-content { order: 1; border-left: none; }
  .service-row.odd .service-index { order: 2; }
  .service-content { border-right: none; }
}

.service-index {
  padding: 2.75rem 2.5rem;
  display: flex; flex-direction: column; justify-content: flex-end; align-items: flex-start;
}
.service-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(4rem, 7vw, 6.5rem);
  font-weight: 800; color: var(--border);
  letter-spacing: -0.015em; line-height: 1;
  transition: color 0.35s ease;
}
.service-row:hover .service-num { color: var(--dim); }
.service-tag {
  font-size: 0.6875rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent);
  margin-bottom: 0.625rem;
}
.service-name {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.625rem; font-weight: 700;
  letter-spacing: -0.015em; color: var(--text);
  margin-bottom: 0.875rem; line-height: 1.1;
}
.service-desc {
  font-size: 0.9375rem; line-height: 1.7; color: var(--muted); max-width: 42ch;
}
.service-link {
  margin-top: 1.75rem;
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.8125rem; font-weight: 500; color: var(--text);
  text-decoration: none; letter-spacing: 0.02em;
  transition: gap 0.25s cubic-bezier(0.16,1,0.3,1), color 0.2s ease;
}
.service-link:hover { gap: 0.875rem; color: var(--accent); }
.service-link svg { transition: transform 0.25s cubic-bezier(0.16,1,0.3,1); }
.service-link:hover svg { transform: translateX(3px); }

/* ─── STATS STRIP ────────────────────────────────────────────────── */
.stats-strip {
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: var(--surface);
}
@media (max-width: 768px) { .stats-strip { grid-template-columns: repeat(2, 1fr); } }
.stat-cell {
  padding: 2.75rem 2rem; border-right: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 0.375rem;
  transition: background 0.3s ease;
}
.stat-cell:last-child { border-right: none; }
.stat-cell:hover { background: var(--surface-2); }
.stat-big {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 2.75rem; font-weight: 800; letter-spacing: -0.025em; line-height: 1;
  color: var(--text);
}
.stat-big .a { color: var(--accent); }
.stat-info { font-size: 0.8125rem; color: var(--muted); line-height: 1.5; }

/* ─── APPROACH ───────────────────────────────────────────────────── */
.approach-grid {
  margin-top: 4rem;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border); border: 1px solid var(--border);
}
@media (max-width: 768px) { .approach-grid { grid-template-columns: 1fr; } }
.approach-cell {
  background: var(--bg); padding: 2.75rem 2.25rem;
  display: flex; flex-direction: column; gap: 1rem;
  transition: background 0.3s ease;
}
.approach-cell:hover { background: var(--surface); }
.approach-step { font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent); }
.approach-name { font-family: 'Bricolage Grotesque', sans-serif; font-size: 1.25rem; font-weight: 700; letter-spacing: -0.025em; color: var(--text); }
.approach-desc { font-size: 0.9rem; line-height: 1.7; color: var(--muted); }

/* ─── CTA SECTION ────────────────────────────────────────────────── */
.cta-band {
  padding: 7rem 2rem; background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-band-inner {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr auto;
  align-items: center; gap: 3rem;
}
@media (max-width: 768px) { .cta-band-inner { grid-template-columns: 1fr; } .cta-band { padding: 4.5rem 1.25rem; } }
.cta-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800; letter-spacing: -0.02em; line-height: 1.05; color: var(--text);
}
.cta-sub { font-size: 1rem; line-height: 1.7; color: var(--muted); max-width: 48ch; margin-top: 0.875rem; }

/* ─── FOOTER ─────────────────────────────────────────────────────── */
/* ─── ZONES SEO ──────────────────────────────────────────────────── */
.zones-seo-wrap {
  border-top: 1px solid var(--border);
  background: var(--surface);
}
.zones-seo-inner {
  max-width: 1400px; margin: 0 auto;
  padding: 5rem 2rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start;
}
.zones-seo-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 800;
  line-height: 1.15; color: var(--text); margin: 0.75rem 0 1rem;
}
.zones-seo-title em { font-style: normal; color: var(--accent); }
.zones-seo-sub { font-size: 0.9375rem; line-height: 1.75; color: var(--muted); margin: 0 0 1.5rem; max-width: 46ch; }
.zones-seo-cta { font-size: 0.875rem; font-weight: 600; color: var(--accent); text-decoration: none; }
.zones-seo-cta:hover { text-decoration: underline; }
.zones-seo-grid {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border: 1px solid var(--border);
}
.zones-seo-grid li {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.875rem 1.25rem;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  transition: background 0.2s;
}
.zones-seo-grid li:hover { background: rgba(224,74,16,0.04); }
.zones-seo-grid li:nth-child(2n) { border-right: none; }
.zones-seo-grid li:nth-last-child(-n+2) { border-bottom: none; }
.zones-seo-city { font-size: 0.875rem; font-weight: 500; color: var(--text); }
.zones-seo-cp { font-size: 0.75rem; color: var(--muted); font-variant-numeric: tabular-nums; }
@media (max-width: 900px) {
  .zones-seo-inner { grid-template-columns: 1fr; gap: 2.5rem; padding: 3.5rem 1.25rem; }
}

/* ─── FOOTER ─────────────────────────────────────────────────────── */
.footer-wrap { border-top: 1px solid var(--border); }
.footer { padding: 4.5rem 2rem 2rem; max-width: 1400px; margin: 0 auto; }
@media (max-width: 768px) { .footer { padding: 3rem 1.25rem 1.5rem; } }
.footer-top {
  display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 3rem;
  padding-bottom: 3rem; border-bottom: 1px solid var(--border);
}
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; } }
@media (max-width: 480px) { .footer-top { grid-template-columns: 1fr; gap: 2rem; } }
.footer-logo { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 0.9375rem; letter-spacing: -0.02em; color: var(--text); text-decoration: none; display: block; margin-bottom: 0.875rem; }
.footer-logo .a { color: var(--accent); }
.footer-brand p { font-size: 0.875rem; line-height: 1.7; color: var(--muted); max-width: 30ch; }
.footer-col-title { font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 1.125rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { font-size: 0.875rem; color: var(--muted); text-decoration: none; transition: color 0.2s ease; }
.footer-links a:hover { color: var(--text); }
.footer-bottom { padding-top: 1.75rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-copy { font-size: 0.75rem; color: var(--dim); }
.footer-social { display: flex; gap: 0.625rem; list-style: none; }
.footer-social a {
  width: 30px; height: 30px; display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border); border-radius: var(--radius); color: var(--muted);
  text-decoration: none; font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.02em;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.footer-social a:hover { border-color: var(--muted); color: var(--text); }

/* ─── INNER PAGE HERO ────────────────────────────────────────────── */
.page-hero {
  padding: 9rem 2rem 5rem;
  max-width: 1400px; margin: 0 auto;
  border-bottom: 1px solid var(--border);
}
@media (max-width: 768px) { .page-hero { padding: 7.5rem 1.25rem 3.5rem; } }
.page-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: end; }
@media (max-width: 768px) { .page-hero-grid { grid-template-columns: 1fr; gap: 2rem; } }

/* ─── CONNECT IMPACT ────────────────────────────────────────────── */
.connect-impact-wrap {
  position: relative; overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.connect-impact-glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 80% at 15% 50%, rgba(224,74,16,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 80% 20%, rgba(224,74,16,0.07) 0%, transparent 70%);
}
.connect-impact-inner {
  position: relative; z-index: 1;
  max-width: 1400px; margin: 0 auto;
  padding: 6rem 2rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center;
}
.connect-impact-eyebrow {
  font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 1.5rem;
}
.connect-impact-stat {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800; line-height: 1.05;
  color: var(--text); margin: 0;
}
.connect-impact-stat em {
  font-style: normal; color: var(--accent);
}
.connect-impact-right {
  display: flex; flex-direction: column; gap: 0;
}
.connect-impact-card {
  display: flex; align-items: flex-start; gap: 1.25rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
}
.connect-impact-card:first-child { border-top: 1px solid var(--border); }
.connect-impact-icon {
  color: var(--accent); font-size: 0.45rem; margin-top: 0.5rem; flex-shrink: 0;
}
.connect-impact-card-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 0.35rem;
}
.connect-impact-card-sub {
  font-size: 0.875rem; color: var(--muted); line-height: 1.6;
}
@media (max-width: 768px) {
  .connect-impact-inner { grid-template-columns: 1fr; gap: 3rem; padding: 4rem 1.25rem; }
  .connect-impact-stat { font-size: clamp(2.5rem, 12vw, 4rem); }
}

/* ─── CONNECT PAGE ───────────────────────────────────────────────── */
.offers-grid {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1px; background: var(--border); border: 1px solid var(--border);
}
@media (max-width: 768px) { .offers-grid { grid-template-columns: 1fr; grid-template-rows: auto; } }
.offer-cell {
  background: var(--bg); padding: 2.75rem 2.25rem;
  display: flex; flex-direction: column; gap: 1rem;
  transition: background 0.3s ease;
}
.offer-cell:hover { background: var(--surface); }
.offer-cell-tall { grid-row: 1 / 3; grid-column: 2 / 3; }
@media (max-width: 768px) { .offer-cell-tall { grid-row: auto; grid-column: auto; } }
.offer-icon {
  width: 38px; height: 38px; border: 1px solid var(--border);
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
  margin-bottom: 0.25rem;
}
.offer-name { font-family: 'Bricolage Grotesque', sans-serif; font-size: 1.25rem; font-weight: 700; letter-spacing: -0.025em; color: var(--text); line-height: 1.15; }
.offer-desc { font-size: 0.9rem; line-height: 1.7; color: var(--muted); }
.offer-list { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; margin-top: 0.25rem; }
.offer-list li { display: flex; align-items: flex-start; gap: 0.625rem; font-size: 0.875rem; color: var(--muted); line-height: 1.5; }
.offer-list li::before { content: '—'; color: var(--accent); flex-shrink: 0; }

/* ─── PROCESS ────────────────────────────────────────────────────── */
.process-track { margin-top: 4rem; display: flex; flex-direction: column; }
.process-step {
  display: grid; grid-template-columns: 80px 1fr;
  padding: 2rem 0; border-top: 1px solid var(--border); gap: 2rem;
  transition: background 0.3s ease;
}
.process-step:last-child { border-bottom: 1px solid var(--border); }
@media (max-width: 768px) { .process-step { grid-template-columns: 1fr; gap: 0.75rem; } }
.process-step-num { font-family: 'Bricolage Grotesque', sans-serif; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); padding-top: 0.25rem; }
.process-step-name { font-family: 'Bricolage Grotesque', sans-serif; font-size: 1.125rem; font-weight: 700; letter-spacing: -0.02em; color: var(--text); margin-bottom: 0.5rem; }
.process-step-desc { font-size: 0.9rem; line-height: 1.7; color: var(--muted); max-width: 56ch; }

/* ─── FORMATION PAGE ─────────────────────────────────────────────── */
.formation-grid {
  margin-top: 4rem;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: var(--border); border: 1px solid var(--border);
}
@media (max-width: 768px) { .formation-grid { grid-template-columns: 1fr; } }
.formation-cell {
  background: var(--bg); padding: 3rem 2.5rem;
  display: flex; flex-direction: column; gap: 1.5rem;
  transition: background 0.3s ease;
}
.formation-cell:hover { background: var(--surface); }
.formation-tag {
  display: inline-block; font-size: 0.6875rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent);
  background: rgba(224,74,16,0.12); padding: 0.25rem 0.625rem; border-radius: var(--radius);
}
.formation-title { font-family: 'Bricolage Grotesque', sans-serif; font-size: 1.875rem; font-weight: 700; letter-spacing: -0.02em; color: var(--text); line-height: 1.05; }
.formation-desc { font-size: 0.9375rem; line-height: 1.7; color: var(--muted); }
.formation-modules { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.formation-module { display: flex; align-items: flex-start; gap: 0.75rem; }
.formation-module-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--accent); margin-top: 0.55rem; flex-shrink: 0; }
.formation-module-text { font-size: 0.9rem; color: var(--muted); line-height: 1.5; }
.formation-module-title { font-weight: 600; color: var(--text); display: block; font-size: 0.9rem; }

/* ─── CONTACT PAGE ───────────────────────────────────────────────── */
.contact-layout {
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 7rem;
  padding: 5rem 0; align-items: start;
}
@media (max-width: 900px) { .contact-layout { grid-template-columns: 1fr; gap: 3rem; } }
.contact-detail {
  padding: 1.375rem 0;
  border-top: 1px solid var(--border);
  display: grid; grid-template-columns: 120px 1fr; gap: 1rem; align-items: start;
}
.contact-detail:last-child { border-bottom: 1px solid var(--border); }
.contact-detail-label { font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); padding-top: 0.125rem; }
.contact-detail-value { font-size: 0.9375rem; color: var(--text); text-decoration: none; transition: color 0.2s ease; line-height: 1.5; }
a.contact-detail-value:hover { color: var(--accent); }

/* ─── FORMS ──────────────────────────────────────────────────────── */
.form-stack { display: flex; flex-direction: column; gap: 1.375rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-label { font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.form-input, .form-textarea, .form-select {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 0.875rem 1rem;
  color: var(--text); font-family: 'DM Sans', sans-serif;
  font-size: 0.9375rem; outline: none; width: 100%;
  transition: border-color 0.2s ease;
  -webkit-appearance: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus { border-color: var(--accent); }
.form-input::placeholder, .form-textarea::placeholder { color: var(--dim); }
.form-textarea { resize: vertical; min-height: 130px; }
.form-select { cursor: pointer; }
.form-select option { background: #1a1a1a; color: var(--text); }
.form-helper { font-size: 0.75rem; color: var(--muted); margin-top: 0.25rem; }

/* ─── FULL WIDTH BG SECTION ──────────────────────────────────────── */
.bg-surface { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

/* ─── SCROLL REVEAL ──────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.75s cubic-bezier(0.16,1,0.3,1), transform 0.75s cubic-bezier(0.16,1,0.3,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }
.reveal-d5 { transition-delay: 0.5s; }

/* ─── KEYFRAMES ──────────────────────────────────────────────────── */
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes pulse { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:0.4; transform:scale(0.8); } }
@keyframes float { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-6px); } }
@keyframes fadeIn { from { opacity:0; transform:translateY(12px); } to { opacity:1; transform:translateY(0); } }

/* ─── INLINE HERO ANIM ───────────────────────────────────────────── */
.hero-left > * {
  animation: fadeIn 0.9s cubic-bezier(0.16,1,0.3,1) both;
}
.hero-left > *:nth-child(1) { animation-delay: 0.1s; }
.hero-left > *:nth-child(2) { animation-delay: 0.2s; }
.hero-left > *:nth-child(3) { animation-delay: 0.3s; }
.hero-left > *:nth-child(4) { animation-delay: 0.4s; }
.hero-visual { animation: fadeIn 1s cubic-bezier(0.16,1,0.3,1) 0.35s both; }

/* ─── SCROLL PROGRESS ────────────────────────────────────────────── */
.scroll-progress {
  position: fixed; top: 0; left: 0; z-index: 200;
  height: 2px; background: var(--accent);
  transform-origin: left; transform: scaleX(0);
  width: 100%; pointer-events: none;
}

/* ─── NAV LOGO IMAGE ─────────────────────────────────────────────── */
.nav-logo-img {
  height: 26px; width: auto; object-fit: contain;
  filter: invert(1) brightness(1.05);
  transition: opacity 0.2s ease; display: block;
}
.nav-logo:hover .nav-logo-img { opacity: 0.75; }

/* ─── CLIENT NAMES MARQUEE ───────────────────────────────────────── */
.marquee-name {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.8125rem; font-weight: 500; letter-spacing: 0.06em;
  text-transform: uppercase; white-space: nowrap;
  color: var(--dim); flex-shrink: 0;
  transition: color 0.25s;
}
.marquee-wrap:hover .marquee-name { color: var(--text); }
.marquee-sep-dot {
  width: 3px; height: 3px; border-radius: 50%;
  background: var(--accent); opacity: 0.5; flex-shrink: 0;
}
.marquee-track { align-items: center; gap: 2.25rem; }

/* ─── PORTFOLIO ──────────────────────────────────────────────────── */
.portfolio-wrap { border-top: 1px solid var(--border); }
.portfolio-header {
  padding: 3.5rem 2rem 2.5rem;
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: end;
}
@media (max-width: 768px) {
  .portfolio-header { grid-template-columns: 1fr; gap: 1.5rem; padding: 3.5rem 1.25rem 2rem; }
}

/* Uniform 3-column bento grid */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px; background: var(--border);
}
@media (max-width: 768px) { .portfolio-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .portfolio-grid { grid-template-columns: 1fr; } }

.portfolio-item {
  position: relative; overflow: hidden; background: var(--surface);
  cursor: pointer; aspect-ratio: 3/2;
}
/* No tall class used in uniform layout */
.portfolio-item.tall { grid-row: auto; aspect-ratio: 3/2; }

.portfolio-item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.portfolio-item:hover img { transform: scale(1.05); }

/* Overlay always present at bottom — title always readable */
.portfolio-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(to top, rgba(8,8,8,0.85) 0%, rgba(8,8,8,0.15) 50%, transparent 75%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.25rem 1.5rem;
}
.portfolio-item:hover .portfolio-overlay {
  background: linear-gradient(to top, rgba(8,8,8,0.95) 0%, rgba(8,8,8,0.55) 60%, rgba(8,8,8,0.15) 100%);
}

.portfolio-client {
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.13em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 0.25rem;
}
.portfolio-name {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.9375rem; font-weight: 700; letter-spacing: -0.01em;
  color: var(--text); line-height: 1.2;
}
.portfolio-arrow {
  margin-top: 0.4rem; display: inline-flex; align-items: center; gap: 0.35rem;
  font-size: 0.7rem; color: rgba(242,237,229,0.5);
  transform: translateY(6px); opacity: 0;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), opacity 0.35s ease;
}
.portfolio-item:hover .portfolio-arrow { transform: translateY(0); opacity: 1; color: var(--text); }

/* Bottom row merged into main grid — no separate element needed */
.portfolio-bottom {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 3px; background: var(--border); margin-top: 3px;
}
@media (max-width: 768px) { .portfolio-bottom { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .portfolio-bottom { grid-template-columns: 1fr; } }
.portfolio-bottom .portfolio-item { aspect-ratio: 3/2; }

.portfolio-pair {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3px; background: var(--border); margin-top: 3px;
}
.portfolio-pair .portfolio-item { aspect-ratio: 16/9; }
@media (max-width: 768px) { .portfolio-pair { grid-template-columns: 1fr; } }

/* ── Portfolio web section label ─────────────────────────────── */
.portfolio-web-label {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.5rem 2rem 0.75rem;
  max-width: 1400px; margin: 0 auto;
}
.pwl-tag {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent); white-space: nowrap;
}
.pwl-line {
  flex: 1; height: 1px; background: var(--border);
}

/* ── Portfolio web bento (featured websites) ─────────────────── */
.portfolio-web {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 3px; background: var(--border);
}
.portfolio-web > .portfolio-item { aspect-ratio: 16/10; }
.portfolio-web-right {
  display: grid; grid-template-rows: 1fr 1fr;
  gap: 3px; background: var(--border);
}
.portfolio-web-right .portfolio-item { aspect-ratio: unset; height: 100%; }
.portfolio-item--web::after {
  content: '↗';
  position: absolute; top: 0.9rem; right: 0.9rem;
  font-size: 0.75rem; line-height: 1.75rem;
  width: 1.75rem; height: 1.75rem;
  text-align: center;
  display: block;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  color: #fff;
  z-index: 2; pointer-events: none;
}
@media (max-width: 768px) {
  .portfolio-web { grid-template-columns: 1fr; }
  .portfolio-web-right { grid-template-rows: unset; grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .portfolio-web-right { grid-template-columns: 1fr; }
}

.portfolio-arrow a { color: inherit; text-decoration: none; display: inline-flex; align-items: center; gap: 0.35rem; }

.portfolio-cta-row {
  padding: 1.75rem 2rem;
  max-width: 1400px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap;
}
.portfolio-cta-label { font-size: 0.875rem; color: var(--muted); }
.portfolio-cta-label strong { color: var(--text); font-weight: 600; }

/* ─── PARTICLE STRIP ─────────────────────────────────────────────── */
.anim-strip {
  position: relative; height: 280px;
  border-top: 1px solid var(--border);
  overflow: hidden; background: var(--bg);
}
@media (max-width: 768px) { .anim-strip { height: 200px; } }
#anim-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}
.anim-strip-stats {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  gap: 3rem; z-index: 1;
  pointer-events: none;
}
.anim-stat { text-align: center; }
.anim-num {
  display: block;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 800; letter-spacing: -0.035em; color: var(--text);
  line-height: 1;
}
.anim-lbl {
  display: block; margin-top: 0.375rem;
  font-size: 0.6rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted);
}
.anim-divider {
  width: 1px; height: 40px; background: var(--border); flex-shrink: 0;
}
@media (max-width: 480px) { .anim-divider { display: none; } .anim-strip-stats { gap: 2rem; } }

/* ─── SPOTLIGHT BORDER ───────────────────────────────────────────── */
.spotlight { position: relative; }
.spotlight::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(
    600px circle at var(--mx, -9999px) var(--my, -9999px),
    rgba(224, 74, 16, 0.09), transparent 60%
  );
  opacity: 0; pointer-events: none; z-index: 2;
  transition: opacity 0.4s ease;
}
.spotlight:hover::after { opacity: 1; }

/* ─── CLIP-PATH REVEAL ───────────────────────────────────────────── */
.clip-up {
  clip-path: inset(0 0 110% 0);
  transition: clip-path 0.95s cubic-bezier(0.16, 1, 0.3, 1);
}
.clip-up.visible { clip-path: inset(0 0 0% 0); }
.clip-d1 { transition-delay: 0.12s; }
.clip-d2 { transition-delay: 0.26s; }
.clip-d3 { transition-delay: 0.4s; }

/* ─── PAGE INTRO ─────────────────────────────────────────────────── */
.page-intro {
  position: fixed; inset: 0; z-index: 500;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  animation: introExit 0.55s cubic-bezier(0.16, 1, 0.3, 1) 0.95s forwards;
  pointer-events: none;
}
.page-intro-logo {
  height: 42px; width: auto;
  filter: invert(1);
  animation: introScale 0.65s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}
@keyframes introExit { to { opacity: 0; visibility: hidden; } }
@keyframes introScale { from { opacity: 0; transform: scale(0.88); } to { opacity: 1; transform: scale(1); } }

/* ─── GOOGLE BADGE IMG ───────────────────────────────────────────── */
.google-badge-img {
  height: 56px; width: auto; object-fit: contain;
  filter: none; opacity: 1;
}

/* ─── FOOTER LOGO IMAGE ──────────────────────────────────────────── */
.footer-logo-img {
  height: 22px; width: auto; object-fit: contain;
  filter: invert(1) brightness(1.05);
  display: block; margin-bottom: 0.875rem;
  transition: opacity 0.2s ease;
}
.footer-logo:hover .footer-logo-img { opacity: 0.7; }
.footer-logo:has(.footer-logo-img) { margin-bottom: 0; }

/* ─── HERO BACKGROUND BLOBS (CSS-only, compositor thread) ───────── */
.hero-section { position: relative; overflow: hidden; }

#hero-canvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  z-index: 0; pointer-events: none;
}

.hero { position: relative; z-index: 1; }
.hero-left, .hero-visual { position: relative; z-index: 1; }
