/* =====================
   RESET & ROOT
   ===================== */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
:root {
  --navy:     #03375B;
  --navy-dk:  #022a47;
  --navy-lt:  #ddeaf5;
  --cream:    #faf8f4;
  --warm:     #f3ede3;
  --border:   #e2ddd5;
  --text:     #1a1a1a;
  --muted:    #6b7a87;
  --white:    #ffffff;
  --rad:      10px;
}
html { scroll-behavior:smooth; -webkit-text-size-adjust:100%; }
body {
  background: var(--cream);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width:100%; display:block; }
a { color: inherit; }

/* =====================
   TYPOGRAPHY
   ===================== */
h1, h2, h3 {
  font-family: 'Cabin', sans-serif;
  line-height: 1.1;
  letter-spacing: -.02em;
}
h1 { font-size: clamp(36px, 8vw, 68px); font-weight:700; }
h2 { font-size: clamp(26px, 5vw, 42px); font-weight:700; }
h3 { font-size: clamp(18px, 3vw, 22px); font-weight:600; }

/* =====================
   LAYOUT HELPERS
   ===================== */
.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}
@media(min-width:640px){ .wrap { padding: 0 32px; } }
@media(min-width:1120px){ .wrap { padding: 0 24px; } }

.section { padding: 64px 0; border-bottom: 1px solid var(--border); }
@media(min-width:768px){ .section { padding: 88px 0; } }
#pricing, #about, #reviews, #faq { scroll-margin-top: 70px; }
/* The FAQ section is the last one before the footer. On wide screens the
   footer's 3-column layout is fairly short, so there isn't always enough
   page left below #faq for the browser to scroll it flush to the top —
   it maxes out early and the Blog section above stays partly in view.
   This adds just enough extra room on those wider screens to fix it. */
@media(min-width:768px){ #faq { padding-bottom: 220px; } }

/* =====================
   BUTTONS
   ===================== */
.btn {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border-radius: 6px;
  transition: all .18s ease;
  line-height: 1;
  cursor: pointer;
  text-align: center;
}
.btn-lg { padding: 15px 28px; font-size: 16px; }
.btn-sm { padding: 10px 18px; font-size: 14px; }

.btn-navy {
  background: var(--navy);
  color: white;
  border: 2px solid var(--navy);
}
.btn-navy:hover { background: var(--navy-dk); border-color: var(--navy-dk); }

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline:hover { background: var(--navy-lt); }

.btn-ghost {
  background: transparent;
  color: var(--muted);
  border: 2px solid var(--border);
}
.btn-ghost:hover { border-color: var(--navy); color: var(--navy); background: var(--navy-lt); }

.btn-white {
  background: white;
  color: var(--navy);
  border: 2px solid white;
}
.btn-white:hover { background: var(--navy-lt); border-color: var(--navy-lt); }

/* =====================
   ANNOUNCE BAR
   ===================== */
.announce {
  background: var(--navy-dk);
  padding: 10px 20px;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,.8);
  line-height: 1.5;
}
.announce a { color: white; font-weight: 600; text-decoration: underline; }
@media(min-width:640px){ .announce { padding: 10px 32px; } }

/* =====================
   HERO
   ===================== */
.hero {
  padding: 60px 20px 56px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  background: var(--cream);
}
@media(min-width:640px){ .hero { padding: 80px 32px 72px; } }

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  background: var(--navy-lt);
  border: 1px solid rgba(3,55,91,.15);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
  letter-spacing: .02em;
}
.hero h1 {
  max-width: 700px;
  margin: 0 auto 20px;
}
.hero h1 em {
  font-style: italic;
  color: var(--navy);
}
.hero-lead {
  font-size: 17px;
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto 36px;
  font-weight: 300;
  line-height: 1.75;
}
.hero-lead strong { color: var(--text); font-weight: 500; }

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
@media(min-width:400px){
  .hero-ctas { flex-direction: row; flex-wrap: wrap; justify-content: center; }
}

/* =====================
   GALLERY STRIP
   ===================== */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
  background: var(--border);
}
@media(min-width:540px){ .gallery-strip { grid-template-columns: repeat(4, 1fr); } }

.gal-item {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
  background: #ddd;
}
.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gal-item:hover img { transform: scale(1.06); }
.gal-cap {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2,42,71,.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 12px;
  opacity: 0;
  transition: opacity .25s;
}
.gal-item:hover .gal-cap { opacity: 1; }
.gal-cap span {
  color: white;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .03em;
}

/* =====================
   SOCIAL PROOF BAR
   ===================== */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 18px 20px;
}
@media(min-width:640px){ .trust-bar { padding: 18px 32px; } }
.trust-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 18px 32px;
  align-items: center;
  justify-content: center;
}
@media(min-width:768px){ .trust-inner { justify-content: space-between; } }
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 400;
}
.trust-item strong { color: var(--text); font-weight: 600; }
.trust-icon { font-size: 16px; }
a.trust-item-google { text-decoration: none; }
a.trust-item-google:hover { text-decoration: underline; }

/* =====================
   PRICING
   ===================== */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 36px;
}
@media(min-width:560px){ .pricing-grid { grid-template-columns: repeat(3, 1fr); } }

.p-card {
  border: 1px solid var(--border);
  border-radius: var(--rad);
  padding: 28px 24px;
  background: var(--white);
  position: relative;
  transition: box-shadow .2s, transform .2s;
}
.p-card:hover { box-shadow: 0 6px 30px rgba(3,55,91,.1); transform: translateY(-2px); }
.p-card.featured {
  background: var(--navy);
  border-color: var(--navy);
  color: white;
}
.p-badge {
  position: absolute;
  top: -12px;
  left: 20px;
  background: white;
  color: var(--navy);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  letter-spacing: .06em;
  text-transform: uppercase;
  border: 1px solid rgba(3,55,91,.25);
}
.p-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
  margin-bottom: 8px;
  font-weight: 600;
}
.featured .p-label { color: rgba(255,255,255,.6); }
.p-amount {
  font-family: 'Cabin', sans-serif;
  font-size: 52px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 10px;
}
.p-note {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}
.featured .p-note { color: rgba(255,255,255,.65); }
.pricing-small {
  margin-top: 14px;
  font-size: 13px;
  color: var(--muted);
}

/* =====================
   WHY CARDS
   ===================== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 36px;
}
@media(min-width:600px){ .why-grid { grid-template-columns: repeat(3, 1fr); } }

.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--rad);
  padding: 26px 22px;
}
.why-icon { font-size: 26px; margin-bottom: 14px; }
.why-card h3 { margin-bottom: 8px; font-size: 17px; }
.why-card p { font-size: 14px; color: var(--muted); line-height: 1.7; font-weight: 300; }

/* =====================
   ABOUT
   ===================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media(min-width:768px){ .about-grid { grid-template-columns: 1fr 1fr; gap: 64px; } }

.about-body {
  font-size: 15px;
  line-height: 1.85;
  color: #3a4f5e;
  font-weight: 300;
  margin-bottom: 14px;
}
.about-body strong { color: var(--text); font-weight: 500; }
.brand-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}
.brand-tag {
  font-size: 12px;
  background: var(--navy-lt);
  color: var(--navy);
  padding: 5px 13px;
  border-radius: 100px;
  font-weight: 600;
  border: 1px solid rgba(3,55,91,.15);
  text-decoration: none;
  display: inline-block;
  transition: background 0.15s ease;
}
.brand-tag:hover {
  background: var(--navy);
  color: var(--white);
}
.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
  margin-bottom: 16px;
}
.area-tag {
  font-size: 12px;
  background: var(--navy-lt);
  color: var(--navy);
  padding: 5px 13px;
  border-radius: 100px;
  font-weight: 600;
  border: 1px solid rgba(3,55,91,.15);
  text-decoration: none;
  display: inline-block;
  transition: background 0.15s ease;
}
.area-tag:hover {
  background: var(--navy);
  color: var(--white);
}
.about-img {
  border-radius: var(--rad);
  overflow: hidden;
  border: 1px solid var(--border);
}
.about-img img { width: 100%; display: block; }

/* =====================
   TESTIMONIALS
   ===================== */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 36px;
}
@media(min-width:540px){ .reviews-grid { grid-template-columns: repeat(2, 1fr); } }

.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--rad);
  padding: 22px;
  transition: box-shadow .2s;
}
.review-card:hover { box-shadow: 0 4px 20px rgba(3,55,91,.07); }
.review-stars { color: #f59e0b; font-size: 14px; margin-bottom: 10px; letter-spacing: .05em; }
.review-body {
  font-size: 14px;
  font-style: italic;
  line-height: 1.75;
  color: #3a4f5e;
  font-weight: 300;
  margin-bottom: 12px;
}
.review-author {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
}
.reviews-note {
  margin-top: 14px;
  font-size: 12px;
  color: var(--muted);
  font-style: italic;
}
.review-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
  align-items: center;
}
.btn-google {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  color: var(--text);
  border: 2px solid var(--border);
}
.btn-google:hover { background: var(--warm); border-color: var(--border); }

/* =====================
   FAQ + AREA
   ===================== */
.faq-area-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media(min-width:768px){ .faq-area-grid { grid-template-columns: 1fr 1fr; gap: 64px; } }

.area-body {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 14px;
}

.faq-list { margin-top: 8px; }
.faq-row {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.faq-row:first-child { border-top: 1px solid var(--border); }
.faq-q {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  padding-top: 1px;
}
.faq-a {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
  font-weight: 300;
}



/* =====================
   FOOTER
   ===================== */
/* =====================
   BLOG PREVIEW
   ===================== */
.blog-preview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 24px;
}
@media(min-width:600px){ .blog-preview-grid { grid-template-columns: repeat(2, 1fr); } }
@media(min-width:900px){ .blog-preview-grid { grid-template-columns: repeat(3, 1fr); } }

.blog-preview-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--rad);
  overflow: hidden;
  text-decoration: none;
  color: var(--text);
  display: flex;
  flex-direction: row;
  align-items: stretch;
  transition: box-shadow .2s, transform .2s;
}
@media(min-width:600px){ .blog-preview-card { flex-direction: column; } }
.blog-preview-card:hover { box-shadow: 0 4px 20px rgba(3,55,91,.1); transform: translateY(-2px); }
.blog-preview-thumb {
  flex-shrink: 0;
  width: 90px;
  overflow: hidden;
  background: var(--navy-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}
@media(min-width:600px){ .blog-preview-thumb { width: 100%; aspect-ratio: 16/9; } }
.blog-preview-thumb img { width:100%; height:100%; object-fit:cover; }
.blog-preview-body { padding: 12px 14px; flex: 1; display: flex; flex-direction: column; justify-content: center; }
@media(min-width:600px){ .blog-preview-body { padding: 16px; } }
.blog-preview-meta { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; margin-bottom: 5px; }
.blog-preview-tag {
  font-size: 9px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; background: var(--navy-lt); color: var(--navy);
  padding: 2px 8px; border-radius: 100px;
}
.blog-preview-date { font-size: 11px; color: var(--muted); }
.blog-preview-body h3 { font-size: 14px; line-height: 1.3; margin-bottom: 4px; font-family:'Cabin',sans-serif; }
@media(min-width:600px){ .blog-preview-body h3 { font-size: 16px; } }
.blog-preview-body p { font-size: 12px; color: var(--muted); line-height: 1.6; font-weight: 300; flex: 1; display: none; }
@media(min-width:600px){ .blog-preview-body p { display: block; } }
.blog-preview-read { margin-top: 10px; font-size: 12px; font-weight: 600; color: var(--navy); display: none; }
@media(min-width:600px){ .blog-preview-read { display: block; } }
.blog-preview-cta { margin-top: 24px; text-align: center; }

/* =====================
   SPARKSPARES PROMO
   ===================== */
.spark-promo { padding: 40px 20px; }
.spark-promo-card { background: #F95204; border-radius: var(--rad); padding: 36px 26px; text-align: center; }
.spark-promo-logo { max-width: 190px; width: 100%; height: auto; margin: 0 auto 18px; display: block; }
.spark-promo-tag { display: inline-block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; color: #F95204; background: white; padding: 5px 14px; border-radius: 100px; margin-bottom: 14px; }
.spark-promo h2 { color: white; font-size: clamp(20px,3.6vw,26px); margin-bottom: 10px; }
.spark-promo p { color: rgba(255,255,255,.92); font-size: 14.5px; font-weight: 400; max-width: 420px; margin: 0 auto 22px; line-height: 1.65; }

.spark-icon-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin: 0 auto 22px; max-width: 400px; }
.spark-icon-chip { display: flex; flex-direction: column; align-items: center; gap: 6px; width: 58px; }
.spark-icon-chip .chip-badge { width: 44px; height: 44px; background: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 8px rgba(0,0,0,.1); }
.spark-icon-chip .chip-badge img { width: 22px; height: 22px; object-fit: contain; }
.spark-icon-chip span { font-size: 10px; font-weight: 600; color: white; line-height: 1.25; }

.spark-promo-form { max-width: 380px; margin: 0 auto; }
.spark-promo-form-row { display: flex; flex-direction: column; gap: 10px; }
@media(min-width:480px){ .spark-promo-form-row { flex-direction: row; } }
.spark-promo-form-row input[type=email] {
  flex: 1; border: none; border-radius: 7px; padding: 12px 14px;
  font-family: inherit; font-size: 14px; background: white; color: #1a1a1a; outline: none;
}
.spark-promo-form-row input[type=email]::placeholder { color: #9a9a9a; }
.spark-promo-form-row input[type=email]:focus { box-shadow: 0 0 0 3px rgba(13,13,13,.25); }
.btn-spark { background: #0d0d0d; color: white; border: 2px solid #0d0d0d; padding: 11px 20px; font-size: 14.5px; white-space: nowrap; }
.btn-spark:hover { background: #000; border-color: #000; }
.spark-promo .form-status { display: block; margin-top: 10px; font-size: 13px; }
.spark-promo .form-status.success { color: #0d0d0d; font-weight: 700; }
.spark-promo .form-status.error { color: #3d1200; font-weight: 700; }

/* Desktop: split into a left (brand/message) and right (icons + form) layout instead of
   everything stacked and centered. */
@media(min-width:860px){
  .spark-promo-card { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: center; text-align: left; padding: 40px 44px; }
  .spark-promo-logo { margin: 0 0 16px; }
  .spark-promo p { margin: 0; max-width: none; }
  .spark-icon-row, .spark-promo-form { margin-left: 0; margin-right: 0; max-width: none; }
  .spark-icon-row { justify-content: flex-start; }
}

/* Honeypot field: present for spam protection, never visible to real visitors */
.form-honeypot { position: absolute; left: -9999px; top: -9999px; }

footer {
  background: var(--navy);
  color: white;
  padding: 52px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-bottom: 44px;
}
@media(min-width:768px){ .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }

.footer-brand {
  font-family: 'Cabin', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -.02em;
}
.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,.45);
  font-weight: 300;
  line-height: 1.7;
  max-width: 230px;
}
.footer-col-title {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: rgba(255,255,255,.35);
  font-weight: 700;
  margin-bottom: 14px;
}
.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  color: rgba(255,255,255,.65);
  text-decoration: none;
  font-size: 14px;
  font-weight: 300;
  transition: color .15s;
}
.footer-areas-block {
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 8px;
  padding-top: 26px;
  margin-bottom: 26px;
}
.footer-nav-areas {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-nav-areas a {
  font-size: 12.5px;
  color: rgba(255,255,255,.6);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  padding: 5px 12px;
  border-radius: 100px;
  transition: all .15s ease;
}
.footer-nav-areas a:hover {
  background: rgba(255,255,255,.14);
  color: white;
}

.footer-nav a:hover { color: white; }
.footer-nav a.footer-contact-highlight {
  color: white;
  font-weight: 600;
  font-size: 15px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
@media(min-width:768px){
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: flex-end; }
}
.footer-legal {
  font-size: 11px;
  color: rgba(255,255,255,.25);
  line-height: 1.8;
  max-width: 580px;
}
.footer-copy {
  font-size: 11px;
  color: rgba(255,255,255,.25);
  white-space: nowrap;
}

/* =====================
   SECTION LABELS
   ===================== */
.label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--navy);
  margin-bottom: 12px;
}

/* =====================
   SOCIAL STRIP
   ===================== */
.social-strip {
  background: var(--navy-dk);
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
@media(min-width:640px){ .social-strip { padding: 14px 32px; } }
.social-strip-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 20px;
  justify-content: center;
}
@media(min-width:640px){ .social-strip-inner { justify-content: space-between; } }
.social-strip-label {
  font-size: 12px;
  color: rgba(255,255,255,.4);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 600;
  white-space: nowrap;
}
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.75);
  text-decoration: none;
  padding: 7px 13px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  transition: all .18s ease;
  white-space: nowrap;
}
.social-btn:hover { background: rgba(255,255,255,.14); color: white; border-color: rgba(255,255,255,.25); }
.social-btn.instagram:hover { background: rgba(225,48,108,.25); border-color: rgba(225,48,108,.4); }
.social-btn.facebook:hover { background: rgba(24,119,242,.25); border-color: rgba(24,119,242,.4); }
.social-btn.tiktok:hover { background: rgba(255,255,255,.12); }
.social-btn.trustpilot:hover { background: rgba(0,182,122,.2); border-color: rgba(0,182,122,.4); }
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* =====================
   REVEAL ANIMATION
   ===================== */
.scroll-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: white;
  border: none;
  cursor: pointer;
  font-size: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
  z-index: 50;
  box-shadow: 0 2px 16px rgba(3,55,91,.35);
}
.scroll-top.show { opacity: 1; pointer-events: auto; }
.scroll-top:hover { background: var(--navy-dk); }

/* =====================
   HERO CONTACT LINE
   ===================== */
.hero-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  align-items: center;
  justify-content: center;
  margin-top: 26px;
}
.hero-contact a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--navy);
  font-weight: 600;
  font-size: 14.5px;
  text-decoration: none;
}
.hero-contact a:hover { text-decoration: underline; }
.hero-contact svg { flex-shrink: 0; }
