:root {
  --primary-950: #031433;
  --primary-900: #072253;
  --primary-800: #0a2f72;
  --primary-700: #10459b;
  --sky-500: #1ca8fb;
  --sky-300: #70d0ff;
  --white: #ffffff;
  --text-900: #0c1b3a;
  --text-700: #314766;
  --text-500: #6b7d97;
  --line: #d7e5f7;
  --soft: #f3f8ff;
  --shadow-xl: 0 26px 56px rgba(6, 33, 89, 0.2);
  --shadow-lg: 0 16px 34px rgba(9, 37, 95, 0.13);
  --shadow-sm: 0 8px 20px rgba(8, 35, 89, 0.08);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 14px;
  --container: min(1200px, 92%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", "Inter", sans-serif;
  color: var(--text-900);
  background:
    radial-gradient(circle at 100% 0, #e6f6ff 0%, #eef6ff 35%, #f7fbff 60%),
    linear-gradient(180deg, #fbfdff, #f2f8ff);
  line-height: 1.65;
}

body.nav-open {
  overflow: hidden;
}

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

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

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  padding: 92px 0;
}

.section-alt {
  background: linear-gradient(180deg, #f2f8ff 0%, #f7fbff 100%);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-heading h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  line-height: 1.18;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.section-heading p {
  color: var(--text-700);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary-700);
  background: #dff0ff;
  border: 1px solid #c6e6ff;
  border-radius: 999px;
  padding: 8px 13px;
  margin-bottom: 16px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(4, 22, 56, 0.88);
  border-bottom: 1px solid rgba(170, 202, 246, 0.2);
  backdrop-filter: blur(12px);
}

.nav {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0;
  color: var(--white);
  z-index: 2;
}

.brand-badge {
  width: 43px;
  height: 43px;
  border-radius: 12px;
  background: linear-gradient(140deg, #28b5ff, #0f5fcf);
  display: grid;
  place-items: center;
  font-weight: 700;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.3);
}

.brand-logo {
  width: 126px;
  height: auto;
  object-fit: contain;
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: #e7f2ff;
}

.nav-links a {
  font-size: 0.96rem;
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--sky-300);
  transition: transform 0.26s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 11px 17px;
  border-radius: 12px;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
  background: linear-gradient(130deg, #1fb0ff, #0f5fd0);
  box-shadow: var(--shadow-sm);
}

.menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(162, 197, 242, 0.35);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 1.3rem;
  z-index: 2;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(1, 10, 30, 0.56);
  backdrop-filter: blur(2px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 998;
}

.nav-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: 12px;
  padding: 0 22px;
  font-weight: 500;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, #1eaefe, #0a63d4);
  box-shadow: var(--shadow-lg);
}

.btn-light {
  color: #04245d;
  background: rgba(255, 255, 255, 0.96);
}

.hero {
  position: relative;
  min-height: 92vh;
  color: var(--white);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  z-index: -2;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(115deg, rgba(2, 16, 45, 0.9), rgba(8, 47, 114, 0.63));
}

.hero .container {
  padding-top: 82px;
  padding-bottom: 76px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  align-items: center;
}

.hero-content h2 {
  font-size: clamp(2.1rem, 6.2vw, 4.5rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.hero-content p {
  font-size: clamp(1rem, 2.2vw, 1.14rem);
  color: #ddecff;
  max-width: 56ch;
}

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

.hero-stat-grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.hero-stat {
  border: 1px solid rgba(203, 226, 255, 0.36);
  border-radius: 14px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
}

.hero-stat strong {
  display: block;
  font-size: 1.2rem;
}

.hero-stack {
  display: grid;
  gap: 16px;
}

.hero-card {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(203, 228, 255, 0.34);
  border-radius: var(--radius-lg);
  padding: 16px;
  backdrop-filter: blur(8px);
}

.hero-card img {
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 24px;
}

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

.card {
  background: var(--white);
  border: 1px solid #dbe9fa;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.card-media {
  height: 230px;
  object-fit: cover;
}

.card-body {
  padding: 21px;
}

.card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  line-height: 1.35;
}

.card p {
  color: var(--text-700);
  font-size: 0.95rem;
}

.feature {
  background: linear-gradient(170deg, #ffffff, #f5faff);
  border: 1px solid #dceaf9;
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.feature h3 {
  margin-bottom: 8px;
}

.process {
  counter-reset: steps;
}

.step {
  background: linear-gradient(165deg, #fff, #f3f8ff);
  border-radius: var(--radius-lg);
  border: 1px solid #dbe8f8;
  padding: 22px;
}

.step::before {
  counter-increment: steps;
  content: counter(steps, decimal-leading-zero);
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 12px;
  border-radius: 999px;
  color: var(--primary-700);
  font-weight: 600;
  background: #dff0ff;
}

.media-wall {
  display: grid;
  gap: 16px;
  grid-template-columns: 1.1fr 1fr 1fr;
  grid-template-areas:
    "large a b"
    "large c d";
}

.media-wall .tile {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.media-wall .tile img {
  height: 100%;
  min-height: 180px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.media-wall .tile:hover img {
  transform: scale(1.04);
}

.tile-large { grid-area: large; }
.tile-a { grid-area: a; }
.tile-b { grid-area: b; }
.tile-c { grid-area: c; }
.tile-d { grid-area: d; }

.kicker-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.testimonial {
  background: #fff;
  border: 1px solid #dce9f9;
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-sm);
}

.testimonial .stars {
  color: #f5b50a;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.testimonial p {
  color: var(--text-700);
  margin-bottom: 12px;
}

.testimonial strong {
  display: block;
}

.faq {
  display: grid;
  gap: 12px;
}

.faq details {
  background: #fff;
  border: 1px solid #dbe8fa;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: var(--shadow-sm);
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  position: relative;
  padding-right: 20px;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
}

.faq details[open] summary::after {
  content: "−";
}

.faq p {
  margin-top: 8px;
  color: var(--text-700);
}

.cta-band {
  background: linear-gradient(120deg, #062664 0%, #0a48ad 50%, #1a9ff2 100%);
  border-radius: var(--radius-xl);
  padding: 40px;
  color: var(--white);
  display: grid;
  grid-template-columns: 1.2fr auto;
  gap: 20px;
  align-items: center;
  box-shadow: var(--shadow-xl);
}

.cta-band p {
  color: #dcecff;
}

.contact-preview,
.form-card {
  background: #fff;
  border: 1px solid #dce8f8;
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.contact-list {
  display: grid;
  gap: 11px;
}

.contact-list a,
.contact-list p {
  color: var(--text-700);
}

.page-hero {
  min-height: 48vh;
  position: relative;
  color: #fff;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 120px 0 52px;
}

.page-hero img {
  position: absolute;
  inset: 0;
  object-fit: cover;
  z-index: -2;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(120deg, rgba(2, 15, 39, 0.88), rgba(10, 51, 118, 0.56));
}

.page-hero h2 {
  font-size: clamp(2rem, 4.8vw, 3.25rem);
  line-height: 1.12;
  max-width: 20ch;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
}

.split-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.stats {
  margin-top: 24px;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stat {
  background: #f3f8ff;
  border: 1px solid #dbe8f7;
  border-radius: 12px;
  text-align: center;
  padding: 12px;
}

.stat strong {
  display: block;
  color: var(--primary-700);
  font-size: 1.3rem;
}

.form-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr 1fr;
}

label {
  display: block;
  font-size: 0.92rem;
  color: var(--text-700);
  margin-bottom: 6px;
  font-weight: 500;
}

input,
textarea {
  width: 100%;
  border: 1px solid #ccddf2;
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
  color: var(--text-900);
  background: #fbfdff;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: #71bbff;
  box-shadow: 0 0 0 4px rgba(82, 170, 255, 0.16);
}

.map-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid #d2e3f8;
  box-shadow: var(--shadow-sm);
}

.map-wrap iframe {
  border: 0;
  width: 100%;
  height: 360px;
}

.footer {
  margin-top: 86px;
  background: #041a42;
  color: #cfe3ff;
  padding: 44px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 22px;
}

.footer h3,
.footer h4 {
  color: #fff;
  margin-bottom: 10px;
}

.footer-logo {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  object-fit: cover;
  margin-bottom: 10px;
}

.footer ul {
  list-style: none;
  display: grid;
  gap: 8px;
}

.copy {
  margin-top: 24px;
  border-top: 1px solid rgba(160, 196, 245, 0.22);
  padding-top: 14px;
  font-size: 0.88rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero-grid,
  .grid-3,
  .grid-4,
  .split,
  .kicker-grid,
  .footer-grid,
  .cta-band {
    grid-template-columns: 1fr;
  }

  .hero-stack {
    grid-template-columns: 1fr 1fr;
  }

  .media-wall {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "large large"
      "a b"
      "c d";
  }
}

@media (max-width: 980px) {
  .menu-btn {
    display: inline-grid;
    place-items: center;
  }

  .nav-cta {
    display: none;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: min(82vw, 320px);
    height: 100dvh;
    background: linear-gradient(170deg, #08235a 0%, #061a44 100%);
    border-left: 1px solid rgba(157, 196, 248, 0.26);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 92px 22px 22px;
    transform: translateX(100%);
    transition: transform 0.32s ease;
    z-index: 999;
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-links a {
    width: 100%;
    padding: 13px 2px;
    border-bottom: 1px solid rgba(152, 192, 245, 0.24);
  }

  .hero-stat-grid,
  .grid-2,
  .stats,
  .form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .section {
    padding: 74px 0;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-stack {
    grid-template-columns: 1fr;
  }

  .hero .container {
    padding-top: 64px;
  }

  .brand-logo {
    width: 102px;
    height: auto;
  }

  .cta-band {
    padding: 30px;
  }

  .media-wall {
    grid-template-columns: 1fr;
    grid-template-areas:
      "large"
      "a"
      "b"
      "c"
      "d";
  }
}
