:root {
  --ink: #23304f;
  --muted: #5d6780;
  --paper: #f7f8fb;
  --surface: #ffffff;
  --line: #dbe3ef;
  --teal: #0d8f87;
  --teal-dark: #0a7169;
  --orange: #ff6b17;
  --orange-dark: #ef5a0c;
  --rose: #ff3647;
  --navy: #24314f;
  --graphite: #22324c;
  --shadow: 0 24px 70px rgba(35, 48, 79, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(13, 143, 135, 0.08), transparent 28%),
    radial-gradient(circle at top right, rgba(255, 107, 23, 0.08), transparent 24%),
    var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.55;
}

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

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(20px, 4vw, 56px);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(219, 227, 239, 0.9);
  backdrop-filter: blur(18px);
}

.brand,
.nav,
.hero-actions,
.footer-inner {
  display: flex;
  align-items: center;
}

.brand {
  gap: 14px;
  max-width: 640px;
}

.brand-logo {
  width: auto;
  height: 34px;
  flex: 0 0 auto;
}

.brand-tagline {
  max-width: 240px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
}

.nav {
  gap: clamp(14px, 2vw, 28px);
  color: rgba(35, 48, 79, 0.8);
  font-size: 14px;
}

.nav a:hover {
  color: var(--teal-dark);
}

.hero {
  position: relative;
  min-height: min(760px, 92vh);
  overflow: hidden;
  background: var(--navy);
}

.hero-media,
.hero-media img,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(23, 38, 67, 0.92) 0%, rgba(23, 38, 67, 0.78) 34%, rgba(23, 38, 67, 0.3) 72%),
    linear-gradient(180deg, rgba(255, 107, 23, 0.08) 0%, rgba(23, 38, 67, 0.56) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 40px));
  padding: clamp(132px, 20vh, 190px) 0 64px clamp(20px, 7vw, 96px);
  color: #fff;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #92f1e1;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(38px, 6vw, 78px);
  line-height: 0.98;
  letter-spacing: 0;
  max-width: 12ch;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 2vw, 22px);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 760;
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.primary {
  background: var(--teal);
  color: #fff;
}

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

.secondary {
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.hero-facts {
  display: grid;
  max-width: 720px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 44px 0 0;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.18);
}

.hero-facts div {
  min-height: 118px;
  padding: 18px;
  background: rgba(23, 38, 67, 0.58);
}

.hero-facts dt {
  margin-bottom: 6px;
  color: #fff;
  font-size: 22px;
  font-weight: 800;
}

.hero-facts dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.section,
.band,
.contact {
  padding: clamp(72px, 10vw, 124px) 0;
}

.band {
  background: linear-gradient(180deg, rgba(13, 143, 135, 0.06), rgba(255, 255, 255, 0.92));
}

.intro-band {
  padding-top: 62px;
}

.split,
.proof,
.faq-layout,
.contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: start;
}

.text-stack p {
  color: var(--muted);
  font-size: 18px;
}

.section-head {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-head.compact {
  max-width: 860px;
}

.service-grid,
.format-grid,
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.card,
.price-card,
.proof-grid div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 10px 30px rgba(23, 33, 31, 0.05);
}

.card {
  min-height: 230px;
  padding: 24px;
}

.card p,
.price-card p,
.proof-grid p,
.faq-list p,
.contact p {
  color: var(--muted);
}

.icon {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--rose);
  font-size: 13px;
  font-weight: 860;
}

.checks {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.checks p {
  min-height: 150px;
  margin: 0;
  border-top: 4px solid var(--amber);
  padding: 18px 0 0;
  color: var(--graphite);
  font-size: 18px;
  font-weight: 680;
}

.timeline {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  border-bottom: 1px solid var(--line);
  padding: 0 0 22px;
}

.timeline span {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 8px;
  background: var(--graphite);
  color: #fff;
  font-weight: 820;
}

.timeline p {
  max-width: 760px;
  color: var(--muted);
}

.muted {
  background: linear-gradient(180deg, rgba(255, 107, 23, 0.05), rgba(255, 255, 255, 0.98));
}

.price-card {
  padding: 28px;
}

.price-card.featured {
  border-color: rgba(13, 143, 135, 0.45);
  box-shadow: var(--shadow);
}

.price {
  margin-bottom: 16px;
  color: var(--ink) !important;
  font-size: 30px;
  font-weight: 840;
}

.price-card ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 22px;
  color: var(--graphite);
}

.price-card li::before {
  position: absolute;
  left: 0;
  color: var(--teal);
  content: "✓";
}

.proof {
  align-items: center;
}

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

.proof-grid div {
  padding: 22px;
}

.proof-grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 18px 20px;
}

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

details p {
  margin: 14px 0 0;
}

.contact {
  background:
    linear-gradient(135deg, rgba(13, 143, 135, 0.08), rgba(255, 107, 23, 0.1)),
    #ffffff;
  color: var(--ink);
  border-top: 1px solid var(--line);
}

.contact .eyebrow {
  color: var(--teal);
}

.contact p {
  max-width: 580px;
  color: var(--muted);
}

.lead-form {
  display: grid;
  gap: 16px;
  border-radius: 8px;
  background: #fff;
  padding: 24px;
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

label {
  display: grid;
  gap: 8px;
  font-size: 14px;
  font-weight: 740;
}

input:not([type="checkbox"]),
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:not([type="checkbox"]):focus,
textarea:focus {
  border-color: var(--teal);
  outline: 3px solid rgba(13, 143, 135, 0.16);
}

.site-footer {
  padding: 28px 0;
  background: #ffffff;
  color: var(--muted);
  font-size: 14px;
  border-top: 1px solid var(--line);
}

.footer-inner {
  justify-content: space-between;
  gap: 20px;
}

.footer-brand,
.footer-contacts,
.footer-links {
  display: grid;
  gap: 8px;
}

.footer-logo {
  height: 32px;
  width: auto;
}

.footer-brand p,
.footer-contacts p,
.footer-links a {
  margin: 0;
}

.footer-contacts a {
  color: var(--ink);
}

.footer-links a {
  color: var(--teal-dark);
  font-weight: 700;
}

.policy-check {
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
  gap: 12px;
}

.policy-check input {
  width: 18px;
  height: 18px;
  margin: 3px 0 0;
  accent-color: var(--teal);
}

.policy-check a {
  color: var(--teal-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.field-error,
.form-note {
  min-height: 20px;
  margin: -8px 0 0;
  font-size: 13px;
}

.field-error {
  color: var(--rose);
}

.form-note {
  color: var(--orange-dark);
}

.form-note.is-success {
  color: var(--teal-dark);
}

.is-invalid {
  border-color: var(--rose);
  outline: 3px solid rgba(255, 54, 71, 0.12);
}

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

.legal-page {
  background: var(--paper);
}

.legal-header {
  position: sticky;
}

.legal-main {
  padding-top: 82px;
}

.legal-hero {
  padding: 46px 0 18px;
}

.legal-hero-inner {
  max-width: 900px;
}

.legal-lead {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
}

.legal-hero h1 {
  max-width: none;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.02;
}

.legal-section {
  padding-top: 28px;
}

.legal-content {
  max-width: 920px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: clamp(24px, 4vw, 42px);
  box-shadow: 0 18px 40px rgba(35, 48, 79, 0.06);
}

.legal-content h2 {
  margin-top: 30px;
  margin-bottom: 12px;
  font-size: clamp(24px, 3vw, 34px);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  color: var(--muted);
}

.error-page {
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.error-main {
  display: grid;
  place-items: center;
  padding: 120px 0 64px;
}

.error-card {
  width: min(760px, calc(100% - 40px));
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  padding: clamp(28px, 5vw, 52px);
  box-shadow: var(--shadow);
}

.error-card .eyebrow {
  margin-bottom: 18px;
}

.error-card h1 {
  max-width: none;
  margin-bottom: 18px;
  font-size: clamp(42px, 8vw, 88px);
  line-height: 0.95;
  color: var(--navy);
}

.error-card p {
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
}

.error-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.error-card .secondary {
  border-color: var(--line);
  color: var(--navy);
  background: rgba(35, 48, 79, 0.06);
}

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

  .nav {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-media img {
    object-position: 58% center;
  }

  .hero-content {
    width: min(100% - 32px, 680px);
    padding: 108px 0 46px 16px;
  }

  h1 {
    max-width: 11ch;
    font-size: clamp(36px, 12vw, 58px);
  }

  .hero-facts,
  .service-grid,
  .format-grid,
  .checks,
  .split,
  .proof,
  .faq-layout,
  .contact-inner {
    grid-template-columns: 1fr;
  }

  .hero-facts div {
    min-height: auto;
  }

  .checks p {
    min-height: auto;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .brand {
    max-width: 320px;
  }

  .brand-logo {
    height: 28px;
  }

  .brand-tagline {
    max-width: 180px;
    font-size: 11px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(23, 38, 67, 0.95) 0%, rgba(23, 38, 67, 0.82) 58%, rgba(23, 38, 67, 0.42) 100%),
      linear-gradient(180deg, rgba(255, 107, 23, 0.12) 0%, rgba(23, 38, 67, 0.74) 100%);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-facts {
    margin-top: 30px;
  }

  .section,
  .band,
  .contact {
    padding: 56px 0;
  }

  .timeline li {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 14px;
  }

  .timeline span {
    width: 44px;
    height: 44px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}
