/* ===== Tokens ===== */
:root {
  --navy-900: #081B33;
  --navy-800: #0B2C55;
  --navy-700: #133A6E;
  --blue-300: #8FCBEB;
  --blue-500: #2E86D6;
  --blue-600: #1F68AC;
  --bg: #F7F8FA;
  --white: #FFFFFF;
  --text: #16202B;
  --text-muted: #5B6472;
  --border: #E6E9EE;
  --gold: #FFB400;

  --font-head: 'Poppins', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 10px 30px rgba(8, 22, 43, 0.08);
  --shadow-lg: 0 20px 50px rgba(8, 22, 43, 0.16);
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
}
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 0.5em;
  color: var(--navy-900);
}
p { margin: 0 0 1em; color: var(--text-muted); }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
img { max-width: 100%; display: block; }
svg { width: 100%; height: 100%; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--blue-500);
  margin-bottom: 0.6em;
}

.section-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-head h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }

section { padding: 88px 0; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  border: 2px solid transparent;
  cursor: pointer;
}
.btn-lg { padding: 16px 30px; font-size: 1.05rem; }
.btn-accent {
  background: var(--blue-500);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(46, 134, 214, 0.35);
}
.btn-accent:hover { background: var(--blue-600); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--navy-900); }
.btn-ghost:hover { color: var(--blue-500); }
.btn-outline-light {
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.12); }

/* ===== Promo bar ===== */
.sticky-top-stack {
  position: sticky;
  top: 0;
  z-index: 100;
}
.promo-bar {
  background: linear-gradient(90deg, #FFC94A, var(--gold));
  color: var(--navy-900);
}
.promo-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 10px 24px;
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
}
.promo-icon { width: 18px; height: 18px; flex-shrink: 0; }
.promo-cta {
  background: var(--navy-900);
  color: var(--white);
  padding: 5px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.8rem;
  white-space: nowrap;
}
.promo-cta:hover { background: var(--navy-800); }

.promo-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 180, 0, 0.15);
  border: 1px solid rgba(255, 180, 0, 0.4);
  color: #FFC94A;
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.82rem;
  margin-bottom: 18px;
  animation: promo-pulse-glow 2.4s ease-in-out infinite;
}
.promo-badge svg { width: 16px; height: 16px; flex-shrink: 0; }
@keyframes promo-pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 180, 0, 0.35); }
  50% { box-shadow: 0 0 0 6px rgba(255, 180, 0, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .promo-badge { animation: none; }
}

/* ===== Header ===== */
.site-header {
  background: rgba(247, 248, 250, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 76px;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-img { height: 58px; width: auto; }
.logo-img-invert { filter: brightness(0) invert(1); }
.footer-brand .logo-img { height: 64px; }

.main-nav { display: flex; gap: 28px; }
.main-nav a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy-800);
  position: relative;
}
.main-nav a:hover { color: var(--blue-500); }

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

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--navy-900);
  border-radius: 2px;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  background: linear-gradient(160deg, var(--navy-900), var(--navy-800) 55%, var(--navy-700));
  padding: 120px 0 100px;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.wind-lines { position: absolute; right: -5%; top: 0; width: 65%; height: 100%; }
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.hero-copy { max-width: 640px; }
.hero .eyebrow { color: var(--blue-500); }
.hero h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  margin-bottom: 0.25em;
}
.hero-sub {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--blue-500);
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  margin-bottom: 0.5em;
}
.hero-tagline {
  color: rgba(255,255,255,0.78);
  font-size: 1.05rem;
  max-width: 520px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin: 28px 0; }
.hero-trust {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  font-size: 0.95rem;
}
.stars, .stars-lg { color: var(--gold); letter-spacing: 2px; }
.stars-lg { font-size: 1.4rem; margin-top: 8px; }

.hero-visual { display: flex; justify-content: center; }
.promo-card {
  position: relative;
  width: 100%;
  max-width: 340px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  padding: 36px 28px 28px;
  text-align: center;
}
.promo-card-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--navy-800);
  margin-bottom: 18px;
}
.promo-card-burst {
  position: relative;
  width: 168px;
  height: 168px;
  margin: 0 auto 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: promo-pulse 2.4s ease-in-out infinite;
}
.promo-card-burst::before,
.promo-card-burst::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #FFC94A, var(--gold));
  border-radius: 22px;
}
.promo-card-burst::before { transform: rotate(15deg); }
.promo-card-burst::after { transform: rotate(-15deg); }
.promo-card-amount {
  position: relative;
  z-index: 1;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 2.6rem;
  line-height: 1;
  color: var(--navy-900);
}
.promo-card-off {
  position: relative;
  z-index: 1;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: var(--navy-900);
}
.promo-card h3 { font-size: 1.15rem; margin-bottom: 0.35em; }
.promo-card-expiry { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1.4em; }
.promo-card .btn { width: 100%; }

@keyframes promo-pulse {
  0%, 100% { filter: drop-shadow(0 0 0 rgba(255, 180, 0, 0.4)); }
  50% { filter: drop-shadow(0 0 14px rgba(255, 180, 0, 0.55)); }
}
@media (prefers-reduced-motion: reduce) {
  .promo-card-burst, .promo-badge { animation: none; }
}

/* ===== Trust bar ===== */
.trust-bar { background: var(--white); border-bottom: 1px solid var(--border); padding: 36px 0; }
.trust-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.trust-num {
  display: block;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--navy-900);
}
.trust-label { font-size: 0.85rem; color: var(--text-muted); font-weight: 600; }

/* ===== Why us ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  text-align: left;
}
.why-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: rgba(46, 134, 214, 0.12);
  color: var(--blue-500);
  padding: 12px;
  margin-bottom: 18px;
}
.why-card h3 { font-size: 1.15rem; }
.why-card p { margin: 0; font-size: 0.95rem; }

.signals-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 32px;
}
.signal {
  display: flex; align-items: center; gap: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy-800);
}
.signal-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--blue-500);
  flex-shrink: 0;
}

/* ===== Services ===== */
.services { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.service-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--navy-800);
  color: var(--white);
  padding: 11px;
  margin-bottom: 18px;
}
.service-card h3 { font-size: 1.08rem; }
.service-card p { font-size: 0.92rem; margin-bottom: 1.2em; }
.service-link { font-weight: 700; color: var(--blue-500); font-size: 0.92rem; }
.service-link:hover { color: var(--blue-600); }

/* ===== Reviews ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  margin: 0;
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: var(--shadow);
}
.review-card p { color: var(--text); font-size: 0.98rem; margin-bottom: 1em; }
.review-card footer { font-weight: 700; color: var(--navy-800); font-size: 0.9rem; }
.review-card footer span { font-weight: 500; color: var(--text-muted); }

/* ===== CTA banner ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--blue-500), var(--blue-600));
  text-align: center;
}
.cta-banner h2, .cta-banner p { color: var(--white); }
.cta-banner p { color: rgba(255,255,255,0.9); }
.cta-banner .hero-ctas { justify-content: center; }
.cta-banner .btn-accent {
  background: var(--navy-900);
  box-shadow: none;
}
.cta-banner .btn-accent:hover { background: var(--navy-800); }

/* ===== Contact + Find Us ===== */
.contact-find-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-list { margin: 24px 0 28px; }
.contact-list li {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.contact-label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); font-weight: 700; }
.contact-list a { font-weight: 600; color: var(--navy-800); }
.contact-list a:hover { color: var(--blue-500); }
.social-links a { font-weight: 600; }

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  margin: 24px 0 16px;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; }
.directions-link { font-weight: 700; color: var(--blue-500); }
.directions-link:hover { color: var(--blue-600); }

/* ===== Legal pages ===== */
.legal-page { padding: 72px 0 100px; }
.legal-container { max-width: 760px; }
.legal-container h1 { font-size: clamp(2rem, 4vw, 2.6rem); margin-bottom: 0.3em; }
.legal-updated { color: var(--text-muted); margin-bottom: 2em; }
.legal-container h2 {
  font-size: 1.25rem;
  margin-top: 2em;
}
.legal-container p, .legal-container li { color: var(--text); font-size: 0.98rem; }
.legal-container ul { margin: 0 0 1em; padding-left: 1.4em; list-style: disc; }
.legal-container ul ul { margin-top: 0.5em; }
.legal-container li { margin-bottom: 0.5em; }
.legal-container a { color: var(--blue-500); font-weight: 600; }
.legal-container a:hover { color: var(--blue-600); }

/* ===== Footer ===== */
.site-footer { background: var(--navy-900); color: rgba(255,255,255,0.7); padding-top: 64px; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 48px;
}
.footer-brand p { color: rgba(255,255,255,0.55); margin-top: 14px; font-size: 0.92rem; }
.footer-brand .logo-text { color: var(--white); }
.footer-col h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 16px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col a, .footer-col span { font-size: 0.9rem; color: rgba(255,255,255,0.65); }
.footer-col a:hover { color: var(--blue-500); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
}
.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 24px;
  text-align: center;
}
.footer-bottom-inner a { color: rgba(255,255,255,0.45); }
.footer-bottom-inner a:hover { color: var(--white); }

/* ===== Mobile sticky CTA ===== */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 10px 16px;
  gap: 10px;
  box-shadow: 0 -8px 20px rgba(8,22,43,0.08);
}
.mobile-sticky-cta .btn { flex: 1; }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .contact-find-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .signals-strip { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  section { padding: 64px 0; }
  .main-nav, .header-actions { display: none; }
  .nav-toggle { display: flex; }
  .site-header.nav-open .main-nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 76px; left: 0; right: 0;
    background: var(--white);
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    gap: 16px;
  }
  .site-header.nav-open .header-actions {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 240px; left: 0; right: 0;
    background: var(--white);
    padding: 0 24px 20px;
    gap: 10px;
  }
  .trust-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .hero { padding: 100px 0 90px; }
  .mobile-sticky-cta { display: flex; }
  body { padding-bottom: 70px; }
}
