:root {
  --ink: #13253f;
  --muted: #637188;
  --paper: #f7f9fc;
  --white: #ffffff;
  --line: #dce4ef;
  --accent: #ef6c4d;
  --accent-dark: #c84e35;
  --mint: #dff4e9;
  --navy: #132b4b;
  --shadow: 0 24px 70px rgba(25, 48, 78, 0.14);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

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

.site-header {
  padding: 30px 0;
  background: var(--navy);
  color: var(--white);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 750;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border-radius: 10px;
  color: var(--navy);
  background: #f6d37f;
  font-size: 14px;
  font-weight: 900;
}

.nav-link {
  color: #c7d4e4;
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--white);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 102px;
  color: var(--white);
  background: var(--navy);
}

.hero::after {
  position: absolute;
  right: -130px;
  bottom: -230px;
  width: 570px;
  height: 570px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  box-shadow:
    0 0 0 46px rgba(255, 255, 255, 0.035),
    0 0 0 92px rgba(255, 255, 255, 0.025);
  content: "";
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 42px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 25px;
  color: #f6d37f;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow::before {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  content: "";
}

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

h1 {
  width: 100%;
  max-width: none;
  margin-bottom: 25px;
  font-size: clamp(2.8rem, 6vw, 5.8rem);
  font-weight: 780;
  letter-spacing: -0.075em;
  line-height: 0.94;
  overflow-wrap: anywhere;
}

.hero-copy {
  max-width: 560px;
  margin-bottom: 0;
  color: #c7d4e4;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.offer-card {
  width: 100%;
  max-width: 430px;
  justify-self: start;
  padding: 31px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.095);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(12px);
}

.offer-label {
  margin-bottom: 12px;
  color: #c7d4e4;
  font-size: 13px;
  font-weight: 650;
}

.price {
  margin-bottom: 21px;
  color: var(--white);
  font-size: 2.6rem;
  font-weight: 780;
  letter-spacing: -0.05em;
  line-height: 1;
}

.price-note {
  margin: 0 0 23px;
  color: #c7d4e4;
  font-size: 13px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 13px 20px;
  border: 0;
  border-radius: 11px;
  color: #fff;
  background: var(--accent);
  font-size: 15px;
  font-weight: 780;
  text-decoration: none;
  transition:
    background 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.button:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 9px 18px rgba(239, 108, 77, 0.28);
}
.button:focus-visible,
.nav-link:focus-visible,
.footer-link:focus-visible {
  outline: 3px solid #f6d37f;
  outline-offset: 4px;
}
.button svg {
  width: 17px;
  height: 17px;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 4px 30px;
  border-right: 1px solid var(--line);
}

.proof-item:first-child {
  padding-left: 30px;
}
.proof-item:last-child {
  border-right: 0;
}

.proof-icon {
  display: grid;
  flex: 0 0 35px;
  width: 35px;
  height: 35px;
  place-items: center;
  border-radius: 50%;
  color: #237a55;
  background: var(--mint);
}

.proof-text strong {
  display: block;
  font-size: 14px;
}
.proof-text span {
  color: var(--muted);
  font-size: 12px;
}

main {
  background: var(--paper);
}

.section {
  padding: 105px 0;
}

.section-heading {
  max-width: 590px;
  margin-bottom: 45px;
}
.section-heading .eyebrow {
  color: var(--accent-dark);
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: -0.055em;
  line-height: 1;
}

.section-intro {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

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

.benefit {
  min-height: 230px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.benefit-number {
  display: block;
  margin-bottom: 45px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.benefit h3 {
  margin: 0 0 9px;
  font-size: 1.12rem;
  letter-spacing: -0.02em;
}
.benefit p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.process-section {
  padding-top: 0;
}

.process-box {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  padding: 57px;
  border-radius: 28px;
  color: var(--white);
  background: #1c3d63;
}

.process-box h2 {
  margin-bottom: 0;
}
.process-box .eyebrow {
  color: #f6d37f;
}
.process-list {
  display: grid;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.process-list li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 16px;
  align-items: start;
}
.process-step {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  color: #f6d37f;
  font-size: 12px;
  font-weight: 800;
}
.process-list strong {
  display: block;
  margin-bottom: 2px;
  font-size: 15px;
}
.process-list span {
  color: #c7d4e4;
  font-size: 14px;
}

.faq-section {
  padding-top: 35px;
}
.faq {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 25px;
}
details {
  padding: 20px 0;
  border-top: 1px solid var(--line);
}
summary {
  cursor: pointer;
  font-size: 15px;
  font-weight: 750;
  list-style-position: outside;
}
details p {
  margin: 11px 0 0 23px;
  color: var(--muted);
  font-size: 14px;
}

footer {
  padding: 31px 0;
  border-top: 1px solid var(--line);
  background: var(--white);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 13px;
}
.footer-link {
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

@media (max-width: 760px) {
  .wrap {
    width: min(100% - 32px, 560px);
  }
  .site-header {
    padding: 22px 0;
  }
  .hero {
    padding: 57px 0 70px;
  }
  .hero-grid,
  .process-box {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .hero-grid {
    align-items: start;
  }
  .offer-card {
    max-width: 440px;
  }
  .proof-strip {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 23px 0;
  }
  .proof-item,
  .proof-item:first-child {
    padding: 0 16px;
    border-right: 0;
  }
  details {
    padding-right: 16px;
    padding-left: 16px;
  }
  .section {
    padding: 73px 0;
  }
  .benefit-grid,
  .faq {
    grid-template-columns: 1fr;
  }
  .benefit {
    min-height: 0;
  }
  .benefit-number {
    margin-bottom: 30px;
  }
  .process-box {
    padding: 34px 27px;
  }
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .button {
    transition: none;
  }
}
