@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,600;9..144,700&display=swap');
/* ============================================================
   PassionJet — Global Stylesheet
   Placeholder brand. Replace colors/logo/name as needed.
   ============================================================ */

:root {
  --font-display: "Fraunces", "Georgia", "Times New Roman", serif;
  --navy: #0f2e4a;        /* brand deep navy — unified with the portal + ATO */
  --navy-700: #1669a8;
  --navy-900: #0a2238;
  --navy-50: #e9f1fb;
  --gold: #1e96d6;        /* brand blue (legacy variable name kept) */
  --gold-dark: #1669a8;
  --pj-blue: #1e96d6;
  --pj-grey: #8c99a3;
  --ink: #13283b;
  --slate: #5f7488;
  --line: #e3e9f1;
  --bg: #ffffff;
  --bg-alt: #f4f7fb;
  --white: #ffffff;
  --ok: #1f8a55;
  --radius: 14px;
  --shadow-sm: 0 1px 2px rgba(16,36,63,.06), 0 2px 10px rgba(16,36,63,.05);
  --shadow: 0 18px 50px rgba(16,36,63,.14);
  --shadow-blue: 0 6px 18px rgba(30,150,214,.26);
  --maxw: 1180px;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --serif: "Georgia", "Times New Roman", serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  line-height: 1.6;
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { color: var(--navy); line-height: 1.2; margin: 0 0 .5em; font-weight: 700; }
h1 { font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -.02em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); letter-spacing: -.01em; }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1rem; color: var(--ink); }
a { color: var(--navy-700); text-decoration: none; }
a:hover { color: var(--gold-dark); }
img { max-width: 100%; display: block; }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.muted { color: var(--slate); }
.center { text-align: center; }
.eyebrow {
  text-transform: uppercase; letter-spacing: .14em; font-size: .78rem;
  font-weight: 700; color: var(--gold-dark); margin-bottom: .6rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 26px; border-radius: 9px; line-height: 1.1;
  font-weight: 600; font-size: .97rem; cursor: pointer; border: 2px solid transparent;
  transition: transform .16s ease, background .18s ease, box-shadow .18s ease, color .18s, border-color .18s; text-align: center;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--gold); color: #fff; box-shadow: var(--shadow-blue); }
.btn-primary:hover { background: var(--gold-dark); color: #fff; }
/* Outline button works on light backgrounds by default... */
.btn-outline { border-color: var(--line); color: var(--navy); background: #fff; }
.btn-outline:hover { border-color: var(--gold); color: var(--gold-dark); background: #fff; }
/* ...and turns white on dark sections (hero / page-hero / CTA band). */
.hero .btn-outline, .page-hero .btn-outline, .cta-band .btn-outline { border-color: rgba(255,255,255,.6); color: #fff; background: transparent; }
.hero .btn-outline:hover, .page-hero .btn-outline:hover, .cta-band .btn-outline:hover { background: rgba(255,255,255,.14); color: #fff; }
.btn-dark { background: var(--navy); color: var(--white); }
.btn-dark:hover { background: var(--navy-700); color: var(--white); }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(10px); border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 800; color: var(--navy); font-size: 1.15rem; letter-spacing: -.01em; }
.brand:hover { color: var(--navy); }
.brand .logo {
  width: 42px; height: 42px; background: transparent; border-radius: 0;
  display: grid; place-items: center; flex: none;
}
.brand .logo svg { width: 42px; height: 42px; }
.brand small { display:block; font-weight:500; font-size:.6rem; letter-spacing:.22em; color: var(--slate); text-transform: uppercase; margin-top:2px; }
/* PassionJet wordmark */
.wm-wrap { display:flex; flex-direction:column; line-height:1; }
.wm { font-weight:800; letter-spacing:.02em; font-size:1.18rem; }
.wm-p { color: var(--pj-blue); }
.wm-j { color: var(--pj-grey); }
.nav-links { display: flex; align-items: center; gap: 26px; list-style: none; margin: 0 auto 0 40px; padding: 0; }
.nav-links a { color: var(--ink); font-weight: 500; font-size: .96rem; }
.nav-links a:hover, .nav-links a.active { color: var(--gold-dark); }
.nav-cta { display: flex; align-items: center; gap: 18px; margin-left: 24px; padding-left: 26px; border-left: 1px solid var(--line); }
.nav-login { font-weight: 600; font-size: .95rem; color: var(--navy); white-space: nowrap; }
.nav-login:hover { color: var(--gold-dark); }
/* Header "Book a Call" button — sized to sit cleanly in the nav without clipping */
.site-header .nav-cta .btn { padding: 10px 22px; font-size: .92rem; line-height: 1.25; white-space: nowrap; }
.nav-login-alt { font-weight: 500; color: var(--slate); white-space: nowrap; }
.nav-login-alt:hover { color: var(--gold-dark); }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--navy); margin: 5px 0; transition: .2s; }

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(1200px 520px at 80% -12%, rgba(30,150,214,.32), transparent 58%),
    radial-gradient(900px 500px at 0% 110%, rgba(30,150,214,.14), transparent 55%),
    linear-gradient(125deg, #0f2e4a 0%, #1669a8 62%, #1e96d6 100%);
  background-size: cover; background-position: center; color: var(--white);
}
.hero .container { padding-top: 88px; padding-bottom: 96px; }
.hero h1 { color: var(--white); max-width: 16ch; }
.hero p.lead { font-size: 1.22rem; color: #d7e1f0; max-width: 56ch; margin-bottom: 2rem; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-badges { display: flex; gap: 28px; flex-wrap: wrap; margin-top: 3rem; }
.hero-badges div { color: #cdd9ec; font-size: .9rem; }
.hero-badges strong { display:block; color: var(--gold); font-size: 1.7rem; font-weight: 800; }

/* ---------- Sections ---------- */
section { padding: 78px 0; }
.section-alt { background: var(--bg-alt); }
.section-head { max-width: 64ch; margin: 0 auto 48px; text-align: center; }
.section-head p { color: var(--slate); font-size: 1.08rem; }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; box-shadow: var(--shadow-sm); transition: transform .18s, box-shadow .18s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card .icon {
  width: 48px; height: 48px; border-radius: 11px; background: var(--navy-50);
  display: grid; place-items: center; color: var(--navy-700); margin-bottom: 16px;
}
.card .icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: .4rem; }
.card p { color: var(--slate); margin: 0; font-size: .97rem; }

/* ---------- Steps ---------- */
.steps { counter-reset: step; display: grid; gap: 22px; }
.step {
  display: grid; grid-template-columns: 56px 1fr; gap: 20px; align-items: start;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 28px;
}
.step .num {
  counter-increment: step; width: 48px; height: 48px; border-radius: 50%;
  background: var(--navy); color: var(--gold); font-weight: 800; font-size: 1.2rem;
  display: grid; place-items: center;
}
.step .num::before { content: counter(step); }
.step h3 { margin-bottom: .25rem; }
.step p { margin: 0; color: var(--slate); }

/* ---------- Split feature ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.checklist { list-style: none; padding: 0; margin: 1.2rem 0 0; }
.checklist li { padding-left: 34px; position: relative; margin-bottom: 14px; color: var(--ink); }
.checklist li::before {
  content: "✓"; position: absolute; left: 0; top: 0; width: 22px; height: 22px;
  background: var(--ok); color: #fff; border-radius: 50%; display: grid; place-items: center; font-size: .8rem; font-weight: 700;
}
.panel {
  background: var(--navy); color: #dfe7f3; border-radius: 16px; padding: 36px;
  box-shadow: var(--shadow);
}
.panel h3 { color: var(--white); }
.panel .stat { display: flex; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,.12); padding: 14px 0; }
.panel .stat:last-child { border-bottom: 0; }
.panel .stat b { color: var(--gold); }

/* ---------- Pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; align-items: stretch; }
.price-card { background:#fff; border:1px solid var(--line); border-radius:var(--radius); padding:32px; display:flex; flex-direction:column; }
.price-card.featured { border:2px solid var(--gold); box-shadow: var(--shadow); position: relative; }
.price-card.featured::after { content:"Most popular"; position:absolute; top:-13px; left:50%; transform:translateX(-50%); background:var(--gold); color:var(--navy); font-size:.72rem; font-weight:700; padding:5px 14px; border-radius:999px; text-transform:uppercase; letter-spacing:.08em; }
.price-card .amount { font-size: 2.4rem; font-weight: 800; color: var(--navy); margin: 8px 0; }
.price-card .amount span { font-size: 1rem; font-weight: 500; color: var(--slate); }
.price-card ul { list-style: none; padding: 0; margin: 18px 0 26px; }
.price-card li { padding: 9px 0 9px 28px; position: relative; color: var(--slate); font-size: .95rem; border-bottom: 1px solid var(--line); }
.price-card li::before { content:"✓"; position:absolute; left:0; color: var(--ok); font-weight: 700; }
.price-card .btn { margin-top: auto; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq details { border: 1px solid var(--line); border-radius: 10px; padding: 0; margin-bottom: 14px; background: #fff; overflow: hidden; }
.faq summary {
  cursor: pointer; padding: 20px 24px; font-weight: 600; color: var(--navy);
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.5rem; color: var(--gold-dark); transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details > p { padding: 0 24px 22px; color: var(--slate); margin: 0; }

/* ---------- Forms ---------- */
.form-wrap { background:#fff; border:1px solid var(--line); border-radius:16px; padding:36px; box-shadow: var(--shadow-sm); }
.field { margin-bottom: 18px; }
.field label { display:block; font-weight:600; font-size:.9rem; color: var(--navy); margin-bottom: 6px; }
.field .req { color: #c0392b; }
.field input, .field select, .field textarea {
  width:100%; padding:12px 14px; border:1px solid var(--line); border-radius:9px; font-family:inherit; font-size:.97rem; color: var(--ink); background:#fff;
}
.field input:focus, .field select:focus, .field textarea:focus { outline:none; border-color: var(--gold); box-shadow:0 0 0 3px rgba(45,163,214,.18); }
.field textarea { min-height: 120px; resize: vertical; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.form-note { font-size:.82rem; color: var(--slate); }
.form-success { display:none; background:#eafaf0; border:1px solid #b8e6cb; color:#1f6b43; padding:16px 18px; border-radius:10px; margin-bottom:20px; }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(120deg, var(--navy), var(--navy-700)); color:#fff; border-radius:18px; padding:54px; text-align:center; }
.cta-band h2 { color:#fff; }
.cta-band p { color:#d7e1f0; max-width: 60ch; margin: 0 auto 1.5rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: #b8c6dd; padding: 64px 0 28px; }
.site-footer a { color:#cdd9ec; }
.site-footer a:hover { color: var(--gold); }
.footer-grid { display:grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 36px; }
.footer-grid h4 { color:#fff; font-size:.95rem; text-transform:uppercase; letter-spacing:.08em; margin-bottom: 14px; }
.footer-grid ul { list-style:none; padding:0; margin:0; }
.footer-grid li { margin-bottom: 9px; font-size:.93rem; }
.footer-brand .logo { width:40px; height:40px; border-radius:9px; background:#fff; display:grid; place-items:center; color:var(--navy); margin-bottom:14px; }
.footer-bottom { border-top:1px solid rgba(255,255,255,.12); margin-top:40px; padding-top:22px; font-size:.82rem; color:#8ea1bf; display:flex; justify-content:space-between; flex-wrap:wrap; gap:12px; }
.disclaimer { font-size:.8rem; color:#8ea1bf; margin-top:14px; line-height:1.55; }

/* ---------- Page hero (interior) ---------- */
.page-hero { background: var(--navy); color:#fff; padding: 34px 0; }
.page-hero + section { padding-top: 44px; }
.page-hero h1 { color:#fff; }
.page-hero p { color:#cdd9ec; max-width: 60ch; font-size:1.1rem; margin:0; }
.breadcrumb { font-size:.85rem; color:#8ea1bf; margin-bottom: 14px; }
.breadcrumb a { color:#cdd9ec; }

/* ---------- Prose ---------- */
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { margin-top: 2.2rem; }
.prose ul { padding-left: 20px; }
.prose li { margin-bottom: 8px; }
.callout { background: var(--navy-50); border-left: 4px solid var(--gold); padding: 18px 22px; border-radius: 8px; margin: 22px 0; }
.callout strong { color: var(--navy); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .grid-3, .grid-4, .price-grid { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute; top: 74px; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--line); padding: 18px 24px; gap: 16px;
  }
  .nav-toggle { display: block; }
  .nav-cta { margin-left: 0; padding-left: 0; border-left: 0; gap: 14px; }
}
@media (max-width: 600px) {
  .grid-3, .grid-4, .grid-2, .price-grid, .form-row { grid-template-columns: 1fr; }
  .cta-band, .panel { padding: 32px 24px; }
  section { padding: 56px 0; }
  .nav-login-alt { display: none; }
  .hero-badges { gap: 20px; }
}

/* Real PassionJet logo */
.brand-logo{height:44px;width:auto;max-width:74vw;display:block}
@media(max-width:560px){.brand-logo{height:34px}}
.footer-logo{height:46px;width:auto;display:block;margin-bottom:14px}

/* ---------- Services dropdown ---------- */
.has-dropdown{position:relative}
.has-dropdown>a::after{content:"\25BE";font-size:.62em;margin-left:5px;vertical-align:middle;color:var(--slate)}
.dropdown{position:absolute;top:calc(100% + 12px);left:50%;transform:translateX(-50%) translateY(6px);min-width:235px;background:#fff;border:1px solid var(--line);border-radius:12px;box-shadow:var(--shadow);padding:8px;list-style:none;margin:0;opacity:0;visibility:hidden;transition:opacity .16s,transform .16s;z-index:60}
.dropdown::before{content:"";position:absolute;top:-14px;left:0;right:0;height:14px}
.has-dropdown:hover .dropdown,.has-dropdown:focus-within .dropdown{opacity:1;visibility:visible;transform:translateX(-50%) translateY(0)}
.dropdown li{margin:0}
.dropdown a{display:block;padding:9px 13px;border-radius:8px;font-size:.92rem;font-weight:500;color:var(--ink);white-space:nowrap}
.dropdown a:hover{background:var(--bg-alt);color:var(--gold-dark)}
@media (max-width: 900px){
  .nav-links.open .dropdown{position:static;opacity:1;visibility:visible;transform:none;box-shadow:none;border:0;border-left:2px solid var(--line);border-radius:0;margin:6px 0 2px 6px;padding:0 0 0 12px;min-width:0}
  .nav-links.open .dropdown::before{display:none}
  .nav-links.open .has-dropdown>a::after{content:""}
  .nav-links.open .dropdown a{padding:7px 4px}
}

/* ---------- WhatsApp floating button ---------- */
.wa-float{position:fixed;right:20px;bottom:20px;width:58px;height:58px;border-radius:50%;background:#25d366;display:grid;place-items:center;box-shadow:0 6px 22px rgba(0,0,0,.25);z-index:200;transition:transform .15s,box-shadow .15s}
.wa-float:hover{transform:scale(1.06);box-shadow:0 9px 28px rgba(0,0,0,.32)}
.wa-float svg{width:32px;height:32px}
.wa-float .wa-tip{position:absolute;right:70px;background:#222b33;color:#fff;font-size:.82rem;font-weight:600;white-space:nowrap;padding:7px 12px;border-radius:8px;opacity:0;pointer-events:none;transition:opacity .15s}
.wa-float:hover .wa-tip{opacity:1}
@media(max-width:560px){.wa-float{right:16px;bottom:16px;width:52px;height:52px}.wa-float .wa-tip{display:none}}

/* ============================================================
   PROFESSIONAL POLISH LAYER (loads last; refines the base above)
   ============================================================ */
body{ font-feature-settings:"cv11","ss01"; text-rendering:optimizeLegibility; }
::selection{ background:rgba(45,163,214,.22); color:var(--navy); }

/* Premium interior page hero (matches the homepage hero treatment) */
.page-hero{
  background:
    radial-gradient(820px 360px at 86% -30%, rgba(45,163,214,.26), transparent 60%),
    linear-gradient(155deg,#10243F 0%, #0b1a30 100%);
}

/* Sticky header gets a hairline shadow so it lifts off the page */
.site-header{ box-shadow:0 1px 0 rgba(16,36,63,.05), 0 8px 24px rgba(16,36,63,.04); }
.nav{ height:72px; }

/* Eyebrow / section heads a touch more refined */
.eyebrow{ letter-spacing:.16em; }
.section-head h2{ margin-bottom:.5rem; }

/* Cards: lighter resting shadow, brand-tinted lift on hover */
.card{ box-shadow:var(--shadow-sm); }
.card:hover{ border-color:rgba(45,163,214,.45); box-shadow:0 16px 40px rgba(16,36,63,.13); }
.card .icon{ background:var(--navy-50); color:var(--gold-dark); }

/* Hero stat numbers + interior accents use the true brand blue */
.hero-badges strong{ color:#5fb6e0; }
.panel .stat b, .price-card.featured::after{ color:#fff; }

/* Accessible, on-brand keyboard focus (only shows for keyboard users) */
a:focus-visible, button:focus-visible, .btn:focus-visible,
summary:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible{
  outline:3px solid rgba(45,163,214,.55); outline-offset:2px; border-radius:8px;
}
.btn:focus-visible{ outline-offset:3px; }

/* Nicer active-link indicator in the top nav */
.nav-links > li > a.active{ color:var(--gold-dark); }

/* Respect users who prefer less motion */
@media (prefers-reduced-motion: reduce){
  *, *::before, *::after{ animation-duration:.001ms!important; animation-iteration-count:1!important; transition-duration:.001ms!important; scroll-behavior:auto!important; }
}

/* ---------- Fleet showcase ---------- */
.fleet-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.fleet-card{ background:#fff; border:1px solid var(--line); border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow-sm); transition:transform .18s, box-shadow .18s, border-color .18s; }
.fleet-card:hover{ transform:translateY(-4px); box-shadow:0 16px 40px rgba(16,36,63,.13); border-color:rgba(45,163,214,.45); }
.fleet-photo{ position:relative; min-height:200px; aspect-ratio:16/10;
  background:radial-gradient(600px 240px at 80% -20%, rgba(45,163,214,.35), transparent 60%), linear-gradient(150deg,#10243F,#0b1a30); overflow:hidden; }
.fleet-photo img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; display:block; }
.fleet-illus{ position:absolute; inset:0; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:12px; color:#fff; }
.fleet-illus svg{ width:62px; height:62px; opacity:.95; }
.fleet-illus span{ font-weight:700; letter-spacing:.06em; text-transform:uppercase; font-size:.78rem; color:#bfe0f1; }
.fleet-body{ padding:20px 22px 24px; }
.fleet-body h3{ margin:0 0 6px; }
.fleet-body p{ color:var(--slate); margin:0; font-size:.95rem; }
@media (max-width:900px){ .fleet-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:600px){ .fleet-grid{ grid-template-columns:1fr; } }

/* ============================================================
   HIGH-END UPGRADE LAYER (loads last — refines toward "premium")
   Editorial display type, more space, cinematic hero, motion.
   ============================================================ */

/* 1) Editorial display headings — instantly lifts perceived quality */
h1, h2, .price-card .amount, .hero-badges strong {
  font-family: var(--font-display);
  font-weight: 600; letter-spacing: -.015em;
}
h1 { font-size: clamp(2.3rem, 4.6vw, 3.5rem); line-height: 1.08; }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); line-height: 1.12; }
.section-head h2 { margin-bottom: .6rem; }

/* 2) More breathing room — premium = space */
section { padding: 96px 0; }
.section-head { margin-bottom: 60px; }
.lead, .hero p.lead { line-height: 1.65; }
@media (max-width:600px){ section { padding: 64px 0; } }

/* 3) Cinematic hero — drop a photo in via --hero-img (falls back to gradient) */
.hero {
  position: relative; overflow: hidden;
  --hero-img: none;
  background:
    linear-gradient(180deg, rgba(8,18,33,.62), rgba(8,18,33,.82)),
    var(--hero-img),
    radial-gradient(1200px 520px at 80% -12%, rgba(45,163,214,.28), transparent 58%),
    linear-gradient(155deg, #10243F 0%, #0b1a30 55%, #10243F 100%);
  background-size: cover, cover, cover, cover;
  background-position: center;
}
.hero .container { padding-top: 14px; padding-bottom: 8px; position: relative; z-index: 2; }
.hero h1 { max-width: 20ch; font-size: clamp(1.75rem, 3vw, 2.4rem); line-height: 1.1; margin-bottom: .45rem; }
.hero p.lead { font-size: 1.06rem; line-height: 1.5; color: #e3ecf8; margin-bottom: .9rem; }
.hero .trust-line { margin-top: 10px; color: #aebfd6; font-size: .9rem; letter-spacing:.01em; }
.hero .trust-line strong { color: #cfe3f4; font-weight: 600; }

/* Refined stat chips in the hero */
.hero-badges { gap: 12px; margin-top: .55rem; }
.hero-badges div {
  border: 1px solid rgba(255,255,255,.16); border-radius: 14px;
  padding: 10px 16px; background: rgba(255,255,255,.04);
  backdrop-filter: blur(4px); min-width: 130px;
}
.hero-badges strong { color: #7cc6ea; font-size: 1.7rem; }

/* 4) One dominant CTA — primary is bigger/brighter, secondary recedes */
.btn-primary { letter-spacing: .005em; box-shadow: 0 10px 26px rgba(45,163,214,.34); }
.btn-primary:hover { box-shadow: 0 14px 34px rgba(45,163,214,.42); }
.btn-lg { padding: 17px 40px; }

/* 5) Quiet scroll-reveal motion (JS adds .reveal then .in) */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .06s; } .reveal.d2 { transition-delay: .12s; }
.reveal.d3 { transition-delay: .18s; } .reveal.d4 { transition-delay: .24s; }

/* 6) Credibility strip — the assurance band under the hero */
.trust-strip { background: var(--navy-900); border-top: 1px solid rgba(255,255,255,.06); }
.trust-strip .container { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 10px 36px; padding: 10px 24px; }
.trust-strip .ti { display: inline-flex; align-items: center; gap: 10px; color: #b9c8de; font-size: .92rem; font-weight: 500; letter-spacing:.02em; }
.trust-strip .ti svg { width: 19px; height: 19px; color: #5fb6e0; flex: none; }
.trust-strip .ti b { color: #fff; font-weight: 700; }

/* 7) Testimonial / pull-quote */
.quote-band { background: var(--bg-alt); }
.quote { max-width: 880px; margin: 0 auto; text-align: center; }
.quote blockquote {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.4rem, 2.6vw, 2rem); line-height: 1.35; color: var(--navy);
  margin: 0 0 18px; letter-spacing: -.01em;
}
.quote .qmark { font-family: var(--font-display); font-size: 4rem; line-height: .3; color: var(--gold); display:block; margin-bottom: 14px; }
.quote cite { font-style: normal; color: var(--slate); font-size: .95rem; font-weight: 600; }
.quote cite span { color: var(--gold-dark); font-weight: 700; }

/* 8) Section eyebrow centered helper + lighter dividers */
.eyebrow.center { display:block; }

