:root {
  --bg: #f7f8fa;
  --bg-alt: #eef2f6;
  --text: #1f2a37;
  --muted: #5f6b7a;
  --brand: #173865;
  --brand-dark: #102a4a;
  --accent: #d6c08c;
  --white: #ffffff;
  --border: #d7dfea;
  --shadow: 0 14px 32px rgba(15, 34, 58, 0.08);
  --radius: 16px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

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

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.section {
  padding: 80px 0;
}

.section-alt {
  background: var(--bg-alt);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(215, 223, 234, 0.8);
  backdrop-filter: blur(8px);
}

.nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--brand);
  color: var(--white);
  display: grid;
  place-items: center;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-name {
  margin: 0;
  font-weight: 700;
  color: var(--brand-dark);
}

.brand-subtitle {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
}

h1,
h2,
h3 {
  font-family: "Playfair Display", Georgia, serif;
  margin: 0 0 0.65em;
  color: var(--brand-dark);
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.15rem);
}

h2 {
  font-size: clamp(1.65rem, 3vw, 2.4rem);
}

h3 {
  font-size: 1.3rem;
}

.lead {
  max-width: 62ch;
  color: var(--muted);
  font-size: 1.06rem;
}

.eyebrow {
  margin: 0 0 12px;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  align-items: center;
}

.hero-cta-group {
  margin: 28px 0 12px;
}

.microcopy {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.trust-bullets {
  margin: 24px 0 0;
  padding: 0 0 0 20px;
  color: var(--muted);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  border-radius: 12px;
  border: 1px solid transparent;
  padding: 13px 22px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
  cursor: pointer;
}

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

.button-primary {
  background: var(--accent);
  color: #2d2f34;
  box-shadow: 0 8px 20px rgba(194, 169, 106, 0.25);
}

.button-primary:hover {
  background: #cfb575;
}

.button-outline {
  border-color: var(--brand);
  color: var(--brand);
  background: var(--white);
}

.button-large {
  font-size: 1.06rem;
  padding: 15px 26px;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-visual {
  margin: 0;
  padding: 18px;
}

.hero-image {
  width: 100%;
  height: 320px;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  object-position: center;
}

.steps {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.step {
  padding: 22px;
}

.step-cta .button {
  margin-top: 8px;
}

.step-index {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  background: var(--brand);
  color: var(--white);
  font-weight: 700;
}

.two-col {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
  align-items: start;
}

.feature-list {
  margin: 0;
  padding-left: 20px;
}

.emphasis-box {
  padding: 24px;
}

.reviews {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.review {
  padding: 22px;
}

.review p {
  margin-top: 0;
}

.review-stars {
  margin: 0 0 10px;
  color: var(--accent);
  letter-spacing: 0.08em;
  font-size: 1.05rem;
}

.review span {
  color: var(--muted);
  font-weight: 600;
}

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

details.card {
  padding: 0;
  overflow: hidden;
}

summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 600;
}

summary::-webkit-details-marker {
  display: none;
}

details p {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--muted);
}

.section-cta {
  padding-top: 30px;
  padding-bottom: 90px;
}

.final-cta {
  text-align: center;
  padding: 34px 20px;
}

.final-cta p {
  color: var(--muted);
  max-width: 56ch;
  margin: 0 auto 22px;
}

.site-footer {
  padding: 22px 0 32px;
  border-top: 1px solid var(--border);
  background: #fff;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  align-items: center;
  justify-content: center;
}

.mobile-sticky-cta {
  position: fixed;
  z-index: 40;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 14px 16px;
  border-radius: 12px;
  text-align: center;
  font-weight: 800;
  background: var(--accent);
  color: #2d2f34;
  box-shadow: 0 10px 24px rgba(38, 37, 31, 0.24);
}

@media (min-width: 921px) {
  .mobile-sticky-cta {
    display: none;
  }
}

@media (max-width: 920px) {
  .desktop-nav-cta {
    display: none;
  }

  .section {
    padding: 64px 0;
  }

  .hero-grid,
  .steps,
  .two-col,
  .reviews {
    grid-template-columns: 1fr;
  }

  .hero-image {
    height: 240px;
  }
}

@media (max-width: 640px) {
  .nav {
    min-height: 66px;
  }

  .brand-subtitle {
    display: none;
  }

  .section {
    padding: 56px 0;
  }

  .button,
  .button-large {
    width: 100%;
  }

  .footer-grid {
    justify-content: flex-start;
  }
}
