:root {
  --bg: #ffffff;
  --text: #0a1328;
  --muted: #556070;
  --line: #d7dfeb;
  --primary: #f07a2b;
  --primary-dark: #d96419;
  --navy: #0a1328;
  --green: #78c83d;
  --light: #f3f7fc;
  --shadow: 0 16px 40px rgba(10, 19, 40, 0.12);
  --container: min(1140px, calc(100% - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Open Sans", sans-serif;
  color: var(--text);
  background: var(--bg);
}

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

p,
li {
  line-height: 1.6;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.topbar {
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}

.topbar-inner,
.brand-row,
.topbar-actions,
.footer-inner,
.footer-links {
  display: flex;
  align-items: center;
}

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

.topbar-inner {
  min-height: 78px;
}

.brand-row {
  gap: 12px;
}

.brand-badge {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: #1f67da;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 800;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-text strong {
  font-size: 0.98rem;
}

.brand-text span {
  color: var(--muted);
  font-size: 0.8rem;
}

.topbar-actions {
  gap: 10px;
}

.small-cta {
  min-height: 42px;
  padding: 0 18px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.92rem;
}

.small-cta.dark {
  background: var(--navy);
  color: #fff;
}

.small-cta.phone {
  background: #1f67da;
  color: #fff;
}

.hero {
  position: relative;
  background:
    radial-gradient(circle at top, rgba(255,255,255,0.08), transparent 30%),
    linear-gradient(180deg, rgba(28, 43, 75, 0.86), rgba(10, 19, 40, 0.98));
  min-height: 720px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 88px 0 72px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(255,255,255,0.04), transparent 45%),
    linear-gradient(180deg, rgba(10, 16, 28, 0.18), rgba(10, 16, 28, 0.28));
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 920px;
  text-align: center;
  color: #fff;
}

.location-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: #1f67da;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
}

h1,
h2,
h3 {
  margin: 0;
}

h1 {
  margin-top: 18px;
  font-size: clamp(2.8rem, 5.8vw, 4.5rem);
  line-height: 1.08;
  font-weight: 800;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.2;
  font-weight: 800;
}

h3 {
  font-size: 1.3rem;
  line-height: 1.3;
  font-weight: 700;
}

.hero-subheadline {
  max-width: 760px;
  margin: 20px auto 0;
  font-size: 1.12rem;
}

.hero-primary-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 800;
}

.hero-primary-cta {
  min-width: 280px;
  min-height: 64px;
  margin-top: 26px;
  background: linear-gradient(180deg, #89d64d 0%, var(--green) 100%);
  color: #fff;
  font-size: 1.3rem;
  box-shadow: 0 18px 40px rgba(120, 200, 61, 0.28);
}

.hero-callout {
  margin: 22px 0 0;
  font-size: 1.24rem;
  font-weight: 700;
}

.hero-callout a {
  text-decoration: underline;
}

.stars {
  margin-top: 22px;
  color: #f7c844;
  letter-spacing: 0.14em;
  font-size: 1.18rem;
}

.hero-proof {
  max-width: 620px;
  margin: 16px auto 0;
  font-style: italic;
  font-size: 1rem;
}

.hero-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 42px;
}

.benefit-box {
  background: #fff;
  color: var(--text);
  min-height: 126px;
  border-radius: 10px;
  padding: 22px 16px;
  display: grid;
  place-items: center;
  text-align: center;
  box-shadow: var(--shadow);
  font-weight: 700;
}

.benefit-icon,
.check {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: #eaf2ff;
  color: #1f67da;
  font-weight: 800;
}

.section {
  padding: 72px 0;
}

.section-light {
  background: var(--light);
}

.trust-band {
  padding-top: 48px;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
}

.info-card,
.review-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.info-card p,
.section-head p,
.review-panel p,
.site-footer p {
  color: var(--muted);
}

.inline-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.button {
  min-height: 52px;
  padding: 0 22px;
}

.button.orange {
  background: linear-gradient(180deg, #f58d45 0%, var(--primary) 100%);
  color: #fff;
}

.button.white {
  background: #fff;
  color: var(--navy);
  border: 1px solid var(--line);
}

.button.large {
  min-width: 250px;
  min-height: 58px;
  font-size: 1.15rem;
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 28px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.chips span {
  padding: 10px 14px;
  border-radius: 999px;
  background: #eef4fb;
  border: 1px solid var(--line);
  font-weight: 700;
}

.three-col-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.three-col-list ul {
  margin: 0;
  padding-left: 22px;
}

.three-col-list li {
  margin-bottom: 18px;
  font-size: 1.05rem;
}

.brands-list li {
  color: var(--muted);
}

.center-cta {
  text-align: center;
  margin-top: 26px;
}

.center-cta p {
  margin-top: 12px;
  color: var(--muted);
}

.center-cta a:not(.button) {
  color: var(--primary);
  text-decoration: underline;
  font-weight: 700;
}

.reason-list {
  display: grid;
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.reason-list article {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 18px;
  align-items: start;
}

.reason-list p {
  margin: 8px 0 0;
  color: var(--muted);
}

.review-panel {
  text-align: center;
}

.footer-cta {
  background: var(--navy);
  color: #fff;
  padding: 90px 0;
  text-align: center;
}

.footer-cta-inner {
  max-width: 760px;
}

.footer-cta-inner p {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.site-footer {
  background: #0b1220;
  color: #d4dce8;
  padding: 28px 0 100px;
}

.footer-links {
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-links a {
  color: #d4dce8;
}

.mobile-bar {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 60;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.mobile-bar a {
  min-height: 56px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-weight: 800;
  box-shadow: var(--shadow);
}

.mobile-bar a:first-child {
  background: linear-gradient(180deg, #f58d45 0%, var(--primary) 100%);
  color: #fff;
}

.mobile-bar a:last-child {
  background: #fff;
  color: var(--navy);
}

@media (max-width: 960px) {
  .hero-benefits,
  .trust-grid,
  .three-col-list,
  .footer-inner {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 640px) {
  .topbar-inner {
    min-height: auto;
    padding: 14px 0;
  }

  .hero {
    min-height: auto;
    padding: 56px 0 42px;
  }

  .hero-primary-cta,
  .button.large {
    width: 100%;
    min-width: 0;
  }

  .hero-benefits {
    grid-template-columns: repeat(2, 1fr);
  }

  h1 {
    font-size: 2.5rem;
  }

  .hero-subheadline {
    font-size: 1rem;
  }

  .section {
    padding: 58px 0;
  }

  .site-footer {
    padding-bottom: 118px;
  }

  .mobile-bar {
    display: grid;
  }
}
