:root {
  --brand-primary: #0d47c9;
  --brand-primary-deep: #082f88;
  --brand-accent: #18c2de;
  --brand-cta: #ff6a28;
  --ink-strong: #101c37;
  --ink-body: #34415f;
  --surface: #f6f9ff;
  --surface-alt: #eaf1ff;
  --surface-card: #ffffff;
  --line-soft: rgba(13, 71, 201, 0.16);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --shadow-strong: 0 26px 60px rgba(10, 30, 85, 0.16);
  --shadow-soft: 0 14px 30px rgba(10, 30, 85, 0.1);
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink-body);
  background:
    radial-gradient(circle at 0% 0%, rgba(24, 194, 222, 0.25), transparent 32%),
    radial-gradient(circle at 95% 5%, rgba(13, 71, 201, 0.16), transparent 38%),
    linear-gradient(180deg, #fcfdff 0%, #f4f8ff 45%, #eef4ff 100%);
}

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

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

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

button,
a,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(24, 194, 222, 0.6);
  outline-offset: 3px;
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.section {
  padding: 5rem 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(236, 244, 255, 0.8));
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(8, 47, 136, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.topbar-inner {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.brand-logo {
  width: 178px;
  height: auto;
  object-fit: contain;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  color: rgba(255, 255, 255, 0.86);
}

.brand-copy strong {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: #fff;
}

.brand-copy span {
  font-size: 0.93rem;
}

.trust-strip {
  background: linear-gradient(90deg, rgba(13, 71, 201, 0.12), rgba(24, 194, 222, 0.1));
  border-bottom: 1px solid var(--line-soft);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding: 1rem 0;
}

.trust-grid article {
  display: grid;
  gap: 0.2rem;
}

.trust-grid strong {
  font-family: "Montserrat", sans-serif;
  color: var(--ink-strong);
  font-size: 0.98rem;
}

.trust-grid span {
  color: #44567f;
}

.hero {
  padding-top: 3rem;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 1.5rem;
  align-items: start;
}

.eyebrow,
.kicker,
.kicker-light {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
  font-weight: 700;
}

.eyebrow,
.kicker {
  color: var(--brand-primary);
}

.kicker-light {
  color: rgba(255, 255, 255, 0.74);
}

.hero-copy h1,
.section-head h2,
.hero-card h2,
.offer-copy h2,
.final-shell h2 {
  font-family: "Montserrat", sans-serif;
  line-height: 1.07;
  letter-spacing: -0.03em;
  color: var(--ink-strong);
}

.hero-copy h1 {
  font-size: clamp(2.2rem, 4.5vw, 4.1rem);
  max-width: 11ch;
  margin-top: 0.8rem;
}

.lead,
.section-head p,
.panel p,
.step p,
.offer-copy p,
.offer-card p,
.faq-content p,
.footer p,
.final-shell p {
  line-height: 1.66;
}

.lead {
  font-size: clamp(1.06rem, 1.22vw, 1.28rem);
  max-width: 60ch;
  margin-top: 1.2rem;
}

.hero-actions {
  margin: 1.8rem 0 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.microcopy {
  max-width: 58ch;
  color: #48597c;
}

.microcopy strong {
  margin-right: 0.2rem;
}

.hero-bullets {
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.8rem;
  max-width: 60ch;
}

.hero-bullets li {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: 0.95rem 1rem;
  display: flex;
  gap: 0.75rem;
}

.hero-bullets li::before,
.panel h3::before,
.step h3::before {
  content: "";
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  margin-top: 0.38rem;
  border-radius: 99px;
  background: linear-gradient(135deg, var(--brand-accent), var(--brand-primary));
}

.hero-card,
.panel,
.step,
.offer-shell,
.offer-card,
.faq-item,
.final-shell {
  background: var(--surface-card);
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-strong);
}

.hero-card {
  padding: 1.6rem;
  background:
    radial-gradient(circle at top right, rgba(24, 194, 222, 0.18), transparent 36%),
    linear-gradient(180deg, #ffffff, #f3f8ff);
}

.hero-card h2 {
  margin-top: 0.6rem;
  font-size: clamp(1.58rem, 2.5vw, 2.15rem);
}

.hero-card p {
  margin-top: 0.9rem;
}

.contact-list {
  margin: 1.2rem 0 1.4rem;
  display: grid;
  gap: 0.7rem;
}

.contact-list article {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  padding: 0.85rem 0.95rem;
  background: rgba(13, 71, 201, 0.04);
}

.contact-list span {
  color: #516590;
  font-size: 0.94rem;
}

.contact-list strong {
  display: block;
  margin-top: 0.2rem;
  font-family: "Montserrat", sans-serif;
  color: var(--ink-strong);
}

.card-note,
.offer-note {
  color: #4a5c81;
}

.section-head {
  max-width: 790px;
  margin-bottom: 2rem;
}

.section-head h2 {
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  margin-top: 0.6rem;
}

.section-head p {
  margin-top: 1rem;
}

.section-brand {
  background:
    radial-gradient(circle at 4% 18%, rgba(24, 194, 222, 0.3), transparent 30%),
    linear-gradient(130deg, #05296d 0%, #0d47c9 58%, #1061d8 100%);
}

.section-head-light h2,
.section-head-light p,
.panel-dark h3,
.panel-dark p {
  color: #fff;
}

.cards-3,
.cards-4,
.steps {
  display: grid;
  gap: 1rem;
}

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

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

.panel,
.step {
  padding: 1.25rem;
}

.panel h3,
.step h3 {
  font-family: "Montserrat", sans-serif;
  color: var(--ink-strong);
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  margin-bottom: 0.5rem;
}

.panel-dark {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.12);
}

.panel-dark h3::before {
  background: linear-gradient(135deg, #fff, var(--brand-accent));
}

.step-number {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
  margin-bottom: 0.8rem;
}

.offer-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.84fr);
  gap: 1rem;
  padding: 1.4rem;
  background:
    radial-gradient(circle at top right, rgba(24, 194, 222, 0.2), transparent 34%),
    linear-gradient(180deg, #ffffff, #f4f8ff);
}

.offer-card {
  padding: 1.3rem;
}

.offer-phone {
  display: block;
  margin-top: 0.55rem;
  font-size: 1.35rem;
  font-family: "Montserrat", sans-serif;
  color: var(--ink-strong);
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

.faq-item {
  overflow: hidden;
}

.faq-trigger {
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  padding: 1.2rem 1.2rem 1rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--ink-strong);
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

.faq-trigger::after {
  content: "+";
  color: var(--brand-primary);
  font-size: 1.35rem;
  line-height: 1;
}

.faq-trigger[aria-expanded="true"]::after {
  content: "-";
}

.faq-content {
  padding: 0 1.2rem 1.2rem;
}

.final-cta {
  background:
    radial-gradient(circle at 50% 0%, rgba(24, 194, 222, 0.22), transparent 36%),
    linear-gradient(180deg, #0b3a9f 0%, #08358f 100%);
}

.final-shell {
  padding: 2rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.15);
}

.final-shell h2,
.final-shell p {
  color: #fff;
}

.final-shell p {
  max-width: 56ch;
  margin: 1rem auto 0;
}

.footer {
  background: #f1f6ff;
  border-top: 1px solid var(--line-soft);
  padding: 1.8rem 0 6rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.footer strong {
  font-family: "Montserrat", sans-serif;
  color: var(--ink-strong);
}

.footer p {
  margin-top: 0.5rem;
}

.footer-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.35rem;
}

.btn {
  min-height: 48px;
  padding: 0.88rem 1.25rem;
  border-radius: 999px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand-cta), #ff8b2e);
  box-shadow: 0 15px 28px rgba(255, 106, 40, 0.35);
}

.btn-primary:hover {
  box-shadow: 0 18px 34px rgba(255, 106, 40, 0.4);
}

.btn-outline {
  color: var(--brand-primary-deep);
  background: rgba(255, 255, 255, 0.84);
  border-color: rgba(13, 71, 201, 0.24);
}

.btn-lg {
  min-height: 56px;
  padding: 0.96rem 1.5rem;
}

.sticky-cta {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 30;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  min-height: 60px;
  padding: 0.9rem 1rem;
  color: #fff;
  background: linear-gradient(135deg, #08358f, #0d47c9);
  border-radius: 16px;
  box-shadow: 0 20px 38px rgba(7, 22, 62, 0.36);
}

.sticky-cta span,
.sticky-cta strong {
  font-family: "Montserrat", sans-serif;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 420ms ease, transform 420ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .hero-layout,
  .offer-shell {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .container {
    width: min(var(--container), calc(100% - 1.2rem));
  }

  .section {
    padding: 4.2rem 0;
  }

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

  .brand-logo {
    width: 142px;
  }

  .brand-copy span {
    display: none;
  }

  .topbar .btn {
    display: none;
  }

  .trust-grid,
  .cards-3,
  .cards-4,
  .steps {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    font-size: clamp(2rem, 11vw, 3rem);
    max-width: 10.5ch;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn,
  .btn-lg {
    width: 100%;
  }

  .footer-inner {
    flex-direction: column;
  }

  .footer-meta {
    align-items: flex-start;
  }

  .sticky-cta {
    display: flex;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
