/* ===========================================================
   Synthevo Consulting — enterprise AI landing page
   Palette:
     --lime     #C6F24E   signal accent
     --obsidian #111111   near-black
     --midnight #1A1A1A   dark surface
     --paper    #FAFAF8   light bg
     --cloud    #F7F6F3   light-2 bg
     --ash      #E5E5E3   hairlines / borders
     --slate    #8A8A86   muted text
   =========================================================== */

:root {
  --lime: #C6F24E;
  --lime-2: #d3f56d;
  --obsidian: #111111;
  --midnight: #1A1A1A;
  --paper: #FAFAF8;
  --cloud: #F7F6F3;
  --ash: #E5E5E3;
  --slate: #8A8A86;
  --ink: #0B0B0B;

  --font-sans: 'Inter', -apple-system, 'SF Pro Display', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-serif: 'Instrument Serif', 'Iowan Old Style', 'Palatino', Georgia, serif;

  --maxw: 1200px;
  --gutter: clamp(20px, 4vw, 40px);

  --radius: 14px;
  --radius-lg: 20px;

  --ease: cubic-bezier(.2, .8, .2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  max-width: 100%;
}
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--lime); color: var(--ink); }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--lime);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 600;
  z-index: 100;
}
.skip-link:focus { left: 12px; top: 12px; }

/* Focus */
:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ============ NAV ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(17, 17, 17, 0.72);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--paper);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.brand-word {
  font-size: 18px;
  color: var(--paper);
}
.footer .brand-word { color: var(--paper); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-size: 14.5px;
  color: rgba(250, 250, 248, 0.82);
  transition: color .2s var(--ease);
}
.nav-links a:hover { color: var(--paper); }
.nav-links .btn { margin-left: 8px; }

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 10px;
  width: 40px; height: 40px;
  padding: 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}
.nav-toggle span {
  display: block;
  width: 18px; height: 1.6px;
  background: var(--paper);
  border-radius: 2px;
  transition: transform .25s var(--ease), opacity .2s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 12px var(--gutter) 20px;
  background: var(--midnight);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.mobile-menu a {
  padding: 12px 0;
  color: var(--paper);
  border-bottom: 1px solid rgba(255,255,255,.06);
  font-size: 16px;
}
.mobile-menu .btn { margin-top: 12px; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font: inherit;
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  padding: 14px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s var(--ease), background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease);
  white-space: nowrap;
}
.btn-sm { padding: 10px 16px; font-size: 14px; }
.btn-lg { padding: 16px 24px; font-size: 16px; }
/* Primary = obsidian/black. Premium on light; gets a lime-tinted hairline on dark so it stays visible. */
.btn-primary {
  background: #111111;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08), 0 10px 24px -12px rgba(0, 0, 0, 0.55);
}
.btn-primary:hover {
  background: #1A1A1A;
  transform: translateY(-1px);
  border-color: rgba(198, 242, 78, 0.55);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08),
              0 14px 30px -12px rgba(0, 0, 0, 0.65),
              0 0 0 1px rgba(198, 242, 78, 0.35),
              0 0 24px -6px rgba(198, 242, 78, 0.25);
}
.btn-primary:active {
  transform: translateY(0);
  background: #0B0B0B;
}
.btn-primary svg { transition: transform .2s var(--ease); }
.btn-primary:hover svg { transform: translateX(3px); }

/* On DARK backgrounds, brighten the hairline so the black button reads clearly against obsidian. */
.section-dark .btn-primary,
.hero .btn-primary,
.mid-cta .btn-primary,
.final-cta .btn-primary,
.footer .btn-primary,
.nav .btn-primary,
.mobile-menu .btn-primary,
.about-card .btn-primary {
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.4),
              0 12px 30px -14px rgba(0, 0, 0, 0.9),
              inset 0 0 0 1px rgba(198, 242, 78, 0.06);
}
.section-dark .btn-primary:hover,
.hero .btn-primary:hover,
.mid-cta .btn-primary:hover,
.final-cta .btn-primary:hover,
.footer .btn-primary:hover,
.nav .btn-primary:hover,
.mobile-menu .btn-primary:hover {
  border-color: rgba(198, 242, 78, 0.6);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.4),
              0 16px 36px -14px rgba(0, 0, 0, 0.95),
              0 0 0 1px rgba(198, 242, 78, 0.5),
              0 0 30px -4px rgba(198, 242, 78, 0.3);
}
.btn-ghost {
  background: transparent;
  color: var(--paper);
  border-color: rgba(250,250,248,0.22);
}
.section-light .btn-ghost {
  color: var(--ink);
  border-color: var(--ash);
}
.btn-ghost:hover {
  border-color: var(--lime);
  color: var(--ink);
  background: var(--lime);
}

/* ============ HERO ============ */
.hero {
  position: relative;
  background: var(--obsidian);
  color: var(--paper);
  overflow: hidden;
  padding: clamp(80px, 12vw, 140px) 0 clamp(80px, 10vw, 120px);
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-grid {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}
.hero-rings {
  position: absolute;
  right: -8%;
  top: 50%;
  transform: translateY(-50%);
  width: min(720px, 60vw);
  opacity: 0.85;
  filter: drop-shadow(0 0 40px rgba(198, 242, 78, 0.12));
}
@media (max-width: 900px) {
  .hero-rings { display: none; }
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(198, 242, 78, 0.08);
  color: var(--lime);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .02em;
  border: 1px solid rgba(198, 242, 78, 0.25);
  margin-bottom: 24px;
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(198,242,78,.15);
}

.hero-title {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: clamp(34px, 6.4vw, 76px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin: 0 0 20px;
  overflow-wrap: break-word;
  word-wrap: break-word;
}
@media (max-width: 480px) {
  .hero-title { font-size: 34px; line-height: 1.08; }
}
.hero-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--lime);
  letter-spacing: -0.01em;
}
.hero-sub {
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.55;
  color: rgba(250, 250, 248, 0.72);
  max-width: 640px;
  margin: 0 0 32px;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 56px;
}
.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.08);
  max-width: 720px;
}
.hero-meta > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-meta .k {
  color: var(--paper);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .01em;
}
.hero-meta .v {
  color: rgba(250, 250, 248, 0.55);
  font-size: 13.5px;
}
@media (max-width: 640px) {
  .hero-meta { grid-template-columns: 1fr; gap: 14px; }
}

/* ============ CREDIBILITY STRIP ============ */
.strip {
  background: var(--midnight);
  color: rgba(250,250,248,.8);
  padding: 40px 0 48px;
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.strip-title {
  text-align: center;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(250,250,248,.5);
  margin: 0 0 24px;
}
@media (max-width: 480px) {
  .strip-title { font-size: 11.5px; letter-spacing: .08em; }
}
.logo-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}
.logo-slot {
  height: 56px;
  display: flex; align-items: center; justify-content: center;
  border: 1px dashed rgba(250,250,248,.14);
  border-radius: 10px;
  color: rgba(250,250,248,.35);
  font-size: 12px;
  letter-spacing: .06em;
}
@media (max-width: 900px) {
  .logo-row { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 480px) {
  .logo-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* ============ SECTIONS ============ */
.section {
  padding: clamp(80px, 10vw, 140px) 0;
}
.section-tight { padding: clamp(60px, 8vw, 100px) 0; }
.section-light {
  background: var(--paper);
  color: var(--ink);
}
.section-dark {
  background: var(--obsidian);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.section-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 60% at 15% 0%, rgba(198, 242, 78, 0.10), transparent 60%),
    radial-gradient(50% 50% at 100% 100%, rgba(198, 242, 78, 0.06), transparent 60%);
  pointer-events: none;
}
.section-dark > .container { position: relative; z-index: 1; }

.section-head {
  max-width: 780px;
  margin: 0 auto clamp(48px, 6vw, 72px);
  text-align: center;
}
.kicker {
  font-size: 12.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--slate);
  margin: 0 0 14px;
  font-weight: 600;
}
.section-dark .kicker { color: var(--lime); }
.kicker-light { color: var(--lime); }

.h2 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: clamp(32px, 4.4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
}
.h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--lime);
}
.section-light .h2 em { color: var(--ink); }

.lede {
  font-size: clamp(16px, 1.4vw, 18px);
  color: var(--slate);
  margin: 0;
}
.section-dark .lede { color: rgba(250,250,248,.65); }

/* ============ SERVICES ============ */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
@media (max-width: 960px) { .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 620px) { .service-grid { grid-template-columns: 1fr; } }

.service {
  background: #fff;
  border: 1px solid var(--ash);
  border-radius: var(--radius-lg);
  padding: 28px 26px 30px;
  transition: transform .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
  position: relative;
  overflow: hidden;
}
.service::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(140deg, rgba(198,242,78,0) 60%, rgba(198,242,78,0.06));
  opacity: 0;
  transition: opacity .3s var(--ease);
  pointer-events: none;
}
.service:hover {
  transform: translateY(-3px);
  border-color: #111;
  box-shadow: 0 20px 40px -24px rgba(0,0,0,.18);
}
.service:hover::after { opacity: 1; }
.service-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--ink);
  color: var(--lime);
  margin-bottom: 18px;
}
.service-icon svg { width: 22px; height: 22px; }
.service h3 {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
}
.service p {
  margin: 0;
  color: var(--slate);
  font-size: 15px;
}

/* ============ APPROACH ============ */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  counter-reset: step;
}
@media (max-width: 960px) { .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }

.step {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 26px 22px 28px;
  position: relative;
  transition: border-color .25s var(--ease), transform .25s var(--ease), background .25s var(--ease);
}
.step:hover {
  border-color: rgba(198,242,78,.35);
  background: rgba(198,242,78,.03);
  transform: translateY(-2px);
}
.step-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 40px;
  line-height: 1;
  color: var(--lime);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.step h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 8px;
  color: var(--paper);
}
.step p {
  margin: 0;
  color: rgba(250,250,248,.65);
  font-size: 14.5px;
}

/* ============ MID CTA ============ */
.mid-cta {
  background: var(--midnight);
  color: var(--paper);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.mid-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 40px 0;
  flex-wrap: wrap;
}
.mid-cta h3 {
  margin: 8px 0 0;
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 600;
  letter-spacing: -0.01em;
}

/* ============ WHY ============ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
@media (max-width: 960px) { .why-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 520px) { .why-grid { grid-template-columns: 1fr; } }

.why {
  background: #fff;
  border: 1px solid var(--ash);
  border-radius: var(--radius-lg);
  padding: 26px 22px 28px;
  transition: transform .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.why:hover {
  transform: translateY(-3px);
  border-color: var(--ink);
  box-shadow: 0 20px 40px -24px rgba(0,0,0,.14);
}
.why-icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--lime);
  color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.why-icon svg { width: 20px; height: 20px; }
.why h3 { margin: 0 0 6px; font-size: 17px; font-weight: 600; letter-spacing: -.01em; }
.why p { margin: 0; color: var(--slate); font-size: 14.5px; }

/* ============ RESULTS ============ */
.metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}
@media (max-width: 900px) { .metrics { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 480px) { .metrics { grid-template-columns: 1fr; } }
.metric {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: left;
}
.metric-value {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 40px;
  line-height: 1;
  color: var(--lime);
  margin-bottom: 8px;
  letter-spacing: -.02em;
}
.metric-label {
  color: rgba(250,250,248,.65);
  font-size: 14px;
}
.case {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 32px;
  max-width: 900px;
  margin: 0 auto;
}
.case-tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(198,242,78,.12);
  color: var(--lime);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.case h3 {
  margin: 0 0 12px;
  font-size: clamp(22px, 2.6vw, 28px);
  font-weight: 600;
  color: var(--paper);
  letter-spacing: -.01em;
}
.case p {
  margin: 0 0 18px;
  color: rgba(250,250,248,.7);
  font-size: 15.5px;
}
.case-meta {
  display: flex; flex-wrap: wrap; gap: 16px;
  color: var(--slate);
  font-size: 13.5px;
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 16px;
}
.case-meta span::before {
  content: "";
  display: inline-block;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--lime);
  margin-right: 8px;
  vertical-align: middle;
}

/* ============ ABOUT ============ */
.about-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 900px) {
  .about-inner { grid-template-columns: 1fr; gap: 32px; }
}
.about-copy .kicker { margin-bottom: 12px; }
.about-copy .h2 { margin-bottom: 16px; }
.about-copy p { color: var(--slate); font-size: 16px; margin: 0 0 14px; }
.about-copy .btn { margin-top: 12px; }

.about-card {
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid rgba(255,255,255,.06);
}
.about-card h3 {
  margin: 0 0 16px;
  font-size: 18px;
  font-weight: 600;
  color: var(--lime);
}
.check-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.check-list li {
  padding-left: 26px;
  position: relative;
  color: rgba(250,250,248,.85);
  font-size: 15px;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 14px; height: 14px;
  border-radius: 4px;
  background: var(--lime);
  background-image: linear-gradient(45deg, transparent 45%, var(--ink) 45%, var(--ink) 55%, transparent 55%),
                    linear-gradient(-45deg, transparent 45%, var(--ink) 45%, var(--ink) 55%, transparent 55%);
  background-size: 8px 8px, 8px 8px;
  background-repeat: no-repeat, no-repeat;
  background-position: center, center;
  opacity: 0;
}
.check-list li::after {
  content: "";
  position: absolute;
  left: 0; top: 6px;
  width: 16px; height: 16px;
  border-radius: 5px;
  background: var(--lime);
}
.check-list li {
  padding-left: 30px;
}
/* small checkmark drawn via SVG background so it's crisp */
.check-list li::after {
  background: var(--lime) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M5 12l5 5 9-11' fill='none' stroke='%23111' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/12px 12px no-repeat;
}

/* ============ FAQ ============ */
.faq {
  max-width: 820px;
  margin: 0 auto;
  border-top: 1px solid var(--ash);
}
.faq-item {
  border-bottom: 1px solid var(--ash);
  padding: 4px 0;
}
.faq-item > summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 4px;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -.005em;
  color: var(--ink);
  transition: color .2s var(--ease);
}
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary:hover { color: #000; }
.faq-icon {
  width: 22px; height: 22px;
  position: relative;
  flex-shrink: 0;
}
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  background: var(--ink);
  border-radius: 2px;
}
.faq-icon::before { top: 10px; left: 3px; width: 16px; height: 2px; }
.faq-icon::after {
  top: 3px; left: 10px; width: 2px; height: 16px;
  transition: transform .25s var(--ease);
}
.faq-item[open] .faq-icon::after { transform: rotate(90deg); }
.faq-body {
  padding: 0 4px 22px;
  color: var(--slate);
  font-size: 15.5px;
  line-height: 1.65;
  max-width: 720px;
  animation: fadein .28s var(--ease);
}
.faq-body p { margin: 0; }
@keyframes fadein {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============ FINAL CTA ============ */
.final-cta {
  position: relative;
  overflow: hidden;
  background: var(--obsidian);
  color: var(--paper);
  padding: clamp(80px, 10vw, 120px) 0;
  text-align: center;
}
.final-cta .hero-bg { position: absolute; inset: 0; }
.final-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}
.final-cta .h2 { margin-bottom: 12px; }
.final-cta .lede { margin-bottom: 32px; color: rgba(250,250,248,.7); }

/* ============ FOOTER ============ */
.footer {
  background: var(--midnight);
  color: rgba(250,250,248,.75);
  padding: 60px 0 24px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 780px) {
  .footer-inner { grid-template-columns: 1fr; }
}
.footer-brand .brand-word { color: var(--paper); }
.footer-tag {
  margin: 12px 0 0;
  font-size: 14px;
  color: rgba(250,250,248,.55);
}
.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
@media (max-width: 520px) {
  .footer-nav { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.footer-h {
  color: var(--paper);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin: 0 0 12px;
}
.footer-nav a {
  display: block;
  padding: 6px 0;
  font-size: 14.5px;
  color: rgba(250,250,248,.65);
  transition: color .2s var(--ease);
}
.footer-nav a:hover { color: var(--lime); }

.footer-legal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  margin-top: 32px;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: 13px;
  color: rgba(250,250,248,.5);
  flex-wrap: wrap;
  gap: 12px;
}

/* ============ Reveal animation ============ */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============ Mobile nav ============ */
@media (max-width: 820px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .mobile-menu[data-open="true"] { display: flex; }
}

/* ============ SR-only ============ */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* ============ CONTACT / LEAD FORM ============ */
.contact { background: var(--cloud); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
  align-items: start;
  max-width: 1120px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .contact-inner { grid-template-columns: 1fr; gap: 32px; }
}
.contact-copy .kicker { margin-bottom: 12px; }
.contact-copy .h2 { margin-bottom: 16px; }
.contact-copy .lede { margin-bottom: 24px; color: var(--slate); }

.contact-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 15px;
  color: var(--ink);
}
.contact-points li {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cp-icon {
  width: 26px; height: 26px;
  flex-shrink: 0;
  border-radius: 8px;
  background: var(--lime);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.cp-icon svg { width: 15px; height: 15px; }

.contact-form {
  background: #fff;
  border: 1px solid var(--ash);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 40px 60px -40px rgba(0, 0, 0, 0.12);
}
@media (max-width: 480px) {
  .contact-form { padding: 22px; border-radius: 16px; }
}

/* Honeypot — hidden but present in DOM */
.hp {
  position: absolute;
  left: -10000px;
  top: -10000px;
  width: 1px; height: 1px;
  overflow: hidden;
}

.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 560px) {
  .field-row { grid-template-columns: 1fr; gap: 0; }
}
.field label {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -.005em;
}
.field .req { color: #C6291A; margin-left: 2px; }

.field input,
.field select,
.field textarea {
  font: inherit;
  font-size: 15px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--ash);
  border-radius: 12px;
  padding: 12px 14px;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}
.field textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.5;
}
.field select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M6 9l6 6 6-6' fill='none' stroke='%238A8A86' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px 18px;
  padding-right: 40px;
  cursor: pointer;
}
.field input::placeholder,
.field textarea::placeholder {
  color: #B4B4AF;
}
.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: #C7C7C2;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--ink);
  box-shadow: 0 0 0 4px rgba(198, 242, 78, 0.28);
}
.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-color: #C6291A;
  box-shadow: 0 0 0 4px rgba(198, 41, 26, 0.12);
}
.err {
  margin: 0;
  font-size: 12.5px;
  color: #C6291A;
  font-weight: 500;
}

.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.form-fineprint {
  margin: 0;
  font-size: 12.5px;
  color: var(--slate);
  max-width: 300px;
}
@media (max-width: 520px) {
  .form-actions { flex-direction: column; align-items: stretch; }
  .form-actions .btn { width: 100%; justify-content: center; }
  .form-fineprint { max-width: none; }
}

/* Submit button spinner + loading state */
#lead-submit { position: relative; }
.btn-spinner {
  display: none;
  width: 16px; height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: var(--lime);
  border-radius: 50%;
  animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
#lead-submit[data-loading="true"] .btn-arrow { display: none; }
#lead-submit[data-loading="true"] .btn-spinner { display: inline-block; }
#lead-submit[disabled] { opacity: .85; cursor: progress; transform: none; }

/* Success / error banners */
.form-status { margin-top: 18px; }
.form-success,
.form-error {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 14.5px;
}
.form-success {
  background: rgba(198, 242, 78, 0.16);
  border: 1px solid rgba(154, 200, 40, 0.6);
  color: #24361A;
}
.form-success svg { color: #4E7A0F; flex-shrink: 0; margin-top: 1px; }
.form-error {
  background: rgba(198, 41, 26, 0.06);
  border: 1px solid rgba(198, 41, 26, 0.35);
  color: #6B1A12;
}
.form-error svg { color: #C6291A; flex-shrink: 0; margin-top: 1px; }
.form-success strong,
.form-error strong {
  display: block;
  font-weight: 600;
  letter-spacing: -.005em;
  margin-bottom: 2px;
}
.form-error a { color: #6B1A12; text-decoration: underline; }
.form-success[hidden],
.form-error[hidden] { display: none; }
