/* ============================================================
   HLOPHE OUTDOOR MEDIA — Design System
   iOS 26 Liquid Glass | Professional Enterprise Grade
   ============================================================ */

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

/* ---- Root Variables ---- */
:root {
  /* Backgrounds */
  --bg-base:    #05051a;
  --bg-raised:  #09091f;
  --bg-overlay: rgba(9, 9, 31, 0.85);

  /* Glass Surfaces — layered opacity */
  --glass-1: rgba(255, 255, 255, 0.04);
  --glass-2: rgba(255, 255, 255, 0.07);
  --glass-3: rgba(255, 255, 255, 0.11);
  --glass-4: rgba(255, 255, 255, 0.16);

  /* Glass Borders */
  --border-dim:    rgba(255, 255, 255, 0.08);
  --border-soft:   rgba(255, 255, 255, 0.14);
  --border-bright: rgba(255, 255, 255, 0.26);

  /* Accent Palette */
  --accent:       #7c3aed;
  --accent-mid:   #9b59d6;
  --accent-light: #a78bfa;
  --accent-pale:  #c4b5fd;
  --accent-glow:  rgba(124, 58, 237, 0.30);

  /* Text Hierarchy */
  --t1: rgba(255, 255, 255, 0.97);
  --t2: rgba(255, 255, 255, 0.85);
  --t3: rgba(255, 255, 255, 0.65);
  --t4: rgba(255, 255, 255, 0.45);

  /* Layout */
  --max-w:        1200px;
  --gutter:       64px;
  --section-v:    120px;

  /* Radius */
  --r-sm:  10px;
  --r-md:  16px;
  --r-lg:  22px;
  --r-xl:  32px;
  --r-2xl: 48px;

  /* Easing */
  --ease-spring: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out:    cubic-bezier(0.33, 1, 0.68, 1);
  --ease-io:     cubic-bezier(0.45, 0, 0.55, 1);
}

/* ---- Reset ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100%;
}
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg-base);
  color: var(--t1);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  position: relative;
}
*, *::before, *::after { box-sizing: border-box; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; }
svg { display: block; overflow: visible; }

/* ---- Ambient Background ---- */
.bg-ambient {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 70% 50% at 15% 10%,  rgba(124, 58, 237, 0.12) 0%, transparent 65%),
    radial-gradient(ellipse 60% 50% at 85% 80%,  rgba(109, 40, 217, 0.09) 0%, transparent 65%),
    radial-gradient(ellipse 80% 60% at 50% 50%,  rgba(5,   5,  26, 0.50) 0%, transparent 100%);
}

/* ============================================================
   GLASS COMPONENTS — iOS 26 Vibrancy System
   ============================================================ */

/* Base glass — subtle surface */
.glass {
  background: linear-gradient(145deg,
    rgba(255,255,255,0.09) 0%,
    rgba(255,255,255,0.04) 60%,
    rgba(255,255,255,0.02) 100%
  );
  backdrop-filter: blur(32px) saturate(1.8) brightness(1.05);
  -webkit-backdrop-filter: blur(32px) saturate(1.8) brightness(1.05);
  border: 1px solid var(--border-soft);
  border-top-color: var(--border-bright);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.14),
    inset 0 -1px 0 rgba(0,0,0,0.12),
    0 4px 24px rgba(0,0,0,0.28),
    0 1px 4px rgba(0,0,0,0.18);
  border-radius: var(--r-lg);
}

/* Deep glass — elevated panel */
.glass-deep {
  background: linear-gradient(145deg,
    rgba(255,255,255,0.13) 0%,
    rgba(255,255,255,0.06) 50%,
    rgba(255,255,255,0.03) 100%
  );
  backdrop-filter: blur(48px) saturate(2.0) brightness(1.08);
  -webkit-backdrop-filter: blur(48px) saturate(2.0) brightness(1.08);
  border: 1px solid var(--border-soft);
  border-top-color: var(--border-bright);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.20),
    inset 0 -1px 0 rgba(0,0,0,0.15),
    0 12px 48px rgba(0,0,0,0.35),
    0 4px 16px rgba(0,0,0,0.20);
  border-radius: var(--r-xl);
}

/* Tinted glass — accent surface */
.glass-accent {
  background: linear-gradient(145deg,
    rgba(124,58,237,0.18) 0%,
    rgba(124,58,237,0.08) 60%,
    rgba(124,58,237,0.04) 100%
  );
  backdrop-filter: blur(32px) saturate(1.6);
  -webkit-backdrop-filter: blur(32px) saturate(1.6);
  border: 1px solid rgba(124,58,237,0.30);
  border-top-color: rgba(167,139,250,0.40);
  box-shadow:
    inset 0 1px 0 rgba(167,139,250,0.18),
    0 8px 32px rgba(124,58,237,0.20);
  border-radius: var(--r-lg);
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

section { position: relative; z-index: 1; overflow-x: hidden; }
.section-pad { padding: var(--section-v) 0; }

.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 14px 5px 10px;
  border-radius: 50px;
  background: rgba(124,58,237,0.12);
  border: 1px solid rgba(124,58,237,0.28);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-pale);
  margin-bottom: 20px;
}
.section-label .dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--accent-light);
  flex-shrink: 0;
}

.section-heading {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--t1);
}
.section-heading em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent-light), var(--accent-pale));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-body {
  font-size: 1.05rem;
  color: var(--t2);
  line-height: 1.75;
  max-width: 580px;
  margin-top: 16px;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header .section-body {
  margin-left: auto;
  margin-right: auto;
}

.divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border-dim), transparent);
  max-width: var(--max-w);
  margin: 0 auto;
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal        { opacity: 0; transform: translateY(32px); transition: opacity 0.75s var(--ease-spring), transform 0.75s var(--ease-spring); }
.reveal-left   { opacity: 0; transform: translateX(-40px); transition: opacity 0.75s var(--ease-spring), transform 0.75s var(--ease-spring); }
.reveal-right  { opacity: 0; transform: translateX(40px); transition: opacity 0.75s var(--ease-spring), transform 0.75s var(--ease-spring); }
.reveal-scale  { opacity: 0; transform: scale(0.95); transition: opacity 0.75s var(--ease-spring), transform 0.75s var(--ease-spring); }
.is-visible    { opacity: 1 !important; transform: none !important; }
.d-100 { transition-delay: 0.10s; }
.d-200 { transition-delay: 0.20s; }
.d-300 { transition-delay: 0.30s; }
.d-400 { transition-delay: 0.40s; }
.d-500 { transition-delay: 0.50s; }

/* ============================================================
   TYPOGRAPHY UTILITIES
   ============================================================ */
.heading-xl {
  font-family: 'Syne', sans-serif;
  font-size: clamp(3rem, 7vw, 5.6rem);
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: -0.03em;
}
.heading-lg {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
}
.heading-md {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.text-gradient {
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent-pale) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: all 0.3s var(--ease-out);
  cursor: pointer;
  border: none;
  text-align: center;
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-mid) 100%);
  color: #fff;
  box-shadow: 0 6px 24px rgba(124,58,237,0.45), inset 0 1px 0 rgba(255,255,255,0.15);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(124,58,237,0.60), inset 0 1px 0 rgba(255,255,255,0.15);
}

.btn-ghost {
  background: var(--glass-2);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-soft);
  color: var(--t1);
}
.btn-ghost:hover {
  background: var(--glass-3);
  border-color: var(--border-bright);
  transform: translateY(-2px);
}

.btn-lg { padding: 18px 36px; font-size: 0.97rem; }
.btn-sm { padding: 10px 20px; font-size: 0.82rem; }

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  padding: 20px var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
  transition: all 0.4s var(--ease-out);
}
#navbar.scrolled {
  background: rgba(5, 5, 26, 0.82);
  backdrop-filter: blur(40px) saturate(1.8);
  -webkit-backdrop-filter: blur(40px) saturate(1.8);
  border-bottom: 1px solid var(--border-dim);
  padding-top: 14px;
  padding-bottom: 14px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.40);
}

.nav-brand { display: flex; align-items: center; gap: 10px; min-width: 0; }
.nav-brand img { height: 38px; width: auto; flex-shrink: 0; }
.nav-brand-text {
  display: flex; flex-direction: column; line-height: 1.1; min-width: 0;
}
.nav-brand-name {
  font-family: 'Syne', sans-serif; font-size: 0.95rem; font-weight: 800;
  letter-spacing: 0.04em; color: var(--t1);
  white-space: nowrap;
}
.nav-brand-sub {
  font-size: 0.62rem; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--t1);
  white-space: nowrap;
}

.nav-links {
  display: flex; align-items: center; gap: 6px;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--t1);
  transition: all 0.2s;
  letter-spacing: 0.01em;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--t1);
  background: var(--glass-2);
}
.nav-links .nav-cta {
  margin-left: 8px;
  padding: 9px 20px;
  background: linear-gradient(135deg, var(--accent), var(--accent-mid));
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(124,58,237,0.40);
  transition: all 0.3s var(--ease-out);
}
.nav-links .nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(124,58,237,0.55);
  background: var(--glass-2);
  color: var(--t1);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-toggle span {
  display: block; width: 22px; height: 1.5px;
  background: var(--t1); border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile menu */
#mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 890;
  background: rgba(5,5,26,0.96);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
#mobile-menu.open { opacity: 1; pointer-events: all; }
@media (max-width: 768px) {
  #mobile-menu { display: flex; }
}
#mobile-menu a {
  font-family: 'Syne', sans-serif; font-size: 2.2rem;
  font-weight: 800; color: var(--t1); padding: 8px 24px;
  transition: color 0.2s;
}
#mobile-menu a:hover { color: var(--accent-pale); }
#mobile-menu-close {
  position: absolute; top: 24px; right: 24px;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--glass-2); border: 1px solid var(--border-soft);
  color: var(--t1); font-size: 1.2rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  position: relative; z-index: 1;
  padding: 180px 0 100px;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 100%, rgba(124,58,237,0.12) 0%, transparent 70%),
    linear-gradient(to bottom, transparent 60%, var(--bg-base) 100%);
  pointer-events: none;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero-eyebrow {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.8rem; color: var(--t3); font-weight: 500;
  letter-spacing: 0.04em; margin-bottom: 20px;
}
.page-hero-eyebrow a { color: var(--t3); transition: color 0.2s; }
.page-hero-eyebrow a:hover { color: var(--accent-pale); }
.page-hero-eyebrow .sep { color: var(--t4); }
.page-hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800; line-height: 1.08; letter-spacing: -0.025em;
  max-width: 720px;
}
.page-hero p {
  margin-top: 20px; font-size: 1.1rem;
  color: var(--t2); line-height: 1.75;
  max-width: 560px;
}

/* ============================================================
   ICON WRAPPERS
   ============================================================ */
.icon-wrap {
  display: flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(145deg, rgba(124,58,237,0.22), rgba(124,58,237,0.08));
  border: 1px solid rgba(124,58,237,0.28);
  color: var(--accent-pale);
  flex-shrink: 0;
  transition: all 0.3s var(--ease-out);
}
.icon-wrap svg { width: 22px; height: 22px; }
.icon-wrap-lg {
  width: 68px; height: 68px; border-radius: 20px;
}
.icon-wrap-lg svg { width: 28px; height: 28px; }
.icon-wrap-circle {
  border-radius: 50%;
}

/* ============================================================
   STAT CARDS
   ============================================================ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-dim);
  border: 1px solid var(--border-dim);
  border-radius: var(--r-xl);
  overflow: hidden;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}
.stat-card {
  padding: 40px 32px;
  background: rgba(9,9,31,0.7);
  text-align: center;
  position: relative;
  transition: background 0.3s;
}
.stat-card:hover { background: rgba(124,58,237,0.07); }
.stat-card::after {
  content: '';
  position: absolute; top: 0; left: 20%; right: 20%; height: 1px;
  background: linear-gradient(to right, transparent, rgba(167,139,250,0), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.stat-card:hover::after { opacity: 1; }
.stat-value {
  font-family: 'Syne', sans-serif;
  font-size: 2.8rem; font-weight: 800; line-height: 1;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #fff 0%, var(--accent-pale) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat-label {
  font-size: 0.8rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--t3);
}

/* ============================================================
   FLOATING ACTION BUTTONS (FAB)
   ============================================================ */
.fab-stack {
  position: fixed; bottom: 28px; right: 28px;
  z-index: 800; display: flex; flex-direction: column;
  align-items: center; gap: 10px;
}
.fab {
  width: 50px; height: 50px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.05));
  backdrop-filter: blur(24px) saturate(1.6);
  -webkit-backdrop-filter: blur(24px) saturate(1.6);
  border: 1px solid var(--border-soft);
  border-top-color: var(--border-bright);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.16), 0 6px 24px rgba(0,0,0,0.35);
  color: var(--t1);
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  text-decoration: none;
}
.fab svg { width: 19px; height: 19px; }
.fab:hover {
  transform: translateY(-3px) scale(1.06);
  border-color: var(--border-bright);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.20), 0 12px 32px rgba(0,0,0,0.4), 0 0 0 3px rgba(124,58,237,0.15);
  color: var(--accent-pale);
}
.fab-email { background: linear-gradient(145deg, rgba(124,58,237,0.25), rgba(124,58,237,0.10)); border-color: rgba(124,58,237,0.35); }
.fab-email:hover { box-shadow: inset 0 1px 0 rgba(167,139,250,0.20), 0 12px 32px rgba(124,58,237,0.30); }
#fab-top { opacity: 0; pointer-events: none; transform: translateY(8px); }
#fab-top.show { opacity: 1; pointer-events: all; transform: translateY(0); }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  position: relative; z-index: 1;
  background: rgba(0,0,0,0.35);
  border-top: 1px solid var(--border-dim);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border-dim);
}
.footer-brand-name {
  font-family: 'Syne', sans-serif; font-size: 1rem; font-weight: 800;
  color: var(--t1); letter-spacing: 0.03em; margin-top: 14px; margin-bottom: 10px;
}
.footer-tagline { font-size: 0.88rem; color: var(--t2); line-height: 1.65; max-width: 260px; }
.footer-designed-by {
  font-size: 0.72rem; color: var(--t2); margin-top: 6px; letter-spacing: 0.02em;
}
.nuuhaven-link {
  color: #dfff00;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: opacity 0.2s;
}
.nuuhaven-link:hover { opacity: 0.75; }
.footer-reg { font-size: 0.74rem; color: var(--t3); margin-top: 16px; line-height: 1.6; }
.footer-col h4 {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--t1); margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 0.88rem; color: var(--t2); transition: color 0.2s; }
.footer-col ul a:hover { color: var(--accent-pale); }
.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding-top: 28px;
  gap: 16px;
}
.footer-copy { font-size: 0.8rem; color: var(--t3); justify-self: start; }
.footer-badges { display: flex; gap: 10px; flex-wrap: wrap; justify-self: center; }
.footer-badge {
  padding: 5px 12px; border-radius: 50px;
  background: rgba(124,58,237,0.10);
  border: 1px solid rgba(124,58,237,0.22);
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.06em;
  color: var(--accent-pale);
}

/* ============================================================
   RESPONSIVE — Breakpoints
   ============================================================ */
@media (max-width: 1100px) {
  :root { --gutter: 40px; --section-v: 96px; }
  .stats-grid { grid-template-columns: repeat(2,1fr); border-radius: var(--r-lg); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 768px) {
  :root { --gutter: 24px; --section-v: 64px; }
  #navbar { padding: 14px var(--gutter); }
  #navbar.scrolled { padding: 10px var(--gutter); }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-brand img { height: 30px; }
  .nav-brand-name { font-size: 0.82rem; letter-spacing: 0.02em; }
  .nav-brand-sub { font-size: 0.56rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-sub { font-size: 0.66rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { grid-template-columns: 1fr; justify-items: center; text-align: center; gap: 10px; }
  .footer-copy { justify-self: center; text-align: center; }
  .footer-designed-by { justify-self: center !important; text-align: center !important; }
  .footer-badges { justify-content: center; }
  .section-heading { font-size: clamp(1.6rem, 5.5vw, 2.2rem); }
  .page-hero { padding: 130px 0 60px; }
  .page-hero h1 { font-size: clamp(1.8rem, 6vw, 2.8rem); }
  /* hero trust row — wrap and shrink */
  .hero-trust { gap: 12px; }
  .hero-trust-sep { display: none; }
  .hero-trust-item { font-size: 0.72rem; }
  /* services inline CTAs */
  .svc-cta { flex-direction: column; align-items: flex-start; gap: 12px; }
  .svc-cta .btn { width: 100%; max-width: 300px; justify-content: center; }
}
@media (max-width: 480px) {
  :root { --gutter: 16px; --section-v: 52px; }
  .nav-brand { gap: 7px; }
  .nav-brand img { height: 26px; }
  .nav-brand-name { font-size: 0.72rem; letter-spacing: 0.01em; }
  .nav-brand-sub { display: none; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .stat-card { padding: 20px 14px; }
  .stat-value { font-size: clamp(1.6rem, 8vw, 2.2rem); }
  .heading-xl { font-size: clamp(2rem, 9vw, 3rem); }
  .fab-stack { bottom: 20px; right: 16px; }
  /* hero title tighter on very small screens */
  .hero-title { font-size: clamp(1.7rem, 7.5vw, 2.4rem) !important; }
  .hero-sub { font-size: 0.92rem; }
  /* section labels smaller */
  .section-label { font-size: 0.68rem; }
}

/* ===== CTA BANNER TEXT SPACING ===== */
.cta-banner h2 { margin-bottom: 20px; }
.cta-banner p  { margin-bottom: 52px !important; }

@media (max-width: 580px) {
  .cta-banner { padding: 44px 24px !important; }
  .cta-banner h2 { font-size: clamp(1.4rem, 6vw, 1.8rem) !important; }
  .cta-banner p  { font-size: 0.9rem !important; margin-bottom: 40px !important; }
}

/* ===== ALL BUTTON GROUPS ===== */
.cta-banner-btns,
.hero-ctas {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  flex-wrap: nowrap;
  position: relative;
  z-index: 1;
}
.cta-banner-btns {
  justify-content: center;
}
.cta-banner-btns .btn,
.hero-ctas .btn {
  flex-shrink: 0;
  padding: 17px 36px;
  font-size: 0.95rem;
  min-width: 160px;
}
@media (max-width: 580px) {
  .cta-banner-btns,
  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }
  .cta-banner-btns .btn,
  .hero-ctas .btn {
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
    justify-content: center;
    min-width: unset;
  }
}
