/* =======================
   ROOT TOKENS
   ======================= */
:root {
  --bg:           #07172a;
  --bg-alt:       #091a2f;
  --card-bg:      rgba(255, 255, 255, 0.025);
  --border:       rgba(255, 255, 255, 0.08);
  --muted:        #9aa4b2;
  --accent:       #00e676;
  --accent-dim:   rgba(0, 230, 118, 0.1);
  --accent-border:rgba(0, 230, 118, 0.22);
  --white:        #ffffff;
  --header-h:     72px;
  --radius:       12px;
  --radius-lg:    20px;
  --container:    1200px;
  --gap:          clamp(16px, 2.5vw, 28px);
  --pad-x:        clamp(20px, 5vw, 48px);
  --section-py:   clamp(80px, 9vw, 130px);
}

/* =======================
   BASE RESET
   ======================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, system-ui, -apple-system, 'Helvetica Neue', Arial, sans-serif;
  background: var(--bg);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.65;
  animation: pageFade 400ms ease;
  text-align: center;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* Helvetica Neue for all headings */
h1, h2, h3, h4, h5 {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
}

/* =======================
   SKIP LINK
   ======================= */
.skip {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip:focus {
  left: 16px;
  top: 16px;
  width: auto;
  height: auto;
  padding: 8px 14px;
  background: var(--white);
  color: #000;
  z-index: 9999;
  border-radius: 8px;
}

/* =======================
   CONTAINER
   ======================= */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

/* =======================
   HEADER
   ======================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(7, 23, 42, 0.88);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

@supports (backdrop-filter: blur(12px)) {
  .header {
    background: rgba(7, 23, 42, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
}

.header.scrolled {
  background: rgba(7, 23, 42, 0.97);
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.35);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}

.brand {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.logo {
  height: 34px;
  width: auto;
  transition: opacity 0.2s ease;
}

.logo:hover {
  opacity: 0.8;
}

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

.nav-links a {
  color: var(--muted);
  padding: 8px 13px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.15s ease, background 0.15s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}

.nav-links a.active {
  color: var(--white);
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
}

.header-cta {
  flex-shrink: 0;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =======================
   SECTIONS
   ======================= */
.section {
  padding: var(--section-py) 0;
}

.section--alt {
  background: var(--bg-alt);
}

.section--accent {
  background: rgba(0, 230, 118, 0.04);
  border-top: 1px solid var(--accent-border);
  border-bottom: 1px solid var(--accent-border);
}

.section-label {
  display: block;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 14px;
  font-family: Inter, sans-serif;
}

.section-heading {
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  color: var(--white);
  margin-bottom: 18px;
}

.section-sub {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 64ch;
  line-height: 1.75;
  margin-left: auto;
  margin-right: auto;
}

.section-header {
  margin-bottom: clamp(40px, 6vw, 72px);
}

.section-header.center {
  text-align: center;
}

.section-header.center .section-sub {
  margin-left: auto;
  margin-right: auto;
}

/* =======================
   HERO
   ======================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
}

.hero--page {
  min-height: 62vh;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(7, 23, 42, 0.96) 0%,
    rgba(7, 23, 42, 0.85) 45%,
    rgba(7, 23, 42, 0.6) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: clamp(56px, 8vh, 96px) 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  line-height: 1.06;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--muted);
  max-width: 60ch;
  line-height: 1.75;
  margin-bottom: 14px;
  margin-left: auto;
  margin-right: auto;
}

.hero-note {
  font-size: 0.95rem;
  color: rgba(154, 164, 178, 0.8);
  margin-bottom: 32px;
  max-width: 58ch;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
  justify-content: center;
}

/* Proof pills */
.proof-strip {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.proof-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  color: var(--muted);
  font-size: 0.9rem;
  transition: border-color 0.15s ease;
}

.proof-pill strong {
  color: var(--white);
}

.proof-pill:hover {
  border-color: var(--accent-border);
}

.proof-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 230, 118, 0.15);
  flex-shrink: 0;
}

/* Hero logo */
.hero-logo {
  height: 200px;
  width: auto;
  margin: 0 auto 28px;
  filter: brightness(1.1);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-family: Inter, sans-serif;
  animation: bounce 2s ease-in-out infinite;
  opacity: 0.7;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(7px); }
}

/* =======================
   STATS BAR
   ======================= */
.stats-bar {
  background: rgba(0, 230, 118, 0.04);
  border-top: 1px solid rgba(0, 230, 118, 0.14);
  border-bottom: 1px solid rgba(0, 230, 118, 0.14);
  padding: 40px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
  text-align: center;
}

.stat-divider {
  border-left: 1px solid var(--border);
}

.stat-value {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.45;
  font-family: Inter, sans-serif;
}

/* =======================
   SERVICE CARDS
   ======================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap);
}

/* Centre a lone 5th card in the 2-col services grid */
.services-grid .service-card:nth-child(5):last-child {
  grid-column: 1 / -1;
  max-width: calc(50% - var(--gap) / 2);
  margin-left: auto;
  margin-right: auto;
}

.service-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-border);
  box-shadow: 0 24px 64px -20px rgba(0, 230, 118, 0.14);
}

.service-card-img-wrap {
  overflow: hidden;
  height: 220px;
}

.service-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  transition: opacity 0.35s ease, transform 0.45s ease;
}

.service-card:hover .service-card-img {
  opacity: 0.88;
  transform: scale(1.04);
}

.service-card-body {
  padding: clamp(20px, 3vw, 28px);
}

.service-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
  font-weight: 600;
  font-family: Inter, sans-serif;
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--white);
}

.service-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 16px;
  font-family: Inter, sans-serif;
  transition: gap 0.18s ease;
}

.service-card-link:hover {
  gap: 10px;
}

/* =======================
   CAPABILITIES GRID
   ======================= */
.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}

.capability-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 3vw, 32px);
  transition: border-color 0.22s ease, transform 0.22s ease;
}

.capability-card:hover {
  border-color: var(--accent-border);
  transform: translateY(-3px);
}

.capability-card h3 {
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 10px;
  margin-top: 10px;
}

.capability-card p:last-child {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

@media (max-width: 860px) {
  .capabilities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .capabilities-grid {
    grid-template-columns: 1fr;
  }
}

/* =======================
   STEPS / PROCESS
   ======================= */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}

.step-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3.5vw, 40px);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.step-card:hover {
  border-color: var(--accent-border);
  transform: translateY(-3px);
}

.step-num {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.22;
  line-height: 1;
  margin-bottom: 18px;
  letter-spacing: -0.04em;
}

.step-title {
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 12px;
}

.step-desc {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* =======================
   SPLIT SECTION
   ======================= */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 7vw, 90px);
  align-items: center;
}

.split.reverse > .split-img { order: 2; }
.split.reverse > .split-content { order: 1; }

.split-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.split-img img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  opacity: 0.82;
  transition: opacity 0.35s ease, transform 0.45s ease;
}

.split-img:hover img {
  opacity: 0.95;
  transform: scale(1.02);
}

.split-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 230, 118, 0.06), transparent 55%);
  pointer-events: none;
}

.split-content {
  max-width: 540px;
}

.split-content .section-heading {
  margin-bottom: 18px;
}

.split-content .section-sub {
  margin-bottom: 28px;
}

/* =======================
   OUTCOME / ABOUT CARDS
   ======================= */
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap);
}

.outcome-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(18px, 2.5vw, 26px);
  transition: border-color 0.2s ease;
}

.outcome-card:hover {
  border-color: var(--accent-border);
}

.outcome-label {
  font-size: 11px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
  font-weight: 600;
  font-family: Inter, sans-serif;
}

.outcome-value {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

.outcome-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

/* =======================
   PROOF / BEST FIT CARDS
   ======================= */
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}

.proof-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 3vw, 32px);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.proof-card:hover {
  border-color: var(--accent-border);
  transform: translateY(-3px);
}

.proof-label {
  font-size: 11px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
  font-weight: 600;
  font-family: Inter, sans-serif;
}

.proof-value {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  letter-spacing: -0.01em;
}

.proof-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
}

/* =======================
   CTA SECTION
   ======================= */
.cta-section {
  text-align: center;
  padding: var(--section-py) 0;
}

.cta-section .section-heading {
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  margin-bottom: 18px;
}

.cta-section .section-sub {
  margin: 0 auto 40px;
}

.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =======================
   CONTACT LAYOUT
   ======================= */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.contact-form {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 44px);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(14px, 2vw, 20px);
  margin-top: 28px;
}

.field {
  display: grid;
  gap: 8px;
}

.field-full {
  grid-column: 1 / -1;
}

label {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  font-family: Inter, sans-serif;
}

input, select, textarea {
  width: 100%;
  padding: 13px 14px;
  text-align: left;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(7, 16, 35, 0.6);
  color: var(--white);
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

input::placeholder, textarea::placeholder {
  color: rgba(154, 164, 178, 0.55);
}

input:focus, select:focus, textarea:focus {
  border-color: rgba(0, 230, 118, 0.4);
  box-shadow: 0 0 0 4px rgba(0, 230, 118, 0.08);
}

select option {
  background: #07172a;
}

.error {
  font-size: 0.85rem;
  color: rgba(255, 100, 100, 0.95);
  min-height: 1.1em;
  font-family: Inter, sans-serif;
}

.form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
  align-items: center;
}

.form-note {
  margin-top: 14px;
  font-size: 0.85rem;
  color: rgba(154, 164, 178, 0.65);
}

/* Contact sidebar */
.contact-sidebar {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  display: grid;
  gap: 16px;
}

.contact-info-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.contact-info-card h3 {
  font-size: 1rem;
  margin-bottom: 10px;
  color: var(--white);
}

.contact-info-card p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 14px;
}

.contact-info-card a {
  color: var(--muted);
  font-size: 0.92rem;
  transition: color 0.15s ease;
}

.contact-info-card a:hover {
  color: var(--accent);
}

/* =======================
   BUTTONS
   ======================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--accent);
  color: #042018;
  padding: 13px 24px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.2px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  font-family: Inter, sans-serif;
  transition: transform 0.15s ease, filter 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.07);
  box-shadow: 0 14px 36px -10px rgba(0, 230, 118, 0.48);
}

.btn:focus-visible {
  outline: 3px solid rgba(0, 230, 118, 0.4);
  outline-offset: 3px;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    100px circle at var(--x, 50%) var(--y, 50%),
    rgba(255, 255, 255, 0.22),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.2s ease;
}

.btn:hover::before {
  opacity: 1;
}

.btn.ghost {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent-border);
  box-shadow: none;
  filter: none;
}

.btn.ghost:hover {
  background: var(--accent-dim);
  box-shadow: none;
  filter: none;
}

.btn-sm {
  padding: 9px 17px;
  font-size: 0.88rem;
}

/* =======================
   ACCENT WORD
   ======================= */
.accent {
  color: var(--accent);
}

/* =======================
   FOOTER
   ======================= */
.footer {
  background: #040f1d;
  border-top: 1px solid var(--border);
  padding: 80px 0 36px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: clamp(24px, 4vw, 52px);
  margin-bottom: 60px;
}

.footer-logo {
  height: 30px;
  width: auto;
  opacity: 0.85;
  margin: 0 auto 16px;
}

.footer-brand p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.75;
  max-width: 34ch;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.footer-social a {
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 7px 13px;
  border-radius: 999px;
  font-size: 0.85rem;
  transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.footer-social a:hover {
  color: var(--white);
  border-color: var(--accent-border);
  background: var(--accent-dim);
}

.footer-col h4 {
  font-size: 0.8rem;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: rgba(154, 164, 178, 0.7);
  margin-bottom: 18px;
  font-family: Inter, sans-serif;
  font-weight: 600;
}

.footer-col ul {
  display: grid;
  gap: 11px;
}

.footer-col ul a {
  color: rgba(154, 164, 178, 0.8);
  font-size: 0.94rem;
  transition: color 0.15s ease;
}

.footer-col ul a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom small {
  color: rgba(154, 164, 178, 0.55);
  font-size: 0.82rem;
}

/* =======================
   NEWSLETTER SECTION
   ======================= */
.newsletter-section {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: clamp(60px, 7vw, 100px) 0;
}

.newsletter-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  text-align: left;
}

.newsletter-form {
  display: grid;
  gap: 12px;
}

.newsletter-fields {
  display: flex;
  gap: 10px;
}

.newsletter-fields input[type="email"] {
  flex: 1;
  min-width: 0;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--white);
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.15s ease;
  outline: none;
}

.newsletter-fields input[type="email"]:focus {
  border-color: var(--accent-border);
}

.newsletter-fields input[type="email"]::placeholder {
  color: var(--muted);
}

.newsletter-note {
  font-size: 0.82rem;
  color: var(--muted);
}

/* reCAPTCHA field */
.recaptcha-field {
  padding-top: 4px;
}

/* =======================
   UTILITY
   ======================= */
.muted         { color: var(--muted); }
.text-center   { text-align: center; }
.mt-sm         { margin-top: 14px; }
.mt-md         { margin-top: 24px; }
.mt-lg         { margin-top: 40px; }
.mt-xl         { margin-top: 60px; }

/* =======================
   REVEAL ON SCROLL
   ======================= */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 600ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.stagger-grid .reveal {
  transition-delay: var(--d, 0ms);
}

/* =======================
   PAGE FADE IN
   ======================= */
@keyframes pageFade {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: none; }
}

/* =======================
   ANCHOR OFFSET
   ======================= */
:target {
  scroll-margin-top: calc(var(--header-h) + 20px);
}

/* =======================
   RESPONSIVE — 1024px
   ======================= */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

/* =======================
   RESPONSIVE — 860px
   ======================= */
@media (max-width: 860px) {
  .header-cta {
    display: none;
  }

  .split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .split.reverse > .split-img { order: 0; }
  .split.reverse > .split-content { order: 0; }

  .split-img img {
    height: 340px;
  }

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

  .contact-sidebar {
    position: static;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 40px;
  }

  .stat-divider:nth-child(2) {
    border-left: none;
  }

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

/* =======================
   RESPONSIVE — 720px (mobile nav)
   ======================= */
@media (max-width: 720px) {
  .hamburger {
    display: flex;
  }

  .header-cta {
    display: none;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: rgba(7, 23, 42, 0.98);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 18px 20px;
    gap: 4px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 13px 14px;
    border-radius: 8px;
    font-size: 1rem;
    width: 100%;
  }

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

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

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

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .newsletter-wrap {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .newsletter-fields {
    flex-direction: column;
  }

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

  .hero h1 {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }
}

/* =======================
   RESPONSIVE — 480px
   ======================= */
@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px 20px;
  }

  .hero-cta {
    flex-direction: column;
  }

  .hero-cta .btn,
  .cta-btns .btn {
    width: 100%;
    justify-content: center;
  }

  .proof-pill {
    font-size: 0.85rem;
  }
}

/* =======================
   ACCESSIBILITY
   ======================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    transition: none !important;
    animation: none !important;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}
