:root {
  --navy: #123a5c;
  --navy-deep: #0b2740;
  --aqua: #5ec8d1;
  --aqua-bright: #7adce4;
  --foam: #e7f8fa;
  --sky: #bfeef2;
  --ink: #2a1a12;
  --brown: #3c2416;
  --muted: #5e534c;
  --red: #e23d2b;
  --sand: #ffb703;
  --line: #cfe4e8;
  --white: #ffffff;
  --max: 1140px;
  --radius: 20px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: "Outfit", system-ui, sans-serif; color: var(--ink); background: #fff; line-height: 1.6; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { width: min(var(--max), calc(100% - 36px)); margin: 0 auto; }

.topbar {
  background: var(--navy-deep); color: #d7eef3; font-size: 0.86rem;
}
.topbar .container { display: flex; justify-content: space-between; gap: 12px; padding: 8px 0; flex-wrap: wrap; }
.topbar a:hover { color: var(--aqua-bright); }

.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 82px; gap: 16px; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { width: 64px; height: 64px; object-fit: contain; }
.brand-text { font-weight: 800; color: var(--navy); line-height: 1.1; }
.brand-text small { display: block; font-weight: 600; color: var(--red); letter-spacing: 0.12em; font-size: 0.68rem; }
nav ul { display: flex; gap: 20px; align-items: center; }
nav a { font-weight: 600; color: var(--navy); font-size: 0.95rem; }
nav a.active, nav a:hover { color: var(--red); }
.header-cta { display: flex; gap: 8px; }
.menu-btn { display: none; background: none; border: 0; font-size: 1.7rem; color: var(--navy); cursor: pointer; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: 999px; padding: 12px 20px; font-weight: 700; border: 0; cursor: pointer;
  font-family: inherit; font-size: 0.95rem; transition: 0.16s ease;
}
.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { filter: brightness(0.93); transform: translateY(-1px); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: #1b4d75; }
.btn-ghost { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.45); }
.btn-outline { background: #fff; color: var(--navy); border: 1.5px solid var(--line); }
.btn-lg { padding: 15px 26px; }

.hero {
  position: relative; min-height: 86vh; color: #fff; display: grid; align-items: end;
  background: var(--navy-deep);
}
.hero .bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,39,64,.25), rgba(11,39,64,.82));
}
.hero-content { position: relative; z-index: 2; padding: 80px 0 64px; }
.kicker {
  display: inline-block; background: rgba(94,200,209,.2); border: 1px solid rgba(94,200,209,.45);
  color: #c9f4f8; padding: 6px 12px; border-radius: 999px; font-size: 0.8rem; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase; margin-bottom: 14px;
}
.hero h1 { font-size: clamp(2.2rem, 5vw, 4rem); line-height: 1.05; letter-spacing: -.03em; max-width: 16ch; }
.hero .lede { max-width: 540px; margin: 14px 0 26px; color: #dff3f6; font-size: 1.12rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.hero-stats { display: grid; grid-template-columns: repeat(3, minmax(0,170px)); gap: 16px; border-top: 1px solid rgba(255,255,255,.18); padding-top: 18px; }
.hero-stats strong { display: block; font-size: 1.05rem; }
.hero-stats span { font-size: .85rem; color: #c5dce3; }

section { padding: 80px 0; }
.section-head { max-width: 640px; margin-bottom: 36px; }
.eyebrow { color: var(--red); font-weight: 800; letter-spacing: .14em; text-transform: uppercase; font-size: .75rem; margin-bottom: 8px; }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); color: var(--navy); letter-spacing: -.03em; line-height: 1.15; }
.muted { color: var(--muted); }

.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; }
.card h3 { color: var(--navy); margin: 8px 0; }
.card img { width: 100%; height: auto; object-fit: contain; object-position: center; background: #0b2740; border-radius: 14px; margin-bottom: 12px; }

.band { background: var(--foam); }
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.step { background: #fff; border-radius: var(--radius); padding: 20px; border: 1px solid var(--line); }
.step .num { font-size: 1.6rem; font-weight: 800; color: var(--aqua); }

.quotes { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.quote { background: var(--navy); color: #e8f4f7; border-radius: var(--radius); padding: 24px; }
.stars { color: var(--sand); margin-bottom: 8px; }
.quote footer { margin-top: 14px; color: #9ec8d4; font-size: .9rem; }

.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { background: var(--foam); color: var(--navy); border-radius: 999px; padding: 8px 14px; font-weight: 700; font-size: .9rem; }

.cta-band { background: linear-gradient(135deg, var(--navy-deep), #1a5574); color: #fff; }
.cta-band h2 { color: #fff; }
.cta-inner { display: flex; justify-content: space-between; gap: 20px; align-items: center; flex-wrap: wrap; }

.page-hero {
  background: var(--navy) url("../images/hero.jpg") center/cover; color: #fff;
  padding: 86px 0 64px; position: relative;
}
.page-hero::after { content: ""; position: absolute; inset: 0; background: rgba(11,39,64,.74); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3.1rem); letter-spacing: -.03em; }

.ba-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.ba-grid figure { position: relative; border-radius: 16px; overflow: hidden; }
.ba-grid img { width: 100%; height: auto; max-height: 480px; object-fit: contain; object-position: center; background: #0b2740; }
.ba-grid figcaption {
  position: absolute; left: 10px; bottom: 10px; background: rgba(11,39,64,.82);
  color: #fff; padding: 4px 10px; border-radius: 999px; font-size: .8rem;
}
.split { border-radius: 20px; overflow: hidden; box-shadow: 0 18px 40px rgba(11,39,64,.16); background: #0b2740; }
.split img { width: 100%; height: auto; object-fit: contain; display: block; }

.about-grid { display: grid; grid-template-columns: 220px 1fr; gap: 32px; align-items: center; }
.about-grid img { width: 220px; height: 220px; object-fit: contain; background: var(--foam); border-radius: 24px; padding: 12px; }

form { display: grid; gap: 12px; }
label { font-weight: 700; font-size: .9rem; color: var(--navy); }
input, select, textarea {
  width: 100%; padding: 12px 14px; border-radius: 12px; border: 1.5px solid var(--line); font: inherit;
}
textarea { min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.success { display: none; background: #e7f8ee; color: #146c36; padding: 12px 14px; border-radius: 12px; }
.form-note { font-size: .86rem; color: var(--muted); }

.faq details { border-bottom: 1px solid var(--line); padding: 14px 0; }
.faq summary { cursor: pointer; font-weight: 700; color: var(--navy); }
.faq p { margin-top: 8px; color: var(--muted); }

.site-footer { background: var(--navy-deep); color: #c5dbe3; padding: 48px 0 22px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 24px; margin-bottom: 24px; }
.site-footer h4 { color: #fff; margin-bottom: 10px; }
.site-footer a:hover { color: var(--aqua-bright); }
.legal { border-top: 1px solid rgba(255,255,255,.1); padding-top: 14px; font-size: .85rem; display: flex; justify-content: space-between; gap: 10px; flex-wrap: wrap; }

.mobile-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 50; background: #fff; border-top: 1px solid var(--line); padding: 10px 12px; gap: 8px; }
.mobile-bar .btn { flex: 1; }

.marquee {
  overflow: hidden; background: var(--navy); color: #fff; padding: 10px 0; font-weight: 700; letter-spacing: .04em;
}
.marquee-track { display: flex; gap: 40px; white-space: nowrap; animation: slide 22s linear infinite; }
@keyframes slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }

@media (max-width: 900px) {
  nav { display: none; position: absolute; top: 82px; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--line); }
  nav.open { display: block; }
  nav ul { flex-direction: column; align-items: flex-start; padding: 16px 20px 22px; gap: 12px; }
  .menu-btn { display: block; }
  .header-cta .btn-outline { display: none; }
  .grid-3, .steps, .quotes, .footer-grid, .ba-grid, .about-grid, .form-row, .grid-2 { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr 1fr 1fr; }
  .mobile-bar { display: flex; }
  body { padding-bottom: 72px; }
  .about-grid img { width: 140px; height: 140px; }
}
