:root {
  --bg: #ffffff;
  --text: #0a1328;
  --muted: #556070;
  --line: #d7dfeb;
  --primary: #f07a2b;
  --navy: #0a1328;
  --blue: #1f67da;
  --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;
}

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

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,
.hero-actions,
.inline-actions {
  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: var(--blue);
  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: var(--blue);
  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));
  color: #fff;
  padding: 86px 0 70px;
}

.hero::before {
  content: "";
  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: 980px;
  margin: 0 auto;
  text-align: center;
}

.location-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--blue);
  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.3rem);
  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.24rem;
  line-height: 1.3;
  font-weight: 700;
}

.hero-subheadline {
  max-width: 820px;
  margin: 18px auto 0;
  font-size: 1.08rem;
}

.hero-actions,
.inline-actions {
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-actions {
  margin-top: 24px;
}

.button {
  min-height: 52px;
  padding: 0 22px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.button.primary {
  background: linear-gradient(180deg, #89d64d 0%, var(--green) 100%);
  color: #fff;
  box-shadow: 0 18px 40px rgba(120, 200, 61, 0.28);
}

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

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

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

.hero-proof {
  max-width: 620px;
  margin: 14px auto 0;
  font-style: italic;
}

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

.benefit-box {
  background: #fff;
  color: var(--text);
  min-height: 118px;
  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: var(--blue);
  font-weight: 800;
}

.section {
  padding: 68px 0;
}

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

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

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

.split-grid,
.three-grid,
.two-grid,
.brands-grid {
  display: grid;
  gap: 22px;
}

.split-grid {
  grid-template-columns: 1.1fr 0.9fr;
}

.three-grid {
  grid-template-columns: repeat(3, 1fr);
}

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

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

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

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

.stack-list,
.brand-columns ul {
  margin: 0;
  padding-left: 22px;
}

.stack-list li,
.brand-columns li {
  margin-bottom: 16px;
}

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

.brand-columns li {
  color: var(--muted);
}

.reason-list {
  display: grid;
  gap: 26px;
  max-width: 920px;
  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;
}

.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;
}

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

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

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

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

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

.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,
  .split-grid,
  .three-grid,
  .two-grid,
  .brand-columns,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .topbar-inner,
  .footer-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 {
    padding: 56px 0 42px;
  }

  h1 {
    font-size: 2.5rem;
  }

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

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

  .button {
    width: 100%;
  }

  .section {
    padding: 56px 0;
  }

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

  .mobile-bar {
    display: grid;
  }
}
