:root {
  --navy: #0b2447;
  --blue: #1f6feb;
  --teal: #0fb6ad;
  --gold: #ffd23f;
  --coral: #ff6b6b;
  --bg-sky: #eaf6fd;
  --bg-cream: #fdf8e8;
  --text: #0b2447;
  --text-muted: #5b6b79;
  --white: #ffffff;
  --radius: 14px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, .logo-text, .fl-1, .fl-2 {
  font-family: "Poppins", "Inter", sans-serif;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

img, svg { display: block; }

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

ul { list-style: none; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--gold);
  color: var(--navy);
  font-size: 0.85rem;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 24px;
  gap: 16px;
}

.topbar-inner p { font-weight: 600; }

.social-row { display: flex; gap: 10px; }

.social-row a {
  width: 26px; height: 26px;
  display: flex; align-items: center; justify-content: center;
  background: var(--navy);
  border-radius: 50%;
}

.social-row svg {
  width: 14px; height: 14px;
  stroke: var(--white);
  fill: none;
  stroke-width: 1.6;
}

/* ---------- Header ---------- */
.site-header {
  background: var(--white);
  box-shadow: 0 2px 16px rgba(11, 36, 71, 0.06);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 24px;
}

.logo { display: flex; align-items: center; gap: 10px; }

.logo-badge {
  background: linear-gradient(135deg, var(--blue), var(--teal));
  color: var(--white);
  font-weight: 800;
  font-size: 1.1rem;
  width: 42px; height: 42px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}

.logo-text { font-weight: 700; font-size: 1.15rem; color: var(--navy); }

.main-nav { display: flex; gap: 28px; }

.main-nav a {
  font-weight: 500;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.main-nav a.active, .main-nav a:hover { color: var(--blue); }

.header-actions { display: flex; align-items: center; gap: 12px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  width: 22px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
}

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  white-space: nowrap;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

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

.btn-sm { padding: 9px 16px 9px 18px; font-size: 0.85rem; }

.btn-primary { background: var(--blue); color: var(--white); }
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-teal { background: var(--teal); color: var(--white); }

.btn-outline { background: transparent; color: var(--navy); border-color: #d8e2ea; }
.btn-teal-outline { background: transparent; color: var(--teal); border-color: var(--teal); }

.btn-badge {
  width: 26px; height: 26px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.btn-badge svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2.2; stroke-linecap: round; }

.btn-badge-coral { background: var(--coral); color: var(--white); }
.btn-badge-teal { background: var(--teal); color: var(--white); }
.btn-badge-navy { background: var(--navy); color: var(--white); }

.cta-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Eyebrow / section heads ---------- */
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 10px;
}

.eyebrow.center { text-align: center; }

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

h2 { font-size: 2rem; color: var(--navy); margin-bottom: 14px; }

.section-lead { color: var(--text-muted); font-size: 1rem; line-height: 1.6; }

/* ---------- Hero ---------- */
.hero {
  background: var(--bg-sky);
  position: relative;
  padding: 64px 0 120px;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  left: -10%; right: -10%; bottom: -60px;
  height: 120px;
  background: var(--white);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.hero-copy h1 {
  font-size: 2.6rem;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 18px;
}

.hero-copy h1 span { display: block; color: var(--blue); }

.lead { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 28px; max-width: 480px; line-height: 1.6; }

.hero-art { position: relative; display: flex; justify-content: center; }

.blob {
  width: 100%;
  max-width: 380px;
  border-radius: 44% 56% 60% 40% / 50% 45% 55% 50%;
  overflow: hidden;
  border: 6px solid var(--white);
  box-shadow: 0 20px 50px rgba(11, 36, 71, 0.18);
}

.blob svg { width: 100%; height: 100%; }

.blob-sm { max-width: 320px; }

.blob-outline { border-color: var(--teal); }

.floating-prop {
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 78px;
  filter: drop-shadow(0 10px 16px rgba(11, 36, 71, 0.25));
  animation: float 3.5s ease-in-out infinite;
}

.deco { position: absolute; width: 36px; height: 36px; stroke: var(--coral); fill: none; stroke-width: 1.6; opacity: 0.6; }
.deco-bulb { top: 0; left: 6%; }
.deco-chart { top: 10%; right: 4%; stroke: var(--blue); }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ---------- Why / cards ---------- */
.why { padding: 90px 0 70px; background: var(--white); }

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.info-card {
  background: var(--bg-sky);
  border-radius: var(--radius);
  padding: 30px 26px;
  text-align: left;
}

.icon-tile {
  width: 54px; height: 54px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}

.icon-tile svg { width: 26px; height: 26px; stroke: var(--white); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.icon-tile-blue { background: var(--blue); }
.icon-tile-gold { background: var(--gold); }
.icon-tile-gold svg { stroke: var(--navy); }
.icon-tile-teal { background: var(--teal); }

.info-card h3 { font-size: 1.15rem; margin-bottom: 10px; color: var(--navy); }
.info-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; }

/* ---------- Solutions / offers ---------- */
.solutions-intro {
  background: var(--bg-cream);
  padding: 90px 0;
  position: relative;
}

.offer {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 50px;
  margin-top: 60px;
}

.offer:first-of-type { margin-top: 50px; }

.offer-reverse { grid-template-columns: 1.1fr 0.9fr; }
.offer-reverse .offer-art { order: 2; }
.offer-reverse .offer-copy { order: 1; }

.offer-art { display: flex; justify-content: center; }

.offer-copy h3 { font-size: 1.7rem; color: var(--navy); margin-bottom: 14px; }
.offer-copy p { color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }

.best-for {
  border-top: 1px solid #e6dfc4;
  padding-top: 16px;
  margin-bottom: 24px !important;
}

.best-for strong { color: var(--teal); text-transform: uppercase; font-size: 0.8rem; letter-spacing: 0.05em; }

/* ---------- Trust ---------- */
.trust { background: var(--white); padding: 90px 0; position: relative; }

.trust-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 56px;
}

.trust-art { display: flex; justify-content: center; }

.trust-copy h2 { font-size: 2.1rem; }
.trust-copy p { color: var(--text-muted); line-height: 1.7; margin-bottom: 22px; max-width: 460px; }

.check-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }

.check-list li { display: flex; align-items: center; gap: 12px; font-weight: 600; color: var(--navy); }

.check-list svg {
  width: 22px; height: 22px;
  background: var(--teal);
  border-radius: 50%;
  padding: 4px;
  stroke: var(--white);
  fill: none;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* ---------- Mid CTA ---------- */
.cta-mid {
  background: var(--bg-sky);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.cta-mid-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
}

.cta-mid-copy h2 { font-size: 2rem; max-width: 480px; }
.cta-mid-copy p { color: var(--text-muted); line-height: 1.7; margin: 16px 0 28px; max-width: 460px; }

.cta-mid-art { position: relative; height: 260px; }

.float-icon {
  position: absolute;
  width: 48px; height: 48px;
  stroke: var(--blue);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  background: var(--white);
  border-radius: 16px;
  padding: 10px;
  box-shadow: 0 12px 24px rgba(11, 36, 71, 0.12);
  animation: float 4s ease-in-out infinite;
}

.fi-1 { top: 6%; left: 30%; stroke: var(--coral); animation-delay: 0s; }
.fi-2 { top: 38%; left: 4%; stroke: var(--blue); animation-delay: 0.4s; }
.fi-3 { top: 6%; left: 70%; stroke: var(--gold); animation-delay: 0.8s; }
.fi-4 { top: 55%; left: 56%; stroke: var(--teal); animation-delay: 1.2s; }
.fi-5 { top: 70%; left: 22%; stroke: var(--coral); animation-delay: 1.6s; }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg-sky); padding: 80px 0 0; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
}

.footer-brand p { color: var(--text-muted); margin: 14px 0 18px; line-height: 1.6; max-width: 280px; }

.footer-col h4 { font-size: 1rem; color: var(--navy); margin-bottom: 18px; }

.footer-col { display: flex; flex-direction: column; gap: 12px; }

.footer-col a { color: var(--text-muted); font-size: 0.95rem; }
.footer-col a:hover { color: var(--blue); }

.contact-line { display: flex; align-items: flex-start; gap: 10px; color: var(--text-muted); font-size: 0.95rem; }

.contact-line svg { width: 18px; height: 18px; stroke: var(--teal); fill: none; stroke-width: 1.8; flex-shrink: 0; margin-top: 2px; }

.footer-bottom {
  border-top: 1px solid rgba(11, 36, 71, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 22px 24px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.legal span { font-size: 0.78rem; opacity: 0.85; }

.footer-bottom-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-bottom-links a:hover { color: var(--blue); }

/* ---------- Final banner ---------- */
.final-banner { background: var(--white); padding: 80px 0 100px; }

.final-banner-inner {
  display: flex;
  align-items: center;
  gap: 56px;
  flex-wrap: wrap;
}

.final-logo {
  display: flex;
  flex-direction: column;
  font-weight: 800;
  line-height: 1.05;
}

.fl-1 { font-size: 3.4rem; color: var(--blue); }
.fl-2 { font-size: 1.6rem; color: var(--gold); -webkit-text-stroke: 1px var(--navy); }

.final-copy h2 { max-width: 540px; }
.final-copy p { color: var(--text-muted); line-height: 1.7; margin: 14px 0 26px; max-width: 520px; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-inner, .offer, .offer-reverse, .trust-inner, .cta-mid-inner { grid-template-columns: 1fr; }
  .offer-reverse .offer-art, .offer-reverse .offer-copy { order: initial; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .header-actions .btn-outline { display: none; }
}

@media (max-width: 960px) and (min-width: 1px) {
  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    padding: 20px 24px;
    gap: 16px;
    box-shadow: 0 12px 24px rgba(11, 36, 71, 0.1);
  }
}

@media (max-width: 640px) {
  .hero-copy h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .card-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .topbar-inner { flex-direction: column; gap: 6px; text-align: center; }
  .cta-mid-art { display: none; }
  .final-banner-inner { flex-direction: column; text-align: center; }
}
