:root {
  --ink: #17211c;
  --muted: #5f6d65;
  --cream: #f7f3e8;
  --paper: #fffdf7;
  --green: #2d6a4f;
  --green-dark: #1f4d3a;
  --lime: #d9f99d;
  --peach: #ffcfad;
  --lavender: #d9d1ff;
  --line: #d9ded8;
  --shadow: 0 18px 50px rgba(35, 56, 44, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}
a { color: inherit; }
h1, h2, h3 {
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.08;
  margin-top: 0;
}
h1 { font-size: clamp(3rem, 7vw, 6.4rem); letter-spacing: -.06em; margin-bottom: 1.5rem; }
h2 { font-size: clamp(2.1rem, 4vw, 4rem); letter-spacing: -.045em; }
h3 { font-size: 1.35rem; }
p { color: var(--muted); }

.site-header {
  width: min(1180px, calc(100% - 32px));
  margin: 18px auto 0;
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 14px;
  z-index: 10;
  background: rgba(255, 253, 247, .88);
  border: 1px solid rgba(217, 222, 216, .8);
  border-radius: 999px;
  backdrop-filter: blur(14px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  text-decoration: none;
}
.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--ink);
  color: white;
}
.nav { display: flex; align-items: center; gap: 24px; }
.nav a { text-decoration: none; font-weight: 600; font-size: .95rem; }
.menu-button { display: none; border: 0; background: transparent; font-size: 1.5rem; }

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  background: var(--green);
  color: white;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(45, 106, 79, .18);
}
.button:hover { background: var(--green-dark); transform: translateY(-1px); }
.button-small { min-height: 42px; padding: 0 18px; }
.button-secondary { background: transparent; color: var(--ink); border: 1px solid var(--ink); box-shadow: none; }
.button-secondary:hover { background: var(--ink); color: white; }
.button-full { width: 100%; }

.hero {
  width: min(1180px, calc(100% - 32px));
  min-height: 760px;
  margin: 32px auto 0;
  padding: clamp(42px, 7vw, 90px);
  border-radius: 38px;
  background:
    radial-gradient(circle at top right, rgba(217, 209, 255, .8), transparent 34%),
    radial-gradient(circle at bottom left, rgba(217, 249, 157, .75), transparent 38%),
    var(--cream);
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 52px;
  align-items: center;
  overflow: hidden;
}
.eyebrow {
  color: var(--green);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .78rem;
}
.hero-text { font-size: clamp(1.1rem, 2vw, 1.35rem); max-width: 660px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin: 30px 0 18px; }
.microcopy { font-size: .92rem; }

.hero-card {
  min-height: 510px;
  padding: 42px 24px;
  border: 1px solid rgba(23, 33, 28, .12);
  border-radius: 30px;
  background: rgba(255,255,255,.72);
  box-shadow: var(--shadow);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}
.orb { position: absolute; border-radius: 50%; filter: blur(2px); }
.orb-one { width: 150px; height: 150px; background: var(--peach); right: -60px; top: 30px; }
.orb-two { width: 110px; height: 110px; background: var(--lime); left: -40px; bottom: 30px; }
.chat {
  position: relative;
  z-index: 1;
  width: 88%;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: white;
  padding: 16px 18px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(23,33,28,.08);
}
.chat p { margin: 0; color: var(--ink); }
.chat-right { align-self: flex-end; background: var(--ink); }
.chat-right p { color: white; }

.trust-strip {
  width: min(1060px, calc(100% - 42px));
  margin: 24px auto 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-weight: 700;
  font-size: .92rem;
}

.section { width: min(1120px, calc(100% - 32px)); margin: 0 auto; padding: 110px 0; }
.section-heading { max-width: 760px; margin-bottom: 48px; }
.section-heading > p:last-child { font-size: 1.13rem; }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card {
  min-height: 280px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: white;
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card .icon {
  width: 48px; height: 48px; display: grid; place-items: center;
  border-radius: 15px; background: var(--lime); font-weight: 800; margin-bottom: 30px;
}
.card a { margin-top: auto; font-weight: 700; color: var(--green); text-decoration: none; }

.consulting {
  width: min(1180px, calc(100% - 32px));
  padding: 90px clamp(24px, 5vw, 70px);
  border-radius: 38px;
  background: var(--ink);
}
.consulting h2, .consulting h3 { color: white; }
.consulting .section-heading p { color: #bdc8c1; }
.consulting .eyebrow { color: var(--lime); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.price-card {
  padding: 30px;
  border-radius: 24px;
  background: #26332c;
  border: 1px solid #3c4a42;
  display: flex;
  flex-direction: column;
}
.price-card.featured { background: var(--cream); transform: translateY(-10px); }
.price-card.featured h3, .price-card.featured p, .price-card.featured li { color: var(--ink); }
.plan-label { color: var(--lime); font-weight: 800; }
.price { color: white; font-size: 2rem; font-weight: 800; }
.price span { font-size: .8rem; font-weight: 500; color: #bdc8c1; }
.price-card ul { padding-left: 20px; color: #d5ddd8; margin-bottom: 30px; }
.price-card li { margin: 8px 0; }
.price-card .button { margin-top: auto; }
.pricing-note { text-align: center; color: #9faf9f; margin: 28px 0 0; font-size: .9rem; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.split p { font-size: 1.15rem; }

.safety { padding-top: 10px; }
.safety-card {
  padding: clamp(30px, 6vw, 70px);
  border-radius: 32px;
  background: var(--lavender);
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 50px;
}
.safety-card ul { margin: 0; padding-left: 22px; }
.safety-card li { margin-bottom: 16px; }

.faq details {
  border-top: 1px solid var(--line);
  padding: 22px 0;
}
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; font-size: 1.15rem; font-weight: 800; }
.faq details p { max-width: 760px; }

.contact {
  width: min(1180px, calc(100% - 32px));
  padding: clamp(32px, 6vw, 74px);
  border-radius: 38px;
  background: var(--cream);
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
}
.contact form {
  background: white;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 24px;
}
label { display: block; font-weight: 700; margin-bottom: 16px; }
input, select, textarea {
  width: 100%;
  margin-top: 7px;
  padding: 13px 14px;
  border: 1px solid #cbd2cc;
  border-radius: 12px;
  background: white;
  font: inherit;
}
textarea { resize: vertical; }
.form-note { font-size: .85rem; text-align: center; margin-bottom: 0; }

footer {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 60px 0 40px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  font-size: .9rem;
}

@media (max-width: 900px) {
  .menu-button { display: block; }
  .nav {
    display: none;
    position: absolute;
    top: 66px;
    left: 0;
    right: 0;
    padding: 20px;
    border-radius: 22px;
    background: var(--paper);
    border: 1px solid var(--line);
    flex-direction: column;
  }
  .nav.open { display: flex; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-card { min-height: 430px; }
  .card-grid, .pricing-grid { grid-template-columns: 1fr 1fr; }
  .price-card.featured { transform: none; }
  .split, .safety-card, .contact { grid-template-columns: 1fr; gap: 30px; }
  footer { flex-direction: column; text-align: center; }
}

@media (max-width: 620px) {
  .hero { padding: 46px 22px; border-radius: 26px; }
  .hero-card { padding: 22px 14px; }
  .trust-strip { overflow-x: auto; justify-content: flex-start; white-space: nowrap; }
  .card-grid, .pricing-grid { grid-template-columns: 1fr; }
  .section { padding: 80px 0; }
  .consulting, .contact { border-radius: 26px; }
}
