:root {
  --bg: #f5fbfd;
  --navy: #061a24;
  --navy-2: #0b2b3a;
  --cyan: #18b9dc;
  --cyan-2: #70ddf2;
  --white: #ffffff;
  --text: #17313d;
  --muted: #607782;
  --line: rgba(13, 64, 82, .14);
  --shadow: 0 22px 60px rgba(4, 29, 40, .16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(1120px, calc(100% - 36px)); margin: 0 auto; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(6, 26, 36, .92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.topbar-inner { min-height: 82px; display: flex; align-items: center; gap: 28px; }
.brand { width: 150px; }
.brand img { width: 100%; height: 66px; object-fit: contain; object-position: left center; }
.nav { display: flex; gap: 26px; color: #d8edf3; font-weight: 600; font-size: 14px; }
.nav a:hover { color: var(--cyan-2); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--cyan), #0a8fb5);
  color: white;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(24,185,220,.25);
  transition: transform .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(24,185,220,.34); }
.button-small { min-height: 42px; padding: 0 18px; border-radius: 11px; font-size: 14px; }
.button-ghost { background: transparent; border: 1px solid rgba(255,255,255,.24); box-shadow: none; }

.hero {
  position: relative;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 80% 30%, rgba(24,185,220,.22), transparent 34%),
    linear-gradient(135deg, #04151e 0%, #0a2e3d 60%, #073449 100%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 80px;
  background: linear-gradient(to top, rgba(245,251,253,.08), transparent);
}
.hero-grid { min-height: 690px; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 56px; padding: 72px 0; }
.eyebrow { display: inline-block; color: var(--cyan-2); text-transform: uppercase; letter-spacing: .14em; font-size: 12px; font-weight: 800; }
h1, h2, h3 { margin: 0; line-height: 1.08; }
h1, h2 { font-family: "Barlow Condensed", Impact, sans-serif; text-transform: uppercase; letter-spacing: -.02em; }
h1 { margin-top: 16px; font-size: clamp(52px, 7vw, 88px); }
h1 span { color: var(--cyan-2); }
.lead { max-width: 680px; margin: 24px 0 0; font-size: 19px; color: #d7e8ed; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.hero-points { display: flex; gap: 20px; flex-wrap: wrap; padding: 0; margin: 28px 0 0; list-style: none; color: #b8d1d9; font-size: 14px; }
.hero-points li::before { content: "✓"; color: var(--cyan-2); font-weight: 900; margin-right: 7px; }
.logo-card {
  position: relative;
  padding: 28px;
  border-radius: 32px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 35px 80px rgba(0,0,0,.28);
  transform: none;
}
.logo-card::before {
  content: "";
  position: absolute;
  inset: -14px;
  border: 1px solid rgba(112,221,242,.22);
  border-radius: 40px;
}

.section { padding: 100px 0; }
.section-heading { max-width: 720px; }
h2 { margin-top: 12px; font-size: clamp(38px, 5vw, 58px); color: var(--navy); }
.section-heading p, .muted { color: var(--muted); font-size: 17px; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 44px; }
.card { background: white; padding: 30px; border: 1px solid var(--line); border-radius: 22px; box-shadow: 0 12px 34px rgba(7,47,63,.07); }
.card .icon { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 15px; background: #e9f9fc; font-size: 25px; }
.card h3 { margin-top: 22px; font-size: 22px; color: var(--navy); }
.card p { color: var(--muted); }

.section-dark { background: var(--navy); color: white; }
.section-dark h2 { color: white; }
.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: center; }
.checklist { display: grid; gap: 14px; }
.checklist div { display: grid; grid-template-columns: 54px 1fr; align-items: center; gap: 16px; padding: 18px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.09); border-radius: 16px; }
.checklist strong { color: var(--cyan-2); font-family: "Barlow Condensed", sans-serif; font-size: 28px; }

.contact-section { background: linear-gradient(180deg, #f5fbfd 0%, #e9f7fb 100%); }
.contact-card { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: center; background: white; border: 1px solid var(--line); border-radius: 28px; padding: 46px; box-shadow: var(--shadow); }
.contact-card p { color: var(--muted); }
.contact-links { display: grid; gap: 12px; }
.contact-links a, .contact-links div { display: flex; justify-content: space-between; gap: 20px; padding: 18px 20px; border-radius: 14px; background: #f4fafc; border: 1px solid var(--line); }
.contact-links span { color: var(--muted); }
.contact-links strong { text-align: right; color: var(--navy); }

footer { background: #031018; color: #9db5be; }
.footer-inner { min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 20px; font-size: 14px; }

@media (max-width: 900px) {
  .nav { display: none; }
  .topbar-inner { justify-content: space-between; }
  .hero-grid, .split, .contact-card { grid-template-columns: 1fr; }
  .hero-grid { padding: 58px 0 74px; }
  .hero-copy { order: 1; }
  .hero-visual { order: 2; max-width: 620px; }
  .cards { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .button-small { padding: 0 12px; }
  .hero-grid { min-height: auto; gap: 34px; }
  h1 { font-size: 50px; }
  .section { padding: 72px 0; }
  .contact-card { padding: 28px 22px; }
  .contact-links a, .contact-links div { flex-direction: column; }
  .contact-links strong { text-align: left; }
  .footer-inner { flex-direction: column; justify-content: center; text-align: center; padding: 22px 0; }
}

.promo-strip {
  background: linear-gradient(135deg, #16b8da, #087f9f);
  color: white;
}
.promo-strip-inner {
  min-height: 118px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-top: 22px;
  padding-bottom: 22px;
}
.promo-strip-inner > div { display: grid; gap: 4px; }
.promo-label { font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .13em; color: #d8f9ff; }
.promo-strip strong { font-size: clamp(18px, 2.2vw, 25px); line-height: 1.3; max-width: 760px; }
.button-light { background: white; color: var(--navy); box-shadow: 0 12px 28px rgba(0,0,0,.14); white-space: nowrap; }

.woma-section { background: #eaf8fb; }
.woma-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.woma-copy p { color: var(--muted); font-size: 17px; }
.woma-benefits { display: grid; gap: 16px; }
.woma-benefits article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(7,47,63,.07);
}
.woma-benefits article > span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: #dff6fb;
  color: #087f9f;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 24px;
  font-weight: 800;
}
.woma-benefits h3 { color: var(--navy); font-size: 21px; }
.woma-benefits p { margin: 7px 0 0; color: var(--muted); }

@media (max-width: 900px) {
  .promo-strip-inner { align-items: flex-start; flex-direction: column; }
  .woma-grid { grid-template-columns: 1fr; gap: 36px; }
}
