/* ── Shared Components ────────────────────────────────────────────────── */

/* Section Label */
.section-label {
  display: inline-block;
  background: var(--navy-light); color: var(--navy);
  font-size: 11px; font-weight: 500; letter-spacing: 1.5px;
  padding: 5px 14px; border-radius: 100px; text-transform: uppercase;
  margin-bottom: 14px;
}
.section-label.white { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.9); }
.section-label.green { background: var(--green-light); color: var(--green); }
.section-label.gold  { background: var(--gold-light); color: #7D4A00; }
.section-label.coral { background: var(--coral-light); color: var(--coral); }

/* Breadcrumb */
.breadcrumb {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,0.5);
  margin-bottom: 28px; position: relative;
}
.breadcrumb a       { color: rgba(255,255,255,0.5); text-decoration: none; }
.breadcrumb a:hover { color: rgba(255,255,255,0.8); }
.breadcrumb-sep     { color: rgba(255,255,255,0.25); }

/* Hero background grid + glow (shared pattern across page heroes) */
.ph-grid, .hero-grid, .hero-grid-bg, .hero-404-grid, .page-header-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.ph-glow, .hero-404-glow {
  position: absolute; top: -80px; left: 50%; transform: translateX(-50%);
  width: 700px; height: 420px;
  background: radial-gradient(ellipse, rgba(75,82,212,0.42) 0%, transparent 65%);
  pointer-events: none;
}

/* Floating channel icons (used in all page heroes) */
.hero-floaters { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }

.floater {
  position: absolute; width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; opacity: 0.18;
  animation: float 6s ease-in-out infinite;
}
.floater:nth-child(1) { left: 6%;  top: 20%; animation-delay: 0s;   background: #25D366; }
.floater:nth-child(2) { left: 15%; top: 65%; animation-delay: 1.2s; background: #229ED9; }
.floater:nth-child(3) { left: 80%; top: 18%; animation-delay: 0.6s; background: #1877F2; }
.floater:nth-child(4) { left: 88%; top: 60%; animation-delay: 1.8s; background: #E8A020; }
.floater:nth-child(5) { left: 72%; top: 78%; animation-delay: 0.3s; background: #805AD5; }
.floater:nth-child(6) { left: 4%;  top: 78%; animation-delay: 2.4s; background: #D85A30; }

/* Buttons */
.btn-navy {
  background: var(--navy); color: var(--white);
  border: none; padding: 13px 28px; border-radius: 10px;
  font-size: 15px; font-weight: 500; font-family: 'DM Sans', sans-serif;
  cursor: pointer; transition: background 0.2s;
}
.btn-navy:hover { background: var(--navy-dark); }

.btn-outline {
  background: transparent; color: var(--navy);
  border: 1.5px solid var(--navy); padding: 13px 24px;
  border-radius: 10px; font-size: 15px;
  font-family: 'DM Sans', sans-serif; cursor: pointer;
}

.btn-white {
  background: white; color: var(--navy-deeper);
  border: none; padding: 16px 36px; border-radius: 10px;
  font-size: 16px; font-weight: 500; font-family: 'DM Sans', sans-serif;
  cursor: pointer;
}

.btn-ghost {
  background: transparent; color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.3); padding: 16px 28px;
  border-radius: 10px; font-size: 16px;
  font-family: 'DM Sans', sans-serif; cursor: pointer;
}

/* SVG checkmark bullet (inline data-URI) */
.chk {
  flex-shrink: 0; width: 22px; height: 22px; border-radius: 6px;
  background: var(--navy); margin-top: 1px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 22 22'%3E%3Cpath d='M5 11l4.5 4.5 7.5-8' stroke='white' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* Final CTA section (shared across multiple pages) */
.final-cta { background: var(--navy); padding: 88px 36px; text-align: center; }
.final-cta h2,
.final-cta h3 {
  font-size: clamp(26px, 4.5vw, 48px); font-weight: 800; color: white;
  letter-spacing: -1.5px; max-width: 660px; margin: 0 auto 16px;
}
.final-cta p { font-size: 16px; color: rgba(255,255,255,0.65); max-width: 440px; margin: 0 auto 40px; }
.cta-row     { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
