/* /website/styles.css */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Space+Mono:wght@400;700&display=swap');

:root {
  --cream: #FFFEF4;
  --charcoal: #202020;
  --blue: #1C52B4;
  --blue-light: #2D6FDB;
  --blue-dark: #1540A0;
  --off-black: #0E0E0E;
  --light-gray: #F2F2F2;
  --mid-gray: #9A9A9A;
  --border: rgba(255,255,255,0.08);
  --border-dark: rgba(0,0,0,0.1);

  --font-sans: 'Space Grotesk', system-ui, sans-serif;
  --font-mono: 'Space Mono', monospace;

  --max-w: 1280px;
  --section-pad: 100px 40px;
  --section-pad-mobile: 64px 24px;
  --radius: 4px;
  --radius-lg: 8px;

  --transition: 200ms ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; background: #040d1c; }

body {
  font-family: var(--font-sans);
  background: transparent;
  color: var(--off-black);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: var(--font-sans); border: none; background: none; }
ul { list-style: none; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
}

.btn-primary {
  background: var(--blue);
  color: #fff;
  border: 2px solid var(--blue);
}
.btn-primary:hover { background: var(--blue-light); border-color: var(--blue-light); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline:hover { border-color: var(--cream); color: var(--cream); transform: translateY(-1px); }

.btn-outline-dark {
  background: transparent;
  color: var(--charcoal);
  border: 2px solid var(--charcoal);
}
.btn-outline-dark:hover { background: var(--charcoal); color: var(--cream); }

.btn-cream {
  background: var(--cream);
  color: var(--charcoal);
  border: 2px solid var(--cream);
}
.btn-cream:hover { background: transparent; color: var(--cream); }

/* ─── NAVIGATION ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
  background: rgba(32, 32, 32, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-mono);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--cream);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-img {
  height: 28px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,254,244,0.7);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--cream); }

.nav-cta { margin-left: 16px; }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: all var(--transition);
}

/* Mobile nav */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--charcoal);
  padding: 100px 40px 40px;
  flex-direction: column;
  gap: 32px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 2rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: -0.02em;
}

/* ─── HERO ─── */
.hero {
  background: transparent;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 40px 80px;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse 60% 50% at 60% 40%, rgba(0,170,255,0.06) 0%, transparent 65%);
  pointer-events: none;
  z-index: 1;
}

#hero-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  will-change: transform;
}

.hero-inner {
  position: relative;
  z-index: 2;
}

.hero-scroll {
  position: relative;
  z-index: 2;
  will-change: opacity;
}

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

.hero-tag {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 28px;
}

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
}

.hero-headline {
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--cream);
}

.hero-headline em {
  font-style: normal;
  color: var(--blue-light);
}

.hero-right { padding-bottom: 8px; }

.hero-sub {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255,254,244,0.7);
  margin-bottom: 16px;
  max-width: 480px;
}

.hero-divider {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 32px;
  padding-left: 16px;
  border-left: 3px solid var(--blue);
  line-height: 1.5;
}

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

.hero-scroll {
  margin-top: 80px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,254,244,0.4);
}

.hero-scroll-line {
  width: 40px;
  height: 1px;
  background: rgba(255,254,244,0.3);
}

/* ─── SECTION COMMONS ─── */
.section { padding: var(--section-pad); }
.section-dark {
  background: var(--charcoal);
  color: var(--cream);
}
.section-blue {
  background: var(--blue);
  color: #fff;
}

.section-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 20px;
}
.section-dark .section-label { color: var(--blue-light); }
.section-blue .section-label { color: rgba(255,255,255,0.6); }

.section-title {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 20px;
}

.section-sub {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--mid-gray);
  max-width: 640px;
}
.section-dark .section-sub { color: rgba(255,254,244,0.6); }

/* ─── PROBLEM SECTION ─── */
.problem {
  background: var(--cream);
  padding: var(--section-pad);
  border-bottom: 1px solid var(--border-dark);
}

.problem-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.problem-left { position: sticky; top: 120px; }

.problem-statement {
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 32px;
}

.problem-right p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #3a3a3a;
  margin-bottom: 20px;
}

.problem-right p strong {
  color: var(--off-black);
}

/* ─── SERVICES ─── */
.services {
  background: rgba(8, 10, 20, 0.48);
  padding: var(--section-pad);
}

.services-header {
  max-width: var(--max-w);
  margin: 0 auto 60px;
}

.services-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.service-card {
  background: rgba(255,255,255,0.04);
  padding: 36px 28px;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover { background: rgba(255,255,255,0.07); }
.service-card:hover::before,
.service-card.active::before { transform: scaleX(1); }
.service-card.active { background: rgba(28,82,180,0.1); }

.service-number {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--blue-light);
  margin-bottom: 16px;
}

.service-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 12px;
  line-height: 1.3;
}

.service-teaser {
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(255,254,244,0.5);
}

.service-expand-icon {
  position: absolute;
  bottom: 24px;
  right: 24px;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: rgba(255,254,244,0.5);
  transition: all var(--transition);
}
.service-card.active .service-expand-icon {
  background: var(--blue);
  border-color: var(--blue);
  color: white;
  transform: rotate(45deg);
}

/* Service drawer */
.service-drawer {
  display: none;
  background: rgba(28,82,180,0.06);
  border: 1px solid rgba(28,82,180,0.2);
  border-top: none;
}
.service-drawer.open { display: block; }

.service-drawer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 48px 28px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
}

.service-drawer h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 16px;
}

.service-drawer .result {
  font-size: 1rem;
  font-weight: 600;
  color: var(--blue-light);
  padding: 16px;
  border-left: 3px solid var(--blue);
  background: rgba(28,82,180,0.1);
  margin-top: 20px;
  line-height: 1.5;
}

.service-drawer .caps-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,254,244,0.4);
  margin-bottom: 16px;
}

.caps-list {
  columns: 2;
  gap: 12px;
}

.caps-list li {
  font-size: 0.9rem;
  color: rgba(255,254,244,0.75);
  padding: 6px 0;
  padding-left: 16px;
  position: relative;
  break-inside: avoid;
}
.caps-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--blue-light);
  font-size: 0.75rem;
}

/* ─── PROCESS ─── */
.process {
  background: var(--cream);
  padding: var(--section-pad);
}

.process-header {
  max-width: var(--max-w);
  margin: 0 auto 60px;
}

.process-steps {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.process-step {
  padding: 40px 32px;
  background: #fff;
  border: 1px solid var(--border-dark);
  position: relative;
  cursor: default;
  transition: background 0.22s ease, border-color 0.22s ease;
}

.process-step:hover,
.process-step.touched {
  background: var(--blue);
  border-color: var(--blue);
}

.step-number {
  font-family: var(--font-mono);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(28,82,180,0.1);
  line-height: 1;
  margin-bottom: 16px;
  transition: color 0.22s ease;
}

.process-step:hover .step-number,
.process-step.touched .step-number {
  color: rgba(255,255,255,0.22);
}

.step-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--off-black);
  margin-bottom: 12px;
  transition: color 0.22s ease;
}

.process-step:hover .step-name,
.process-step.touched .step-name {
  color: #fff;
}

.step-desc {
  font-size: 0.9rem;
  line-height: 1.65;
  color: #5a5a5a;
  transition: color 0.22s ease;
}

.process-step:hover .step-desc,
.process-step.touched .step-desc {
  color: rgba(255,255,255,0.82);
}

/* ─── WHO WE WORK WITH ─── */
.who {
  background: rgba(8, 10, 20, 0.48);
  padding: var(--section-pad);
}

.who-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.who-header { margin-bottom: 48px; }

.who-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
}

.who-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  padding: 36px 24px;
  transition: all var(--transition);
}
.who-card:hover { background: rgba(255,255,255,0.08); }

.who-icon {
  width: 40px;
  height: 3px;
  background: var(--blue);
  margin-bottom: 24px;
}

.who-type {
  font-size: 1rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 10px;
}

.who-desc {
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(255,254,244,0.5);
}

/* ─── WHY ─── */
.why {
  background: var(--cream);
  padding: var(--section-pad);
  border-top: 1px solid var(--border-dark);
}

.why-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}

.why-left { position: sticky; top: 120px; }

.why-items { display: flex; flex-direction: column; gap: 2px; }

.why-item {
  padding: 32px 36px;
  background: #fff;
  border: 1px solid var(--border-dark);
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 20px;
  align-items: start;
  transition: border-color var(--transition);
}
.why-item:hover { border-color: var(--blue); }

.why-item-num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--blue);
  padding-top: 4px;
}

.why-item-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--off-black);
  margin-bottom: 8px;
}

.why-item-desc {
  font-size: 0.9rem;
  line-height: 1.65;
  color: #5a5a5a;
}

/* ─── ENGAGEMENT MODELS ─── */
.engagement {
  background: rgba(8, 10, 20, 0.48);
  padding: var(--section-pad);
}

.engagement-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.engagement-header { margin-bottom: 48px; }

.engagement-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.engagement-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  padding: 40px 28px;
  transition: all var(--transition);
}
.engagement-card:hover { background: rgba(255,255,255,0.07); }

.engagement-type {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 16px;
}

.engagement-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 12px;
  line-height: 1.3;
}

.engagement-desc {
  font-size: 0.85rem;
  line-height: 1.65;
  color: rgba(255,254,244,0.5);
  margin-bottom: 20px;
}

.engagement-tags { display: flex; flex-direction: column; gap: 6px; }

.engagement-tag {
  font-size: 0.8rem;
  color: rgba(255,254,244,0.4);
  padding-left: 12px;
  position: relative;
}
.engagement-tag::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--blue-light);
}

/* ─── PROBLEMS ─── */
.problems {
  background: var(--cream);
  padding: var(--section-pad);
  border-top: 1px solid var(--border-dark);
}

.problems-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.problems-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.problem-item {
  padding: 20px 0;
  border-bottom: 1px solid var(--border-dark);
  font-size: 1rem;
  line-height: 1.5;
  color: #3a3a3a;
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: start;
}
.problem-item:first-child { border-top: 1px solid var(--border-dark); }

.problem-check {
  color: var(--blue);
  font-size: 1rem;
  font-weight: 700;
  margin-top: 2px;
}

/* ─── ABOUT ─── */
.about {
  background: rgba(8, 10, 20, 0.48);
  padding: var(--section-pad);
}

.about-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255,254,244,0.7);
  margin-bottom: 20px;
}
.about-text p:last-child { margin-bottom: 0; }

.about-badge {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  padding: 40px;
  border-radius: var(--radius-lg);
}

.badge-number {
  font-size: 4rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 8px;
}

.badge-label {
  font-size: 0.85rem;
  color: rgba(255,254,244,0.5);
  margin-bottom: 32px;
}

.badge-divider {
  width: 40px;
  height: 2px;
  background: var(--blue);
  margin-bottom: 32px;
}

.badge-quote {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.5;
  font-style: italic;
}

/* ─── CTA SECTION ─── */
.cta-section {
  background: var(--blue);
  padding: var(--section-pad);
  text-align: center;
}

.cta-section .section-label { color: rgba(255,255,255,0.5); }

.cta-headline {
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #fff;
  max-width: 700px;
  margin: 0 auto 20px;
}

.cta-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── FOOTER ─── */
.footer {
  background: rgba(8, 10, 20, 0.55);
  padding: 60px 40px;
  color: rgba(255,254,244,0.4);
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
}

.footer-logo {
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--cream);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 0.85rem;
  line-height: 1.65;
  max-width: 280px;
}

.footer-contact {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-contact a {
  font-size: 0.85rem;
  color: rgba(255,254,244,0.6);
  transition: color var(--transition);
}
.footer-contact a:hover { color: var(--cream); }

.footer-col-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,254,244,0.3);
  margin-bottom: 20px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-col ul a {
  font-size: 0.85rem;
  color: rgba(255,254,244,0.55);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--cream); }

.footer-bottom {
  max-width: var(--max-w);
  margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
}

/* ─── CONTACT PAGE ─── */
.contact-hero {
  background: var(--charcoal);
  padding: 160px 40px 80px;
  min-height: 50vh;
  display: flex;
  align-items: flex-end;
}

.contact-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}

.contact-body {
  background: var(--cream);
  padding: var(--section-pad);
}

.contact-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}

.contact-info { position: sticky; top: 120px; }

.contact-info h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.contact-info-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 20px;
}

.contact-info-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid-gray);
}

.contact-info-value {
  font-size: 0.95rem;
  color: var(--off-black);
}
.contact-info-value a { color: var(--blue); }
.contact-info-value a:hover { text-decoration: underline; }

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

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

.form-group.full { grid-column: 1 / -1; }

.form-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #5a5a5a;
}

.form-label .req { color: var(--blue); margin-left: 2px; }

.form-input,
.form-select,
.form-textarea {
  padding: 14px 16px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--off-black);
  transition: border-color var(--transition);
  width: 100%;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(28,82,180,0.1);
}

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

.form-select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239A9A9A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }

.form-note {
  font-size: 0.85rem;
  color: var(--mid-gray);
  margin-top: 16px;
}

.form-submit {
  margin-top: 8px;
}

/* ─── SUCCESS STATE ─── */
.form-success {
  display: none;
  background: rgba(28,82,180,0.05);
  border: 1px solid rgba(28,82,180,0.2);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
}
.form-success.show { display: block; }
.form-success h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 12px; }
.form-success p { color: #5a5a5a; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .engagement-grid { grid-template-columns: repeat(2, 1fr); }
  .who-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 860px) {
  :root { --section-pad: 64px 24px; }

  .container { padding: 0 24px; }
  .nav-inner { padding: 0 24px; }
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }

  .hero { padding: 90px 24px 60px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { padding-bottom: 0; }

  .problem-inner { grid-template-columns: 1fr; gap: 32px; }
  .problem-left { position: static; }

  .services-grid { grid-template-columns: 1fr; }
  .service-drawer-inner { grid-template-columns: 1fr; gap: 32px; }
  .caps-list { columns: 1; }
  .service-drawer.inline {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(28,82,180,0.2);
  }

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

  .who-grid { grid-template-columns: repeat(2, 1fr); }

  .why-inner { grid-template-columns: 1fr; gap: 32px; }
  .why-left { position: static; }

  .engagement-grid { grid-template-columns: 1fr; }

  .problems-inner { grid-template-columns: 1fr; gap: 32px; }

  .about-inner { grid-template-columns: 1fr; gap: 32px; }

  .footer-inner { grid-template-columns: 1fr 1fr; }

  .contact-hero { padding: 140px 24px 60px; }
  .contact-body { padding: var(--section-pad-mobile); }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-info { position: static; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: 1; }
}

@media (max-width: 560px) {
  .who-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .cta-actions { flex-direction: column; align-items: center; }
}

/* ─── UTILITY ─── */
.text-blue { color: var(--blue); }
.text-cream { color: var(--cream); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
