:root {
  --blue: #1261d6;
  --blue-dark: #063b88;
  --blue-deep: #052e6e;
  --blue-soft: #edf5ff;
  --yellow: #ffbc00;
  --yellow-dark: #ffbc00;
  --ink: #102033;
  --muted: #5b6475;
  --line: #d8e3f5;
  --surface: #ffffff;
  --surface-alt: #f4f8ff;
  --shadow: 0 18px 55px rgba(16, 24, 40, 0.12);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

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

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

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

button,
input,
textarea {
  font: inherit;
}

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

.section {
  padding: 82px 0;
  scroll-margin-top: 92px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: linear-gradient(90deg, rgba(5, 46, 110, 0.97), rgba(18, 97, 214, 0.94));
  border-bottom: 1px solid rgba(255, 188, 0, 0.28);
  box-shadow: 0 12px 28px rgba(5, 46, 110, 0.2);
  backdrop-filter: blur(16px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  color: #fff;
  font-weight: 900;
}

.brand-emblem {
  display: grid;
  place-items: center;
  width: 58px;
  height: 50px;
  overflow: hidden;
}

.brand-emblem img {
  width: 58px;
  height: 50px;
  object-fit: contain;
  transform: scale(1.45);
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.14));
}

.brand-name {
  font-size: 1.08rem;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 14px 26px;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.14);
  font-size: 0.95rem;
  font-weight: 600;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: #fff;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 12px;
  color: var(--blue-deep);
  background: var(--yellow);
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(255, 188, 0, 0.24);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 104px;
  background: linear-gradient(145deg, var(--blue-deep) 0%, var(--blue-dark) 34%, var(--blue) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.92fr);
  align-items: center;
  gap: 58px;
}

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

.hero .eyebrow {
  color: #fff;
}

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

h1 {
  max-width: 680px;
  margin-bottom: 20px;
  color: #fff;
  font-size: clamp(2.55rem, 5vw, 4.65rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h1 span {
  display: block;
}

.headline-reliable {
  color: var(--yellow);
  font-size: 1.12em;
  font-weight: 800;
}

h2 {
  margin-bottom: 14px;
  color: var(--blue-dark);
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  line-height: 1.06;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  color: var(--blue-dark);
  font-size: 1.16rem;
  line-height: 1.25;
}

p {
  color: var(--muted);
}

.hero-subhead {
  max-width: 650px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button.primary {
  color: var(--blue-deep);
  background: var(--yellow);
  box-shadow: 0 14px 28px rgba(255, 188, 0, 0.24);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: #ffbc00;
}

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

.hero .button.secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.button.dark {
  color: var(--blue-dark);
  background: var(--yellow);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.2);
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.trust-list li {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.92rem;
  font-weight: 800;
}

.trust-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 4px rgba(255, 188, 0, 0.24);
}

.hero-media {
  position: relative;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 34px -24px -24px 42px;
  z-index: 0;
  border-radius: 32px;
  background: var(--yellow);
  transform: rotate(3deg);
}

.hero-frame {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 10px solid #fff;
  border-radius: 30px;
  background: #dbe6f7;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
}

.hero-frame img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.stat-card {
  position: absolute;
  right: 18px;
  bottom: -24px;
  z-index: 2;
  display: grid;
  gap: 2px;
  width: min(230px, 58%);
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 38px rgba(16, 24, 40, 0.16);
}

.stat-card strong {
  color: var(--blue-dark);
  font-size: 1.8rem;
  line-height: 1;
}

.stat-card span:last-child {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.stars,
.rating span {
  color: var(--yellow-dark);
  letter-spacing: 0;
}

.quote-band {
  padding: 70px 0;
  background:
    radial-gradient(circle at 90% 0%, rgba(255, 188, 0, 0.12), transparent 28%),
    linear-gradient(135deg, var(--blue-deep), var(--blue-dark));
  scroll-margin-top: 92px;
}

.quote-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 46px;
  align-items: start;
}

.quote-band h2,
.quote-band p {
  color: #fff;
}

.quote-band .eyebrow {
  color: var(--yellow);
}

.quote-band p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.78);
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 26px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row.wide,
.form-submit,
.form-note {
  grid-column: 1 / -1;
}

label {
  color: var(--blue-dark);
  font-size: 0.9rem;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  outline: 0;
}

input {
  min-height: 48px;
  padding: 0 14px;
}

textarea {
  resize: vertical;
  min-height: 112px;
  padding: 13px 14px;
}

input:focus,
textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(30, 77, 183, 0.12);
}

.form-submit {
  width: 100%;
  min-height: 56px;
  margin-top: 2px;
}

.form-note {
  margin: -4px 0 0;
  text-align: center;
  font-size: 0.9rem;
}

.section-heading {
  max-width: 680px;
  margin-bottom: 34px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.rating {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--blue-dark);
  font-weight: 800;
}

.logo-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.logo-strip span {
  display: grid;
  place-items: center;
  min-height: 78px;
  border: 1px solid var(--line);
  border-radius: 16px;
  color: #647087;
  background: #fff;
  font-size: clamp(0.88rem, 1.6vw, 1.05rem);
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(16, 24, 40, 0.05);
}

.social-proof {
  padding-bottom: 58px;
}

.card-grid {
  display: grid;
  gap: 18px;
}

.card-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card,
.step-card,
.problem-list article,
.why-list article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 28px rgba(16, 24, 40, 0.06);
}

.feature-card {
  min-height: 238px;
  padding: 24px;
}

.card-icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  border-radius: 14px;
  color: var(--blue-dark);
  background: var(--yellow);
  font-weight: 900;
}

.split-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 46px;
  align-items: start;
}

.problem-section,
.why-section {
  background: var(--surface-alt);
}

.problem-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.problem-list article,
.why-list article {
  padding: 24px;
}

.problem-list h3::before,
.why-list h3::before {
  content: "";
  display: block;
  width: 34px;
  height: 4px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: var(--yellow);
}

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

.step-card {
  position: relative;
  padding: 28px;
}

.step-card span {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 26px;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
  font-weight: 900;
}

.why-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 44px;
  align-items: start;
}

.why-list {
  display: grid;
  gap: 18px;
}

.final-cta {
  padding: 74px 0;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.final-cta h2 {
  max-width: 720px;
  color: #fff;
}

.final-cta p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.78);
}

.final-cta .eyebrow {
  color: var(--yellow);
}

@media (max-width: 980px) {
  .hero-grid,
  .quote-grid,
  .split-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 42px;
  }

  .card-grid.four,
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .logo-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .nav-links {
    display: none;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .section {
    padding: 58px 0;
  }

  .nav {
    min-height: 66px;
  }

  .nav-cta {
    min-height: 40px;
    padding-inline: 14px;
    font-size: 0.9rem;
  }

  .hero {
    padding: 48px 0 70px;
  }

  h1 {
    font-size: 2.7rem;
  }

  h2 {
    font-size: 2.05rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-media::before {
    inset: 20px -10px -16px 24px;
    border-radius: 24px;
  }

  .hero-frame {
    border-width: 7px;
    border-radius: 22px;
  }

  .stat-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: calc(100% - 28px);
    margin: -24px auto 0;
  }

  .lead-form,
  .problem-list,
  .card-grid.four,
  .steps {
    grid-template-columns: 1fr;
  }

  .lead-form {
    padding: 20px;
    border-radius: 20px;
  }

  .quote-band {
    padding: 54px 0;
  }

  .logo-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-card {
    min-height: auto;
  }

  .final-cta-inner {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 2.25rem;
  }

  .brand {
    gap: 8px;
  }

  .brand-emblem,
  .brand-emblem img {
    width: 48px;
    height: 42px;
  }

  .brand-name {
    font-size: 0.98rem;
  }

  .logo-strip {
    grid-template-columns: 1fr;
  }

  .trust-list li {
    width: 100%;
  }
}
