:root {
  --ink: #12131a;
  --muted: #616473;
  --cream: #fff8ee;
  --paper: #ffffff;
  --coral: #ff6b4a;
  --plum: #4a2f72;
  --gold: #ffd166;
  --line: rgba(18, 19, 26, 0.1);
  --shadow: 0 24px 80px rgba(74, 47, 114, 0.16);
}

* { 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(--cream);
  line-height: 1.6;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 248, 238, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.navbar {
  max-width: 1120px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-weight: 800;
  font-size: 1.45rem;
  letter-spacing: -0.04em;
  color: var(--plum);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-weight: 600;
}

.nav-cta {
  background: var(--ink);
  color: white;
  padding: 10px 18px;
  border-radius: 999px;
}

.nav-toggle { display: none; background: none; border: 0; font-size: 1.5rem; }

.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 88px 24px;
}

.compact { padding-block: 48px; }

.hero {
  min-height: 76vh;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 48px;
}

.eyebrow {
  color: var(--coral);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  margin-bottom: 14px;
}

h1, h2, h3 { line-height: 1.08; margin: 0; letter-spacing: -0.04em; }
h1 { font-size: clamp(3.1rem, 8vw, 6.6rem); max-width: 780px; }
h2 { font-size: clamp(2rem, 5vw, 3.8rem); max-width: 850px; }
h3 { font-size: 1.35rem; }

.hero-copy {
  max-width: 640px;
  font-size: 1.18rem;
  color: var(--muted);
  margin: 24px 0 32px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  border: 0;
  cursor: pointer;
}
.primary { background: var(--coral); color: white; box-shadow: 0 10px 28px rgba(255, 107, 74, 0.28); }
.secondary { background: white; color: var(--ink); border: 1px solid var(--line); }

.hero-card {
  background: linear-gradient(145deg, var(--plum), #1d1830);
  color: white;
  padding: 38px;
  border-radius: 34px;
  box-shadow: var(--shadow);
  transform: rotate(2deg);
}
.hero-card span { color: var(--gold); font-weight: 800; }
.hero-card strong { display: block; font-size: 6rem; line-height: 1; margin: 24px 0 10px; }
.hero-card p { color: rgba(255,255,255,0.78); margin: 0; }

.trusted { text-align: center; color: var(--muted); font-weight: 700; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-heading { margin-bottom: 38px; }

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

.card, .step, .contact-box {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 30px;
  box-shadow: 0 16px 50px rgba(18, 19, 26, 0.05);
}

.card p, .step p, .contact p { color: var(--muted); }
.alt {
  background: rgba(255, 255, 255, 0.52);
  border-radius: 40px;
}

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.step span { color: var(--coral); font-weight: 900; }

.results {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.stats { display: grid; gap: 18px; }
.stats div {
  background: white;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
}
.stats strong { display: block; font-size: 2.6rem; color: var(--plum); line-height: 1; }
.stats span { color: var(--muted); font-weight: 700; }

.testimonial { text-align: center; }
blockquote { font-size: clamp(1.4rem, 3vw, 2.2rem); line-height: 1.25; margin: 0 auto 18px; max-width: 900px; font-weight: 800; }
cite { color: var(--muted); font-style: normal; font-weight: 700; }

.contact-box { max-width: 760px; margin: 0 auto; }
form { display: grid; gap: 16px; margin-top: 26px; }
label { display: grid; gap: 7px; font-weight: 700; }
input, textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  font: inherit;
}
textarea { min-height: 130px; resize: vertical; }

.footer { text-align: center; padding: 28px 20px 44px; color: var(--muted); }

@media (max-width: 820px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 70px;
    left: 24px;
    right: 24px;
    display: none;
    flex-direction: column;
    background: white;
    padding: 22px;
    border-radius: 22px;
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .hero, .results, .grid.cards, .steps { grid-template-columns: 1fr; }
  .hero-card { transform: none; }
  .section { padding-block: 64px; }
}
