/* ==========================================================================
   Everywhere Ads — clone stylesheet
   Design tokens pulled directly from the live site's CSS custom properties
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400&display=swap');

:root {
  --background: 220 20% 97%;
  --foreground: 220 25% 10%;
  --card: 0 0% 100%;
  --card-foreground: 220 25% 10%;
  --primary: 210 100% 45%;
  --primary-foreground: 0 0% 100%;
  --secondary: 160 85% 40%;
  --secondary-foreground: 0 0% 100%;
  --muted: 220 15% 92%;
  --muted-foreground: 220 10% 45%;
  --accent: 35 95% 55%;
  --accent-foreground: 0 0% 100%;
  --border: 220 15% 88%;
  --radius: 0.75rem;

  --sidebar-background: 220 25% 10%;
  --sidebar-foreground: 220 15% 92%;
  --sidebar-accent: 220 20% 18%;

  --gradient-hero: linear-gradient(135deg, hsl(220 25% 8%) 0%, hsl(210 60% 15%) 50%, hsl(220 25% 8%) 100%);
  --gradient-primary: linear-gradient(135deg, hsl(210 100% 45%), hsl(210 100% 55%));
  --gradient-accent: linear-gradient(135deg, hsl(35 95% 55%), hsl(25 95% 50%));
  --gradient-card: linear-gradient(180deg, hsl(0 0% 100%) 0%, hsl(220 20% 97%) 100%);
  --gradient-hero-text: linear-gradient(135deg, hsl(210 100% 55%), hsl(160 85% 45%));

  --shadow-sm: 0 1px 2px hsl(220 25% 10% / 0.06);
  --shadow-md: 0 8px 24px hsl(220 25% 10% / 0.08);
  --shadow-lg: 0 20px 45px hsl(220 25% 10% / 0.16);
}

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

html { scroll-behavior: smooth; }

html, body { overflow-x: hidden; width: 100%; }

body {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }

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

button { font-family: inherit; cursor: pointer; border: none; background: none; }

ul { list-style: none; }

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: hsl(var(--primary));
}

.section-head { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.section-head .eyebrow { justify-content: center; margin-bottom: 12px; }
.section-head h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 16px; }
.section-head p { color: hsl(var(--muted-foreground)); font-size: 17px; }

section { padding: 88px 0; }
section.tight { padding: 56px 0; }
section[id] { scroll-margin-top: 76px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-accent { background: var(--gradient-accent); color: hsl(var(--accent-foreground)); box-shadow: var(--shadow-md); }
.btn-accent:hover { box-shadow: var(--shadow-lg); }
.btn-outline { background: transparent; color: #fff; border: 1.5px solid hsl(0 0% 100% / 0.35); }
.btn-outline:hover { background: hsl(0 0% 100% / 0.08); }
.btn-outline-light { background: transparent; color: hsl(var(--foreground)); border: 1.5px solid hsl(var(--border)); }
.btn-outline-light:hover { background: hsl(var(--muted)); }
.btn-primary { background: var(--gradient-primary); color: hsl(var(--primary-foreground)); box-shadow: var(--shadow-md); }
.btn-primary:hover { box-shadow: var(--shadow-lg); }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 18px; font-size: 14px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: hsl(220 25% 8% / 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid hsl(0 0% 100% / 0.08);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 12px;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 18px; color: #fff; flex-shrink: 0; }
.brand-badge {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--gradient-primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800; color: #fff;
  box-shadow: var(--shadow-sm);
}
.brand-badge-img {
  height: 38px;
  width: auto;
  display: block;
}
.footer-logo-img {
  height: 56px;
  width: auto;
  display: block;
  margin-bottom: 4px;
}
.brand-word .accent-text { color: hsl(var(--accent)); }

.main-nav { display: flex; align-items: center; gap: 32px; }
.main-nav a { font-size: 15px; font-weight: 600; color: hsl(220 15% 80%); transition: color 0.15s ease; }
.main-nav a:hover { color: #fff; }

.header-actions { display: flex; align-items: center; gap: 20px; flex-shrink: 0; }

@media (max-width: 420px) {
  .site-header .container { padding: 0 16px; }
  .brand-word { font-size: 15px; }
  .header-actions { gap: 10px; }
  .header-actions .btn-sm { padding: 10px 14px; font-size: 13px; }
}
.header-phone { display: none; align-items: center; gap: 8px; font-size: 14px; font-weight: 700; color: #fff; }
.header-phone svg { width: 16px; height: 16px; color: hsl(var(--accent)); }

.nav-toggle {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; color: #fff;
}
.nav-toggle svg { width: 24px; height: 24px; }

@media (min-width: 900px) {
  .main-nav { display: flex; }
  .header-phone { display: flex; }
  .nav-toggle { display: none; }
}
@media (max-width: 899px) {
  .main-nav {
    position: fixed; top: 76px; left: 0; right: 0; z-index: 90;
    height: calc(100vh - 76px);
    overflow-y: auto;
    background: hsl(220 25% 8%);
    flex-direction: column; align-items: flex-start; gap: 0;
    padding: 12px 24px 24px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }
  .main-nav.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .main-nav a { width: 100%; padding: 14px 0; border-bottom: 1px solid hsl(0 0% 100% / 0.08); }
}

/* ---------- Hero ---------- */
.hero {
  background: var(--gradient-hero);
  color: #fff;
  padding: 64px 0 56px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 78% 32%, hsl(35 95% 55% / 0.14), transparent 55%),
              radial-gradient(circle at 15% 80%, hsl(210 100% 45% / 0.18), transparent 55%);
  pointer-events: none;
}
.hero .container { position: relative; }
.hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: hsl(0 0% 100% / 0.06);
  border: 1px solid hsl(0 0% 100% / 0.14);
  padding: 8px 16px; border-radius: 999px;
  font-size: 13px; font-weight: 600; color: hsl(210 90% 80%);
  margin-bottom: 24px;
}
.hero-pill svg { width: 14px; height: 14px; }

.hero-grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
@media (min-width: 960px) { .hero-grid { grid-template-columns: 1.15fr 1fr; gap: 56px; } }

.hero-title {
  font-size: clamp(38px, 6vw, 64px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.04;
  margin-bottom: 22px;
}
.hero-title span { display: block; }
.hero-title .line-white { color: #fff; }
.hero-title .line-gradient {
  background: var(--gradient-hero-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-title .line-accent { color: hsl(var(--accent)); }

.hero-copy { font-size: 17px; color: hsl(220 15% 78%); max-width: 560px; margin-bottom: 32px; }
.hero-copy strong { color: #fff; font-weight: 700; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 28px; }

.hero-media { position: relative; }
.hero-media img {
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  border: 1px solid hsl(0 0% 100% / 0.12);
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 3 / 2;
}

.hero-cta-strip {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.hero-cta-strip .btn { flex-shrink: 0; }
.hero-cta-strip p { font-size: 15px; font-weight: 700; color: #fff; }
.hero-cta-strip p .accent-text { color: hsl(var(--accent)); }

/* ---------- Stats strip ---------- */
.stats-strip {
  background: hsl(220 25% 8%);
  border-top: 1px solid hsl(0 0% 100% / 0.08);
  padding: 40px 0;
}
.stats-strip .stats-grid { grid-template-columns: repeat(3, 1fr); }
.stat { text-align: center; }
.stat .num { font-size: clamp(28px, 4vw, 40px); font-weight: 900; color: #fff; letter-spacing: -0.02em; }
.stats-strip .stat .num { background: var(--gradient-hero-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat .label { font-size: 13px; color: hsl(220 15% 70%); font-weight: 600; margin-top: 4px; }

.stats-grid { display: grid; gap: 24px; }

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
}
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: hsl(var(--primary) / 0.3); }
.service-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--gradient-primary);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  color: #fff;
}
.service-icon svg { width: 24px; height: 24px; }
.service-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.service-card p { font-size: 14.5px; color: hsl(var(--muted-foreground)); }

.services-note {
  text-align: center; margin-top: 40px; font-size: 15px; color: hsl(var(--muted-foreground)); font-weight: 600;
}

/* ---------- Packages ---------- */
.packages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: stretch;
}
@media (min-width: 900px) { .packages-grid { grid-template-columns: repeat(3, 1fr); } }

.package-card {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 20px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.package-card.featured {
  border-color: hsl(var(--accent));
  box-shadow: var(--shadow-lg);
  transform: scale(1.02);
}
.popular-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: hsl(35 95% 55%);
  color: #fff; font-size: 13px; font-weight: 700;
  padding: 4px 16px; border-radius: 999px;
}
.package-card h3 { font-size: 22px; font-weight: 800; margin-bottom: 4px; }
.package-duration { font-size: 13px; font-weight: 700; color: hsl(var(--primary)); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 18px; }
.package-price { font-size: 34px; font-weight: 900; letter-spacing: -0.02em; margin-bottom: 2px; }
.package-price span { font-size: 15px; font-weight: 600; color: hsl(var(--muted-foreground)); }
.package-alt-price { font-size: 13.5px; color: hsl(var(--muted-foreground)); margin-bottom: 24px; }
.package-features { flex: 1; display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.package-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; }
.package-features svg { width: 18px; height: 18px; color: hsl(var(--secondary)); flex-shrink: 0; margin-top: 2px; }

/* ---------- CTA strip ---------- */
.cta-strip {
  background: var(--gradient-hero);
  padding: 48px 0;
  text-align: center;
}
.cta-strip .container { display: flex; flex-direction: column; align-items: center; gap: 18px; }
.cta-strip h3 { color: #fff; font-size: 22px; font-weight: 800; }
.cta-strip h3 .accent-text { color: hsl(var(--accent)); }

/* ---------- Coverage ---------- */
.coverage-cities {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px;
  margin-bottom: 48px;
}
.city-btn {
  padding: 10px 22px;
  border-radius: 999px;
  border: 1.5px solid hsl(var(--border));
  background: hsl(var(--card));
  font-weight: 700; font-size: 14.5px;
  transition: all 0.15s ease;
}
.city-btn:hover { border-color: hsl(var(--primary)); color: hsl(var(--primary)); }
.city-btn.active { background: var(--gradient-primary); border-color: transparent; color: #fff; box-shadow: var(--shadow-sm); }

.map-panel {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 20px;
  padding: 16px;
  text-align: center;
  margin-bottom: 48px;
}
.map-panel h3 { font-size: 20px; font-weight: 800; margin-bottom: 8px; }
.map-panel p { color: hsl(var(--muted-foreground)); font-size: 15px; max-width: 480px; margin: 0 auto; }

#coverageMap {
  width: 100%;
  height: 420px;
  border-radius: 14px;
  overflow: hidden;
  background: hsl(var(--muted));
  z-index: 1;
}
.map-caption { margin-top: 16px; }

/* Leaflet marker popup styling to match the design system */
.leaflet-popup-content-wrapper {
  border-radius: 12px;
  box-shadow: var(--shadow-md);
}
.leaflet-popup-content { font-family: 'DM Sans', sans-serif; margin: 14px 16px; line-height: 1.4; }
.leaflet-popup-content strong { display: block; font-size: 16px; margin-bottom: 4px; }
.leaflet-popup-content .popup-stat {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  color: hsl(var(--primary));
  background: hsl(var(--primary) / 0.1);
  border-radius: 999px;
  padding: 3px 10px;
  margin-bottom: 8px;
}
.leaflet-popup-content .popup-insight {
  display: block;
  font-size: 13px;
  color: hsl(var(--muted-foreground));
  margin-bottom: 10px;
}
.leaflet-popup-content .popup-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: hsl(var(--foreground));
  margin-bottom: 6px;
}
.popup-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.popup-tags li {
  font-size: 12px;
  font-weight: 600;
  background: hsl(var(--muted));
  color: hsl(var(--foreground));
  border-radius: 6px;
  padding: 4px 8px;
}
.city-pin {
  width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  background: var(--gradient-primary);
  border: 2px solid #fff;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: var(--shadow-sm);
}
.city-pin.active-pin { background: var(--gradient-accent); width: 36px; height: 36px; }
.city-pin svg { transform: rotate(45deg); width: 14px; height: 14px; color: #fff; }
.city-pin.active-pin svg { width: 16px; height: 16px; }

@media (max-width: 700px) {
  #coverageMap { height: 320px; }
}

.coverage-stats { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 760px) { .coverage-stats { grid-template-columns: repeat(5, 1fr); } }
.coverage-stats .stat .num { color: hsl(var(--primary)); }
.coverage-stats .stat .label { color: hsl(var(--muted-foreground)); }

.coverage-footnote {
  margin-top: 40px;
  text-align: center;
  background: hsl(var(--muted));
  border-radius: var(--radius);
  padding: 24px;
}
.coverage-footnote strong { display: block; font-size: 15px; margin-bottom: 4px; }
.coverage-footnote p { font-size: 14px; color: hsl(var(--muted-foreground)); }

/* ---------- Partners ---------- */
.partners-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 56px;
}
@media (min-width: 620px) { .partners-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .partners-grid { grid-template-columns: repeat(4, 1fr); } }
.partner-card {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  padding: 28px;
}
.partner-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.partner-card p { font-size: 14.5px; color: hsl(var(--muted-foreground)); }

.team-photo-block { text-align: center; }
.team-photo-block img {
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  max-width: 780px;
  margin: 0 auto 16px;
  width: 100%;
  height: auto;
}
.team-photo-block p { font-weight: 700; color: hsl(var(--muted-foreground)); font-size: 14.5px; }

/* ---------- About ---------- */
.about-section { background: hsl(220 25% 8%); color: #fff; }
.about-grid { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: start; }
@media (min-width: 900px) { .about-grid { grid-template-columns: 1fr 1fr; } }
.about-copy h2 { font-size: clamp(28px, 4vw, 38px); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 20px; }
.about-copy p { color: hsl(220 15% 78%); font-size: 15.5px; margin-bottom: 16px; }

.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.about-feature h4 { font-size: 16px; font-weight: 700; margin-bottom: 6px; display:flex; align-items:center; gap:8px;}
.about-feature h4 svg { width: 20px; height: 20px; color: hsl(var(--accent)); }
.about-feature p { font-size: 14px; color: hsl(220 15% 72%); }

/* ---------- Beyond South Florida ---------- */
.cities-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 18px;
}
@media (min-width: 640px) { .cities-grid { grid-template-columns: repeat(3, 1fr); } }
.city-card {
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  padding: 22px;
  background: hsl(var(--card));
}
.city-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.city-card p { font-size: 13.5px; color: hsl(var(--muted-foreground)); }

/* ---------- Contact ---------- */
.contact-section { background: hsl(var(--muted)); }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 0.85fr 1.15fr; } }

.contact-info-card {
  background: hsl(220 25% 8%);
  color: #fff;
  border-radius: 20px;
  padding: 36px;
}
.contact-info-row { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 22px; }
.contact-info-row svg { width: 20px; height: 20px; color: hsl(var(--accent)); flex-shrink: 0; margin-top: 2px; }
.contact-info-row strong { display: block; font-size: 15.5px; }
.contact-info-row span { font-size: 13.5px; color: hsl(220 15% 72%); }
.contact-why { margin-top: 28px; border-top: 1px solid hsl(0 0% 100% / 0.1); padding-top: 24px; }
.contact-why h4 { font-size: 15px; font-weight: 700; margin-bottom: 12px; }
.contact-why li { display: flex; gap: 8px; font-size: 14px; color: hsl(220 15% 80%); margin-bottom: 10px; }
.contact-why li svg { width: 16px; height: 16px; color: hsl(var(--secondary)); flex-shrink: 0; margin-top: 2px; }

.contact-form-card {
  background: hsl(var(--card));
  border-radius: 20px;
  padding: 36px;
  box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.field label { font-size: 13.5px; font-weight: 700; }
.field input, .field textarea {
  border: 1.5px solid hsl(var(--border));
  border-radius: 10px;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 14.5px;
  background: hsl(var(--card));
  color: hsl(var(--foreground));
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: hsl(var(--primary));
  box-shadow: 0 0 0 3px hsl(var(--primary) / 0.15);
}
.field textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: 12.5px; color: hsl(var(--muted-foreground)); margin-top: 10px; text-align: center; }
.form-success {
  display: none;
  background: hsl(160 85% 40% / 0.1);
  border: 1px solid hsl(160 85% 40% / 0.3);
  color: hsl(160 85% 28%);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}
.form-success.show { display: block; }
.form-error {
  display: none;
  background: hsl(0 84% 60% / 0.1);
  border: 1px solid hsl(0 84% 60% / 0.3);
  color: hsl(0 70% 40%);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}
.form-error.show { display: block; }
.form-error a { text-decoration: underline; }
.honeypot-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-note code {
  background: hsl(var(--muted));
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 12px;
}

/* ---------- Footer ---------- */
.site-footer { background: hsl(220 25% 8%); color: hsl(220 15% 75%); padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 40px; margin-bottom: 40px; }
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer-brand p { font-size: 14.5px; margin: 16px 0 20px; max-width: 340px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 10px;
  background: hsl(0 0% 100% / 0.06);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s ease;
}
.footer-social a:hover { background: hsl(0 0% 100% / 0.14); }
.footer-social svg { width: 18px; height: 18px; }
.footer-col h5 { color: #fff; font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col li { margin-bottom: 12px; font-size: 14.5px; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid hsl(0 0% 100% / 0.08);
  padding-top: 24px;
  display: flex; flex-wrap: wrap; gap: 12px;
  align-items: center; justify-content: space-between;
  font-size: 13.5px;
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a:hover { color: #fff; }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }

@media (max-width: 700px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-cta-strip { flex-direction: column; align-items: flex-start; }
  section { padding: 64px 0; }
}
