:root {
  --bg: #f7f5f0;
  --ink: #111827;
  --muted: #5f6877;
  --line: rgba(17, 24, 39, 0.12);
  --panel: #ffffff;
  --dark: #0f172a;
  --dark-soft: #1e293b;
  --blue: #1d4ed8;
  --blue-dark: #123a9c;
  --cream: #f7f5f0;
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 6vw;
  background: rgba(247, 245, 240, 0.86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--dark);
  color: white;
  font-size: 0.9rem;
}
.nav { display: flex; gap: 24px; align-items: center; font-size: 0.92rem; color: var(--muted); }
.nav a:hover { color: var(--ink); }
.nav-cta { color: var(--ink) !important; font-weight: 700; }

.hero {
  position: relative;
  overflow: hidden;
  min-height: 84vh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 90px 6vw 70px;
}
.hero-split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.85fr);
  gap: 48px;
  align-items: center;
}
.hero-content {
  position: relative;
  z-index: 2;
}
.hero-visual {
  position: relative;
  z-index: 1;
  border-radius: 36px;
  overflow: hidden;
  border: 1px solid rgba(17, 24, 39, 0.12);
  box-shadow: 0 34px 90px rgba(15, 23, 42, 0.18);
  background: white;
}
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(15,23,42,0.08));
  pointer-events: none;
}
.hero-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: 58% center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 24%, rgba(29,78,216,0.16), transparent 34%),
    radial-gradient(circle at 18% 10%, rgba(15,23,42,0.08), transparent 32%);
  pointer-events: none;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 800;
}
h1, h2, h3 { line-height: 1.02; letter-spacing: -0.055em; margin: 0; }
h1 {
  max-width: 850px;
  font-size: clamp(3.1rem, 6.7vw, 6.7rem);
}
h2 { font-size: clamp(2rem, 4.4vw, 4.6rem); }
h3 { font-size: 1.35rem; letter-spacing: -0.035em; }
.hero-copy {
  position: relative;
  max-width: 720px;
  margin: 28px 0 0;
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  color: var(--muted);
}
.hero-actions { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 13px 20px;
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.95rem;
}
.button.primary { background: var(--dark); color: white; box-shadow: 0 14px 40px rgba(15,23,42,0.22); }
.button.primary:hover { background: var(--blue); }
.button.secondary { border-color: var(--line); background: rgba(255,255,255,0.55); }
.full { width: 100%; }
.trust-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 48px;
}
.trust-row span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.5);
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.section { padding: 96px 6vw; }
.intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 620px);
  gap: 50px;
  align-items: start;
  border-top: 1px solid var(--line);
}
.intro p:last-child, .split p, .dark-band p, .contact-copy p { color: var(--muted); font-size: 1.08rem; }
.section-heading { max-width: 900px; margin-bottom: 34px; }
.cards { display: grid; gap: 18px; }
.cards.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card, .list-panel, .contact-form, .boundary-grid > div {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 10px 40px rgba(15, 23, 42, 0.04);
}
.card p, .boundary-grid p { color: var(--muted); margin-bottom: 0; }
.step {
  display: inline-block;
  color: var(--blue);
  font-weight: 900;
  margin-bottom: 30px;
  font-size: 0.86rem;
}
.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.8fr);
  gap: 44px;
  align-items: center;
}
.list-panel ul { margin: 0; padding-left: 20px; }
.list-panel li { margin: 12px 0; color: var(--dark-soft); font-weight: 650; }
.dark-band {
  background: var(--dark);
  color: white;
  margin: 30px 6vw;
  border-radius: 36px;
  box-shadow: var(--shadow);
}
.dark-band .eyebrow { color: #93c5fd; }
.dark-band p { max-width: 850px; color: rgba(255,255,255,0.72); }
.boundary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(330px, 0.85fr);
  gap: 54px;
  align-items: start;
}
.small-note { font-size: 0.92rem !important; }
.contact-form { display: grid; gap: 18px; }
label { display: grid; gap: 7px; font-weight: 800; font-size: 0.9rem; }
input, textarea, select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 13px 14px;
  font: inherit;
  color: var(--ink);
  background: #fbfaf7;
  outline: none;
}
input:focus, textarea:focus, select:focus { border-color: rgba(29,78,216,0.5); box-shadow: 0 0 0 4px rgba(29,78,216,0.08); }
.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 32px 6vw;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}
.footer p { margin: 0; }

@media (max-width: 980px) {
  .nav { display: none; }
  .cards.four, .boundary-grid, .intro, .split, .contact-section, .hero-split { grid-template-columns: 1fr; }
  h1 { font-size: clamp(3.2rem, 13vw, 6rem); }
  .hero-visual { margin-top: 12px; border-radius: 28px; }
  .hero-visual img { min-height: 360px; object-position: 62% center; }
  .section { padding: 72px 6vw; }
  .dark-band { margin: 20px 4vw; }
  .footer { flex-direction: column; }
}


/* Netlify Forms honeypot field: hidden from humans, visible to simple bots */
.hidden-field {
  display: none !important;
}

.success-page {
  min-height: calc(100vh - 96px);
  display: grid;
  place-items: center;
  padding: 90px 6vw;
  background:
    radial-gradient(circle at 78% 24%, rgba(29,78,216,0.14), transparent 34%),
    radial-gradient(circle at 18% 10%, rgba(15,23,42,0.08), transparent 32%);
}
.success-card {
  max-width: 930px;
  width: 100%;
  background: rgba(255,255,255,0.72);
  border: 1px solid var(--line);
  border-radius: 38px;
  padding: clamp(34px, 6vw, 72px);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}
.success-card h1 {
  font-size: clamp(3rem, 7vw, 6rem);
}
.success-panel {
  margin-top: 34px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(247,245,240,0.8);
}
.success-panel h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}
.success-panel p {
  color: var(--muted);
}
