:root {
  --white: #ffffff;
  --black: #000000;
  --blue-light: #1c99dc;
  --blue-dark: #0f6cad;
  --ink-900: #07141f;
  --ink-700: #1a3345;
  --ink-500: #3b5569;
  --surface: #f3f9fc;
  --surface-2: #e9f4fb;
  --border: #c7ddea;
  --radius-lg: 24px;
  --radius-md: 16px;
  --shadow: 0 18px 42px rgba(6, 25, 39, 0.14);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  font-family: "Barlow", sans-serif;
  color: var(--ink-900);
  line-height: 1.6;
  background:
    radial-gradient(circle at 10% -10%, rgba(28, 153, 220, 0.18), transparent 32%),
    radial-gradient(circle at 90% 5%, rgba(15, 108, 173, 0.15), transparent 34%),
    linear-gradient(180deg, #f7fbfe 0%, #f2f8fc 24%, #ffffff 100%);
}

h1,
h2,
h3 {
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
}

h1 {
  font-size: clamp(2rem, 4.8vw, 4rem);
  max-width: 16ch;
}

h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.45rem);
  max-width: 26ch;
}

h3 {
  font-size: clamp(1.05rem, 2.1vw, 1.3rem);
}

p {
  margin: 0 0 14px;
  color: var(--ink-700);
  font-size: 1.05rem;
}

a {
  color: inherit;
}

.container {
  width: min(1140px, calc(100% - 42px));
  margin: 0 auto;
}


.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 118px;
  height: auto;
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-weight: 600;
}

.top-nav a {
  text-decoration: none;
  color: var(--ink-700);
  transition: color 0.2s ease;
}

.top-nav a:hover {
  color: var(--blue-dark);
}

.hero {
  min-height: clamp(560px, 86vh, 840px);
  position: relative;
  display: flex;
  align-items: center;
  background-image: url("bannerherosection.webp");
  background-size: cover;
  background-position: top;
  isolation: isolate;
  min-height: 100vh;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.8) 8%, rgba(0, 0, 0, 0.5) 46%, rgba(0, 0, 0, 0.22) 100%),
    linear-gradient(180deg, rgba(7, 20, 31, 0.15), rgba(7, 20, 31, 0.35));
  z-index: -1;
  min-height: 100vh;
}

.hero-content {
  color: var(--white);
  padding: 72px 0 64px;
}

.kicker {
  display: inline-block;
  margin: 0 0 16px;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: #bbdef4;
}

.hero-content p {
  color: #d8eaf8;
  max-width: 64ch;
}

.hero-subheadline {
  font-size: 1.12rem;
  margin-bottom: 26px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 700;
  padding: 13px 22px;
  min-height: 48px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue-light), var(--blue-dark));
  color: var(--white);
  box-shadow: 0 10px 24px rgba(28, 153, 220, 0.35);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink-900);
  border: 1px solid rgba(12, 55, 86, 0.24);
  box-shadow: 0 8px 20px rgba(6, 25, 39, 0.12);
}

.btn-secondary:hover {
  background: var(--white);
}

.hero .btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow: none;
}

.hero .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}

.hero-support {
  font-size: 0.98rem;
  color: #c8def0;
}

.section {
  padding: 84px 0;
  position: relative;
}

.section-alt {
  background:
    linear-gradient(180deg, rgba(232, 245, 252, 0.55), rgba(243, 249, 252, 0.35));
}

.section-closing {
  margin-top: 22px;
  font-size: 1.08rem;
  color: var(--ink-900);
  font-weight: 500;
}

.grid {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.cards-stats {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cards-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cards-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.cards-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: 0 12px 24px rgba(12, 68, 107, 0.09);
}

.card p {
  margin-bottom: 0;
  font-size: 1rem;
}

.stat-card h3 {
  color: var(--blue-dark);
  margin-bottom: 8px;
}

.stat-card span {
  display: inline-block;
  margin-top: 10px;
  color: var(--ink-500);
  font-size: 0.9rem;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 18px 0;
  display: grid;
  gap: 11px;
}

.check-list li {
  position: relative;
  padding-left: 32px;
  font-weight: 600;
  color: var(--ink-700);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--blue-light), var(--blue-dark));
  box-shadow: 0 2px 8px rgba(15, 108, 173, 0.35);
}

.check-list li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 13px;
  width: 7px;
  height: 4px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

.two-columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cta-final {
  background:
    radial-gradient(circle at 20% 25%, rgba(28, 153, 220, 0.16), transparent 48%),
    radial-gradient(circle at 80% 75%, rgba(15, 108, 173, 0.16), transparent 46%),
    #f5fbff;
}

.site-footer {
  background: #04131e;
  color: #d5e8f8;
  padding: 64px 0 54px;
}

.site-footer h2 {
  color: var(--white);
}

.site-footer p,
.site-footer a {
  color: #d5e8f8;
}

.site-footer a:hover {
  color: #8ccbf2;
}

.copyright {
  margin-top: 20px;
  color: #8fb7d4;
  font-size: 0.95rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .cards-5,
  .cards-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cards-3,
  .cards-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .container {
    width: min(1140px, calc(100% - 28px));
  }

  .top-nav {
    display: none;
  }

  .hero {
    background-image: url("bannerherosectionmobile.webp");
    background-position: center top;
  }

  .hero-subheadline {
    margin-bottom: 110px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.78) 16%, rgba(0, 0, 0, 0.45) 55%, rgba(0, 0, 0, 0.58) 100%),
      linear-gradient(180deg, rgba(7, 20, 31, 0.24), rgba(7, 20, 31, 0.5));
  }

  .hero-content {
    padding: 0;
  }

  h1 {
    max-width: 100%;
  }

  .btn {
    width: 100%;
  }

  .section {
    padding: 68px 0;
  }

  .cards-5,
  .cards-4,
  .cards-3,
  .cards-stats,
  .two-columns {
    grid-template-columns: 1fr;
  }
}
