:root {
  --ink: #071322;
  --navy: #071a35;
  --deep: #041023;
  --blue: #0b46d8;
  --green: #0abf7a;
  --cyan: #3bd8ff;
  --gold: #f7c948;
  --muted: #637083;
  --line: #dce5ef;
  --soft: #f4f7fb;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(7, 19, 34, .14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid rgba(7, 19, 34, .08);
  backdrop-filter: blur(14px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  color: var(--navy);
}

.brand img {
  width: 148px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: .95rem;
  font-weight: 700;
}

.main-nav a {
  color: #1d2b3d;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--blue);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--navy);
  font-size: 1.5rem;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border: 0;
  border-radius: 8px;
  color: var(--white);
  font-weight: 800;
  line-height: 1.2;
  background: linear-gradient(135deg, var(--blue), var(--green));
  box-shadow: 0 12px 28px rgba(11, 70, 216, .22);
  cursor: pointer;
}

.button.secondary {
  color: var(--navy);
  background: var(--white);
  box-shadow: none;
}

.button.outline {
  color: var(--blue);
  background: transparent;
  border: 1px solid rgba(11, 70, 216, .28);
  box-shadow: none;
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(4, 16, 35, .94) 0%, rgba(4, 16, 35, .82) 42%, rgba(4, 16, 35, .28) 100%),
    url("assets/images/hero-banner.webp") center / cover no-repeat;
}

.hero .container {
  min-height: 690px;
  display: flex;
  align-items: center;
  padding: 80px 0 68px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: .85rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: inherit;
  line-height: 1.12;
}

h1 {
  max-width: 720px;
  font-size: clamp(2.7rem, 5vw, 5.8rem);
  letter-spacing: 0;
}

h2 {
  font-size: clamp(2rem, 3.2vw, 3.4rem);
  letter-spacing: 0;
}

h3 {
  font-size: 1.25rem;
}

p {
  margin: 0;
}

.lead {
  max-width: 680px;
  margin-top: 24px;
  color: rgba(255, 255, 255, .82);
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.section {
  padding: 84px 0;
}

.section.tight {
  padding: 56px 0;
}

.section.dark {
  color: var(--white);
  background: var(--navy);
}

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

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

.section-head p {
  margin-top: 16px;
  color: var(--muted);
}

.dark .section-head p,
.dark .muted {
  color: rgba(255, 255, 255, .72);
}

.stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin: 32px 0 0;
}

.stat-card,
.card,
.price-card,
.feature-card,
.testimonial,
.contact-card,
.info-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.stat-card {
  min-height: 132px;
  padding: 24px 16px;
  text-align: center;
}

.stat-card strong {
  display: block;
  color: var(--blue);
  font-size: clamp(1.6rem, 2vw, 2.35rem);
  line-height: 1.05;
}

.stat-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 700;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 500px);
  align-items: center;
  gap: 48px;
}

.split.reverse {
  grid-template-columns: minmax(300px, 500px) minmax(0, 1fr);
}

.split-copy p + p {
  margin-top: 16px;
}

.media-frame {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: var(--navy);
  aspect-ratio: 4 / 3;
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 1fr);
  align-items: stretch;
  overflow: hidden;
  margin-bottom: 48px;
  border-radius: 8px;
  background: var(--navy);
  box-shadow: var(--shadow);
}

.feature-showcase.reverse {
  margin: 56px 0 0;
}

.feature-showcase-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 360px;
  padding: 42px;
  color: var(--white);
}

.feature-showcase-copy h2 {
  max-width: 620px;
  margin-bottom: 16px;
  font-size: clamp(1.8rem, 2.7vw, 2.6rem);
}

.feature-showcase-copy p {
  max-width: 640px;
  color: rgba(255, 255, 255, .78);
}

.feature-showcase-copy p + p {
  margin-top: 14px;
}

.feature-showcase-media {
  min-height: 360px;
  background: var(--navy);
}

.feature-showcase-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.grid {
  display: grid;
  gap: 22px;
}

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

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

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

.price-card {
  position: relative;
  min-height: 330px;
  padding: 28px;
}

.info-card {
  padding: 28px;
}

.price-card.featured {
  color: var(--white);
  border-color: transparent;
  background: linear-gradient(145deg, var(--blue), var(--green));
}

.price {
  margin: 18px 0;
  font-size: 2.7rem;
  font-weight: 900;
}

.price small {
  color: inherit;
  font-size: .95rem;
  font-weight: 700;
}

.list {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.check {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
  font-size: .78rem;
  font-weight: 900;
}

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

.feature-card img {
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
}

.feature-card p,
.card p,
.info-card p,
.testimonial p {
  margin-top: 10px;
  color: var(--muted);
}

.table-wrap {
  overflow-x: auto;
  min-height: 360px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

th,
td {
  padding: 17px 18px;
  border-bottom: 1px solid var(--line);
  text-align: center;
}

th:first-child,
td:first-child {
  text-align: left;
  font-weight: 800;
}

thead th {
  color: var(--white);
  background: var(--navy);
}

thead th:nth-child(2) {
  background: linear-gradient(135deg, var(--blue), var(--green));
}

.yes {
  color: var(--green);
  font-weight: 900;
}

.no {
  color: #b7c0cc;
  font-weight: 900;
}

.testimonial {
  padding: 26px;
}

.stars {
  color: var(--gold);
  font-weight: 900;
  letter-spacing: .05em;
}

.accordion {
  display: grid;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px;
  border: 0;
  color: var(--ink);
  background: transparent;
  font: inherit;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.faq-answer {
  display: none;
  padding: 0 20px 20px;
  color: var(--muted);
}

.faq-item.open .faq-answer {
  display: block;
}

.cta-band {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--green));
}

.cta-band .container {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.contact-card {
  padding: 28px;
}

.form {
  display: grid;
  gap: 14px;
}

.form-honeypot {
  display: none;
}

.form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-weight: 700;
}

.form input,
.form textarea,
.form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
}

.form textarea {
  min-height: 130px;
  resize: vertical;
}

.form-status {
  min-height: 1.4em;
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.page-hero {
  color: var(--white);
  background: linear-gradient(135deg, #041023, #0a3267 70%, #046a52);
}

.page-hero .container {
  padding: 78px 0;
}

.page-hero p {
  max-width: 760px;
  margin-top: 16px;
  color: rgba(255, 255, 255, .78);
  font-size: 1.08rem;
}

.policy {
  max-width: 920px;
}

.policy h2 {
  margin-top: 34px;
  font-size: 1.65rem;
}

.policy p,
.policy li {
  color: var(--muted);
}

.policy p {
  margin-top: 12px;
}

.policy ul {
  display: grid;
  gap: 10px;
}

.site-footer {
  color: rgba(255, 255, 255, .74);
  background: var(--deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 32px;
  padding: 58px 0;
}

.site-footer h3 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: 1.05rem;
}

.site-footer a:hover {
  color: var(--white);
}

.footer-links {
  display: grid;
  gap: 10px;
}

.copyright {
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: .9rem;
}

@media (max-width: 960px) {
  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .main-nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 16px 18px;
    border-bottom: 1px solid var(--line);
    background: var(--white);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 13px 8px;
  }

  .nav-cta {
    display: none;
  }

  .hero .container,
  .split,
  .split.reverse,
  .feature-showcase,
  .contact-grid,
  .cta-band .container {
    grid-template-columns: 1fr;
  }

  .feature-showcase.reverse .feature-showcase-media {
    order: 2;
  }

  .feature-showcase.reverse .feature-showcase-copy {
    order: 1;
  }

  .hero .container {
    min-height: 610px;
    padding: 64px 0;
  }

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

  .grid.three,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .brand img {
    width: 124px;
  }

  h1 {
    font-size: 2.45rem;
  }

  .section {
    padding: 62px 0;
  }

  .feature-showcase {
    margin-bottom: 38px;
  }

  .feature-showcase.reverse {
    margin-top: 42px;
  }

  .feature-showcase-copy {
    min-height: auto;
    padding: 28px;
  }

  .feature-showcase-media {
    min-height: auto;
    aspect-ratio: 4 / 3;
  }

  .stats,
  .grid.two,
  .grid.three,
  .grid.four,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-actions,
  .cta-band .container {
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .hero {
    background-position: 68% center;
  }
}
