:root {
  color-scheme: light;
  --ink: #111827;
  --muted: #5b6472;
  --paper: #f5f7fb;
  --panel: #ffffff;
  --line: #d9e0ea;
  --blue: #066cff;
  --blue-dark: #0044b8;
  --gold: #f6b735;
  --shadow: 0 18px 50px rgba(15, 23, 42, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(245, 247, 251, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 8px;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(10px, 2vw, 22px);
  font-size: 0.94rem;
}

nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 650;
}

.nav-cta {
  color: white;
  background: var(--blue);
  padding: 8px 14px;
  border-radius: 8px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: center;
  padding: clamp(48px, 7vw, 92px) clamp(18px, 4vw, 56px) clamp(34px, 5vw, 60px);
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue-dark);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1, h2, h3, p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(2.7rem, 7vw, 6.2rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.lede {
  max-width: 680px;
  color: #334155;
  font-size: clamp(1.08rem, 2vw, 1.32rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  background: var(--blue);
  color: white;
}

.button.primary:hover {
  background: var(--blue-dark);
}

.button.secondary {
  border: 1px solid var(--line);
  background: white;
  color: var(--ink);
}

.button:disabled {
  opacity: 0.72;
  cursor: wait;
}

.hero-logo {
  display: grid;
  place-items: center;
}

.hero-logo img {
  width: min(100%, 520px);
  filter: drop-shadow(var(--shadow));
}

.section {
  padding: clamp(50px, 7vw, 88px) clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
}

.steps, .pricing, .faq-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.steps article, .pricing article, details, .contact-form {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 32px rgba(15, 23, 42, 0.06);
}

.steps article, .pricing article {
  padding: 22px;
}

.steps span {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--ink);
  color: white;
  font-weight: 900;
}

.pricing {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pricing strong {
  display: block;
  margin-top: 18px;
  color: var(--blue-dark);
  font-size: 1.55rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(24px, 5vw, 70px);
}

.guarantee {
  margin: clamp(28px, 5vw, 54px) clamp(18px, 4vw, 56px);
  padding: clamp(30px, 5vw, 56px);
  border-radius: 8px;
  background: #111827;
  color: white;
  box-shadow: var(--shadow);
}

.guarantee h2 {
  max-width: 980px;
}

.guarantee p {
  color: var(--gold);
  font-size: 1.25rem;
  font-weight: 800;
}

.body-copy {
  max-width: 760px;
  color: #334155;
  font-size: 1.08rem;
}

.faq-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

details {
  padding: 18px 20px;
}

summary {
  cursor: pointer;
  font-weight: 850;
}

details p {
  color: var(--muted);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(240px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(24px, 5vw, 70px);
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: clamp(18px, 3vw, 28px);
}

label {
  display: grid;
  gap: 7px;
  font-weight: 800;
}

input, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--ink);
  background: white;
  font: inherit;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

input:focus, textarea:focus {
  outline: 3px solid color-mix(in srgb, var(--blue) 22%, transparent);
  border-color: var(--blue);
}

.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
}

.form-status {
  min-height: 1.5em;
  color: var(--blue-dark);
  font-weight: 750;
}

.field-error {
  color: #b42318;
  font-size: 0.9rem;
  font-weight: 700;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  padding: 26px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer a {
  font-weight: 750;
  text-decoration: none;
}

.legal-page {
  width: min(860px, calc(100% - 36px));
  margin: 0 auto;
  padding: 46px 0 70px;
}

.legal-page h1 {
  font-size: clamp(2.4rem, 6vw, 4.6rem);
}

.legal-page h2 {
  margin-top: 34px;
  font-size: 1.35rem;
}

.legal-page hr {
  margin: 48px 0 10px;
  border: 0;
  border-top: 1px solid var(--line);
}

.muted {
  color: var(--muted);
}

.back-link {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--blue-dark);
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 820px) {
  .site-header, nav {
    align-items: flex-start;
  }

  .site-header {
    flex-direction: column;
  }

  nav {
    width: 100%;
    flex-wrap: wrap;
  }

  .hero, .split, .contact-section, .steps, .pricing, .faq-list {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 34px;
  }

  .hero-logo {
    order: -1;
  }

  .hero-logo img {
    width: min(82vw, 340px);
  }
}
