:root {
  --purple: #3a086e;
  --purple-dark: #30257f;
  --violet: #9812f4;
  --green: #00a957;
  --ink: #172033;
  --muted: #747d8e;
  --soft: #f5f7fb;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  zoom: 1.1;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: "Montserrat", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

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

.narrow {
  max-width: 900px;
}


/* =========================
  Header
========================= */

.site-header {
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  width: 100%;
  padding: 17px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand img {
  width: clamp(165px, 20vw, 210px);
}


/* =========================
  Buttons
========================= */

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform 0.2s ease; 
}

.button:hover,
.button:focus-visible {
  filter: brightness(0.92);
  transform: scale(1.03); 
}

.button:focus-visible,
.faq-item button:focus-visible {
  outline: 3px solid #5ce2bb;
  outline-offset: 3px;
}

.button-small {
  min-height: 36px;
  font-size: 9px;
}


/* =========================
  Hero
========================= */

.hero {
  min-height: 520px;
  overflow: hidden;
  padding-top: 82px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  min-height: 438px;
  padding-top: 20px;
}

.hero-content {
  z-index: 1;
  padding: 10px 0 50px;
}

.hero h1 {
  margin: 0 0 22px;
  color: var(--purple-dark);
  font-size: clamp(32px, 6vw, 64px);
  font-weight: 900;
  letter-spacing: -3px;
  line-height: 0.93;
}

.hero h1 span {
  color: var(--violet);
}

.hero-visual {
  align-self: end;
  min-width: 0;
}

.hero-visual img {
  width: min(100%, 555px);
  margin: 0 auto -110px;
}


/* =========================
  Check List
========================= */

.check-list {
  display: grid;
  gap: 10px;
  margin: 0 0 24px;
  padding: 0;
  font-size: 10px;
  font-weight: 600;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.check-list li::before {
  content: "✓";
  display: inline-grid;
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
  place-items: center;
  border-radius: 50%;
  background: var(--purple-dark);
  color: #fff;
  font-size: 9px;
  font-weight: 900;
}


/* =========================
  Quick Offer
========================= */

.quick-offer {
  padding: 18px 0 20px;
  background: var(--purple);
  color: #fff;
  text-align: center;
}

.quick-offer h2 {
  margin: 0 0 12px;
  font-size: 25px;
}

.quick-offer-card {
  display: flex;
  width: min(100%, 560px);
  min-height: 64px;
  align-items: center;
  justify-content: center;
  gap: 26px;
  margin: auto;
  padding: 8px 20px;
  border-radius: 15px;
  background: #f8fafc;
  color: #064f9e;
}

.quick-offer-card p {
  margin: 0;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
  text-align: left;
}

.quick-offer-card strong {
  color: var(--violet);
  font-size: 34px;
  white-space: nowrap;
}

.quick-offer-card .button {
  padding-inline: 18px;
  font-size: 8px;
}

.quick-offer small {
  display: block;
  margin-top: 9px;
  font-size: 9px;
  opacity: 0.68;
}


/* =========================
  How It Works
========================= */

.how {
  padding: 66px 0 62px;
}

.section-title {
  margin: 0 0 34px;
  color: #174395;
  font-size: clamp(22px, 3vw, 27px);
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  position: relative;
  min-height: 136px;
  padding: 20px;
  border-radius: 12px;
  background: var(--soft);
  transition: transform 0.3s ease; 
}

.steps li:hover {
  transform: translateY(-3px);
}

.steps li:not(:last-child)::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 61px;
  left: 100%;
  width: 24px;
  border-top: 1px solid #6776c9;
}

.steps li > span {
  display: block;
  margin-bottom: 12px;
  color: #8391d5;
  font-size: 21px;
  font-weight: 700;
}

.steps h3,
.benefit-grid h3 {
  margin: 0 0 8px;
  font-size: 11px;
}

.steps p,
.benefit-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.65;
}


/* =========================
  Benefits
========================= */

.benefits {
  padding: 45px 0 52px;
  background: var(--purple);
}

.benefits h2 {
  margin: 0 0 34px;
  color: #fff;
  font-size: clamp(24px, 3vw, 30px);
  text-align: center;
}

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

.benefit-grid article {
  min-height: 142px;
  padding: 22px;
  border-radius: 12px;
  background: #fff;
  transition: transform 0.3s ease;
}

.benefit-grid article:hover {
  transform: translateY(-3px);
}

.benefit-grid article > span {
  display: block;
  margin-bottom: 15px;
  font-size: 20px;
}

.benefit-grid h3 {
  color: #27126e;
}

.benefit-grid img {
  width: 28px;
  height: 28px;
}


/* =========================
  Coverage
========================= */

.coverage {
  padding: 40px 0 30px;
}

.coverage-inner {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 40px;
  justify-items: end;
}

.coverage h2 {
  margin: 0;
  color: var(--purple);
  font-size: clamp(26px, 4.5vw, 40px);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 0.98;
}

.coverage h2 span {
  color: var(--violet);
}

.coverage img {
  width: min(100%, 300px);
  justify-self: anchor-center;
}


/* =========================
  Consult
========================= */

.consult {
  padding: 38px 0 42px;
  background: #f3f6fc;
}

.consult .section-title {
  margin-bottom: 18px;
  color: var(--purple);
}

.consult-card {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr;
  width: min(100%, 600px);
  align-items: center;
  gap: 25px;
  margin: auto;
  padding: 21px 36px;
  border-radius: 15px;
  background: linear-gradient(105deg, #9423e9, #a407fa);
  color: #fff;
}

.consult-card h3 {
  margin: 0 0 12px;
  font-size: 22px;
  text-transform: uppercase;
}

.light {
  margin: 0;
  font-size: 9px;
}

.light li::before {
  width: 14px;
  height: 14px;
  flex-basis: 14px;
  font-size: 8px;
}

.consult-action {
  display: grid;
  gap: 8px;
  text-align: center;
}

.consult-action strong {
  font-size: 32px;
  white-space: nowrap;
}

.consult-action .button {
  min-height: 42px;
  font-size: 13px;
}


/* =========================
  FAQ
========================= */

.faq {
  padding: 54px 0 62px;
  background: #f4f7fd;
}

.faq-container {
  max-width: 560px;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--violet);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.faq h2 {
  margin: 0 0 28px;
  color: var(--purple);
  font-size: 26px;
  text-align: center;
}

.accordion {
  padding: 8px 22px;
  border: 1px solid #e0e4eb;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 2px 2px rgb(18 33 72 / 6%);
}

.faq-item + .faq-item {
  border-top: 1px solid #edf0f4;
}

.faq-item button {
  display: flex;
  width: 100%;
  min-height: 49px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: 600 10px "Montserrat", Arial, sans-serif;
  text-align: left;
  cursor: pointer;
}

.plus {
  display: grid;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  place-items: center;
  border-radius: 50%;
  background: #f2f4f7;
  color: #818a9e;
  transition: transform 0.2s ease;
}

.faq-item button[aria-expanded="true"] .plus {
  transform: rotate(45deg);
}

.faq-answer {
  height: 0;
  overflow: hidden;
  opacity: 0;
  transition: height 0.35s ease, opacity 0.25s ease;
}

.faq-item button[aria-expanded="true"] + .faq-answer {
  opacity: 1;
}

.faq-answer p {
  margin: -3px 35px 16px 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.6;
}


/* =========================
  Footer
========================= */

.site-footer {
  padding: 36px 0 38px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  align-items: start;
}

.footer-top img {
  width: 205px;
}

.footer-top p {
  margin: 5px 0 56px;
  font-size: 9px;
  line-height: 1.55;
  text-align: center;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 34px;
}

.site-footer nav a {
  font-size: 11px;
  text-decoration: none;
}

.site-footer nav a:hover {
  color: var(--violet);
  text-decoration: underline;
}


/* =========================
  Responsive - Mobile
========================= */

@media (max-width: 760px) {
    .container {
      width: min(calc(100% - 32px), 620px);
    }

    /* Header */

    .site-header {
      position: relative;
      padding: 14px 0;
    }

    .brand img {
      width: 155px;
    }

    .header-inner .button {
      min-height: 34px;
      padding-inline: 13px;
      font-size: 8px;
    }

    /* Hero */

    .hero {
      min-height: 0;
      padding-top: 5px;
    }

    .hero-inner {
      padding-top: 10px;
      grid-template-columns: 1fr;
      min-height: 0;
    }

    .hero-content {
      padding: 0px 4px 12px;
    }
    
    .hero-button {
      display: none;
    }

    .hero h1 {
      font-size: clamp(32px, 6vw, 78px);
      letter-spacing: -0.90px;
    }

    .hero .check-list {
      font-size: 10px;
    }

    .hero-visual img {
      width: min(118%, 540px);
      max-width: none;
      margin: -45px -9% -62px auto;
    }

    /* Quick Offer */

    .quick-offer {
      padding: 21px 0;
    }

    .quick-offer h2 {
      font-size: 20px;
    }

    .quick-offer-card {
      flex-wrap: wrap;
      gap: 8px 18px;
      padding: 14px 16px;
    }

    .quick-offer-card p,
    .quick-offer-card strong {
      flex: 1 1 42%;
    }

    .quick-offer-card p {
      font-size: 13px;
      text-align: center;
    }

    .quick-offer-card strong {
      font-size: 27px;
    }

    .quick-offer-card .button {
      width: 100%;
    }

    /* How It Works */

    .how {
      padding: 48px 0;
    }

    .steps {
      grid-template-columns: 1fr;
      gap: 12px;
    }

    .steps li {
      min-height: 0;
      padding: 18px 20px;
    }

    .steps li:not(:last-child)::after {
      top: 100%;
      left: 36px;
      width: 1px;
      height: 12px;
      border: 0;
      border-left: 1px solid #6776c9;
    }

    .steps li > span {
      margin-bottom: 6px;
    }

    .benefit-grid img {
      width: 16px;
      height: 16px;
    }

    .steps h3,
    .benefit-grid h3 {
      font-size: 12px;
    }

    .steps p,
    .benefit-grid p {
      font-size: 10px;
    }

    /* Benefits */

    .benefits {
      padding: 44px 0;
    }

    .benefit-grid {
      grid-template-columns: 1fr;
      gap: 12px;
    }

    .benefit-grid article {
      min-height: 0;
      padding: 20px;
    }

    .benefit-grid article > span {
      margin-bottom: 10px;
    }

    /* Coverage */

    .coverage {
      padding: 38px 0;
      overflow: hidden;
    }

    .coverage-inner {
      grid-template-columns: 1fr;
      gap: 10px;
    }

    .coverage h2 {
      font-size: clamp(26px, 4.5vw, 60px);
      text-align-last:center
    }

    .coverage img {
      width: 90%;
      max-width: none;
      justify-self: center;
      padding-top: 20px;
    }

    /* Consult */

    .consult-card {
      grid-template-columns: 1fr;
      padding: 26px 24px;
    }

    .consult-card h3 {
      font-size: 20px;
    }

    .light {
      font-size: 10px;
    }

    .consult-action strong {
      font-size: 36px;
    }

    /* FAQ */

    .faq {
      padding: 48px 0 52px;
    }

    .accordion {
      padding-inline: 17px;
    }

    .faq-item button {
      min-height: 56px;
      font-size: 10px;
    }

    /* Footer */

    .footer-top {
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .footer-top img {
      width: 190px;
    }

    .footer-top p {
      margin: 28px 0 34px;
    }

    .site-footer nav {
      flex-direction: column;
      align-items: center;
      gap: 16px;
    }
}


/* =========================
  Reduced Motion
========================= */

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

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
    }
}
