:root {
  --bg: #f8fbff;
  --ink: #0f172a;
  --muted: #64748b;
  --green: #34d399;
  --pink: #f9a8d4;
  --blue: #60a5fa;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: linear-gradient(#f8fbff,#eef8f5);
  color: var(--ink);
  font-family: Nunito,Inter,system-ui,sans-serif;
}

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

.site-header {
  position: fixed;
  z-index: 40;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(1040px,calc(100% - 28px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: 0 20px 50px rgba(15,23,42,.1);
  border-radius: 28px;
  padding: 12px 14px;
}

.brand {
  font-weight: 1000;
  font-size: 21px;
}

.nav-links {
  display: flex;
  gap: 6px;
}

.nav-links a {
  padding: 11px 14px;
  border-radius: 18px;
  color: #475569;
}

.nav-links a.active,.nav-links a:hover {
  background: #0f172a;
  color: #fff;
}

.menu-toggle {
  display: none;
  border: 0;
  border-radius: 16px;
  background: #d1fae5;
  padding: 10px 13px;
  font-weight: 900;
}

.hero {
  min-height: 88vh;
  display: grid;
  grid-template-columns: 1fr .95fr;
  gap: 36px;
  align-items: center;
  padding: 120px 7vw 56px;
}

.hero-inner {
  background: #fff;
  border-radius: 46px;
  padding: 48px;
  box-shadow: 0 25px 80px rgba(15,23,42,.1);
}

.hero-art {
  min-height: 540px;
  border-radius: 55px;
  background: url('../images/hero.svg') center/cover no-repeat;
  box-shadow: inset 0 0 0 14px rgba(255,255,255,.55),0 25px 70px rgba(15,23,42,.12);
}

.eyebrow {
  color: #059669;
  background: #d1fae5;
  border-radius: 999px;
  padding: 9px 13px;
  font-weight: 900;
}

.hero h1 {
  font-size: clamp(38px,6vw,82px);
  line-height: .98;
  margin: 20px 0;
}

.hero p {
  font-size: 20px;
  line-height: 1.7;
  color: var(--muted);
}

.primary-btn {
  border: 0;
  background: #0f172a;
  color: white;
  border-radius: 18px;
  padding: 15px 22px;
  font-weight: 900;
  cursor: pointer;
}

.section {
  padding: 60px 7vw;
}

.bubble {
  background: #fff;
  border-radius: 42px;
  padding: 36px;
  box-shadow: 0 20px 55px rgba(15,23,42,.08);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px;
}

.card {
  border-radius: 34px;
  padding: 25px;
  background: #fff;
}

.card:nth-child(1) {
  box-shadow: inset 0 0 0 3px #bfdbfe;
}

.card:nth-child(2) {
  box-shadow: inset 0 0 0 3px #bbf7d0;
}

.card:nth-child(3) {
  box-shadow: inset 0 0 0 3px #fbcfe8;
}

.site-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  background: #fff;
  border-radius: 34px;
  padding: 26px;
  box-shadow: 0 20px 55px rgba(15,23,42,.08);
}

.site-form label {
  display: grid;
  gap: 7px;
  color: #64748b;
  font-weight: 800;
}

.site-form input,.site-form textarea {
  border: 2px solid #e2e8f0;
  border-radius: 20px;
  padding: 15px;
  background: #f8fafc;
}

.site-form label:nth-child(4) {
  grid-column: 1/-1;
}

.site-form textarea {
  min-height: 130px;
}

.site-form button {
  grid-column: 1/-1;
}

.recaptcha-note {
  color: #64748b;
}

.recaptcha-note a {
  color: #0f766e;
  text-decoration: underline;
}

.site-footer {
  margin: 30px 7vw;
  border-radius: 32px;
  background: #0f172a;
  color: #fff;
  padding: 26px 30px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.site-footer nav {
  display: flex;
  gap: 16px;
  color: white;
}

@media(max-width:800px) {
  .site-header {
    align-items: flex-start;
    border-radius: 22px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 22px;
    padding: 12px;
    box-shadow: 0 20px 45px rgba(15,23,42,.15);
    z-index: 70;
    flex-direction: column;
  }

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

  .hero {
    display: flex;
    flex-direction: column;
    padding: 110px 20px 38px;
  }

  .hero-inner {
    padding: 28px;
    border-radius: 32px;
  }

  .hero-art {
    min-height: 52vh;
    width: 100%;
    border-radius: 34px;
  }

  .section {
    padding: 48px 20px;
  }

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

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

  .site-form label:nth-child(4),.site-form button {
    grid-column: auto;
  }

  .site-footer {
    display: block;
    margin: 20px;
  }

  .site-footer nav {
    margin-top: 14px;
    flex-wrap: wrap;
  }
}
