:root {
  --navy: #071B3A;
  --navy2: #0B2A55;
  --teal: #12C8DF;
  --teal2: #1AD4EA;
  --ink: #1B2430;
  --muted: #5E6878;
  --soft: #F5F8FB;
  --line: rgba(255,255,255,.12);
  --line-dark: #D8DFE6;
  --white: #FFFFFF;
  --radius: 28px;
  --shadow: 0 20px 50px rgba(7, 27, 58, .18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.55;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.wrap {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
}

header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(7,27,58,.08);
}

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

.brand {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}

.brand img {
  width: 235px;
  height: auto;
  object-fit: contain;
}

nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
}

nav a:hover { color: var(--navy); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 23px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal), var(--teal2));
  color: #051e30;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(18,200,223,.24);
  white-space: nowrap;
  border: 1px solid rgba(255,255,255,.35);
  transition: .2s ease;
}
.button:hover { transform: translateY(-1px); }
.button.alt {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.28);
  box-shadow: none;
}

.hero {
  position: relative;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 78% 20%, rgba(24, 194, 221, .22), transparent 28%),
    linear-gradient(135deg, #04162F 0%, #082855 55%, #031224 100%);
  padding: 88px 0 82px;
}

.hero:before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(to bottom, black, rgba(0,0,0,.65));
  opacity: .65;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #BDF6FF;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.eyebrow:before {
  content: '';
  width: 38px;
  height: 2px;
  background: var(--teal);
}

h1, h2, h3 { margin: 0; line-height: 1.06; }
h1 {
  font-size: clamp(48px, 6vw, 78px);
  letter-spacing: -.055em;
  max-width: 700px;
}

.hero-copy p {
  font-size: 18px;
  color: rgba(255,255,255,.82);
  max-width: 680px;
  margin: 24px 0 30px;
}

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

.hero-card {
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 28px;
  padding: 30px;
  box-shadow: var(--shadow);
}

.hero-card-head {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 18px;
  align-items: center;
  margin-bottom: 20px;
}

.hero-icon-box {
  width: 82px;
  height: 82px;
  border-radius: 22px;
  background: #fff;
  padding: 11px;
  display: grid;
  place-items: center;
  box-shadow: 0 14px 34px rgba(0,0,0,.10);
}
.hero-icon-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-card h3 {
  font-size: 27px;
  color: #fff;
  margin-bottom: 6px;
}

.hero-card .sub {
  color: rgba(255,255,255,.75);
  font-weight: 600;
  font-size: 14px;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: grid;
  gap: 14px;
  color: rgba(255,255,255,.90);
  font-size: 16px;
}
.checklist li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.checklist li:before {
  content: '✓';
  color: var(--teal2);
  font-weight: 900;
  flex: 0 0 auto;
}

.pills {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.pills span {
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: #fff;
  font-weight: 700;
  text-align: center;
}

section { padding: 88px 0; }

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-label {
  color: var(--teal);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

h2 {
  font-size: clamp(34px, 4vw, 56px);
  color: var(--navy);
  letter-spacing: -.04em;
  margin-bottom: 12px;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.card {
  background: #fff;
  border: 1px solid #E0E6ED;
  border-radius: 24px;
  padding: 26px;
  box-shadow: 0 12px 36px rgba(7,27,58,.06);
}

.num {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: #F0F7FA;
  color: var(--teal);
  font-weight: 900;
  margin-bottom: 16px;
}

.card h3 {
  color: var(--navy);
  font-size: 20px;
  margin-bottom: 10px;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.offer { background: #F6F9FC; }
.offer-grid,
.about-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 28px;
  align-items: stretch;
}

.panel {
  border-radius: 28px;
  padding: 34px;
  background: #fff;
  border: 1px solid #E0E6ED;
  box-shadow: 0 16px 42px rgba(7,27,58,.08);
}

.panel.dark {
  background: linear-gradient(135deg, var(--navy), var(--navy2));
  color: #fff;
  border: none;
}
.panel.dark h2 { color: #fff; }
.panel.dark p { color: rgba(255,255,255,.8); margin: 18px 0 28px; }

.included {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 16px;
}

.included div,
.about-pills div {
  background: #F6F9FC;
  border: 1px solid #E0E6ED;
  border-radius: 16px;
  padding: 14px;
  font-weight: 700;
  color: var(--navy);
  font-size: 14px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  counter-reset: step;
}
.step {
  border: 1px solid #E0E6ED;
  border-radius: 24px;
  padding: 28px;
  background: #fff;
}
.step:before {
  counter-increment: step;
  content: '0' counter(step);
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: var(--navy);
  color: #fff;
  font-weight: 900;
  margin-bottom: 18px;
}
.step h3 {
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 10px;
}
.step p { margin: 0; color: var(--muted); }

.faq {
  background: #fff;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.faq-item {
  border: 1px solid #E0E6ED;
  border-radius: 22px;
  padding: 24px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(7,27,58,.05);
}

.faq-item h3 {
  color: var(--navy);
  font-size: 19px;
  margin-bottom: 10px;
}

.faq-item p {
  margin: 0;
  color: var(--muted);
}

.about {
  background: linear-gradient(180deg, #fff, #F6F9FC);
}
.about-card {
  background: #fff;
  border: 1px solid #E0E6ED;
  border-radius: 28px;
  padding: 32px;
  box-shadow: 0 16px 42px rgba(7,27,58,.08);
}
.about-card h3 {
  font-size: 26px;
  color: var(--navy);
}
.about-card p {
  color: var(--muted);
  margin-top: 18px;
  margin-bottom: 0;
}
.about-pills {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 24px;
}

.contact {
  background: var(--navy);
  color: #fff;
  text-align: center;
}
.contact h2 { color: #fff; }
.contact p {
  max-width: 620px;
  margin: 18px auto 28px;
  font-size: 18px;
  color: rgba(255,255,255,.76);
}

.page-hero {
  background:
    radial-gradient(circle at 80% 20%, rgba(24, 194, 221, .20), transparent 30%),
    linear-gradient(135deg, #04162F 0%, #082855 55%, #031224 100%);
  color: #fff;
  padding: 80px 0;
}

.page-hero h1 {
  max-width: 850px;
}

.page-hero p {
  color: rgba(255,255,255,.78);
  font-size: 18px;
  max-width: 760px;
  margin: 20px 0 0;
}

.content-page {
  padding: 76px 0;
}

.content-card {
  background: #fff;
  border: 1px solid #E0E6ED;
  border-radius: 28px;
  padding: 36px;
  box-shadow: 0 16px 42px rgba(7,27,58,.08);
  max-width: 920px;
}

.content-card h2 {
  font-size: 30px;
  margin-top: 36px;
}

.content-card h2:first-child {
  margin-top: 0;
}

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

.content-card ul {
  padding-left: 22px;
}

footer {
  background: #041126;
  color: rgba(255,255,255,.70);
  padding: 46px 0 24px;
  font-size: 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 1fr;
  gap: 28px;
  margin-bottom: 30px;
}

.footer-logo img {
  width: 220px;
  margin-bottom: 14px;
}

.footer-grid h3 {
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .14em;
  margin-bottom: 12px;
}

.footer-grid a {
  display: block;
  color: rgba(255,255,255,.70);
  margin: 9px 0;
}

.footer-grid a:hover {
  color: var(--teal);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 1020px) {
  .hero-grid,
  .cards,
  .offer-grid,
  .about-grid,
  .steps,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .cards { grid-template-columns: repeat(2, 1fr); }
  nav { gap: 20px; }
  .brand img { width: 220px; }
}

@media (max-width: 780px) {
  .nav {
    min-height: 74px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 10px 0;
  }
  nav {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }
  .brand img { width: 200px; }
  .hero { padding-top: 70px; }
  .faq-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .wrap { width: min(100% - 26px, 1140px); }
  .cards,
  .included,
  .pills,
  .about-pills { grid-template-columns: 1fr; }
  .hero-card-head { grid-template-columns: 1fr; }
  .hero-icon-box { width: 76px; height: 76px; }
  .brand img { width: 185px; }
  h1 { font-size: clamp(42px, 13vw, 64px); }
  section { padding: 68px 0; }
  .button { width: 100%; }
  .hero-actions { flex-direction: column; }
  .content-card { padding: 26px; }
}