/* ============================================================
   CDC Draincare — Modern Redesign
   Fonts: Barlow Condensed (headings) + DM Sans (body)
   Palette: Navy #0B1D35 · Orange #F26522 · White
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700;800&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600;9..40,700&display=swap');

/* ---- Design Tokens ---- */
:root {
  --navy:          #0B1D35;
  --navy-mid:      #142845;
  --navy-light:    #1E3A5F;
  --orange:        #0BA8A0;
  --orange-dark:   #08908A;
  --orange-glow:   rgba(11, 168, 160, 0.14);
  --white:         #FFFFFF;
  --off-white:     #F4F6F9;
  --text-dark:     #0F1923;
  --text-mid:      #3D4F63;
  --text-muted:    #7A8EA3;
  --border:        #DDE3EC;

  --font-display:  'Barlow Condensed', sans-serif;
  --font-body:     'DM Sans', sans-serif;

  --r-sm:  6px;
  --r-md:  12px;
  --r-lg:  20px;

  --sh-sm:  0 1px 3px rgba(0,0,0,.08);
  --sh-md:  0 4px 16px rgba(0,0,0,.1);
  --sh-lg:  0 12px 40px rgba(0,0,0,.12), 0 4px 12px rgba(0,0,0,.07);
  --sh-xl:  0 24px 60px rgba(0,0,0,.18);
}

/* ---- Reset ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }

/* ---- Utilities ---- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.7rem 1.4rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: var(--r-sm);
  cursor: pointer;
  text-decoration: none;
  border: 2px solid transparent;
  transition: all 0.22s ease;
  white-space: nowrap;
  line-height: 1;
}

.btn-emergency {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-emergency:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(11,168,160,.35);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.55);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
}

.btn-ghost-dark {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.35);
}
.btn-ghost-dark:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.65);
}

.btn-lg {
  padding: 0.875rem 1.875rem;
  font-size: 0.95rem;
}

/* ---- Scroll Reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   HEADER
   ============================================================ */
#siteHeader {
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Top Bar */
.top-bar {
  background: var(--navy);
  padding: 0.4rem 0;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nhs-badge {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(255,255,255,.6);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 600;
}
.nhs-badge img {
  height: 17px;
  width: auto;
  background: white;
  padding: 2px 4px;
  border-radius: 2px;
}

.contact-strip {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.contact-strip a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,.8);
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.2s;
}
.contact-strip a:hover { color: var(--orange); }
.phone-link {
  font-weight: 700;
  color: var(--white) !important;
  font-size: 0.85rem;
}

/* Main Nav */
.main-nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s ease;
}
#siteHeader.scrolled .main-nav { box-shadow: var(--sh-md); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.55rem 2rem;
  gap: 2rem;
}
.nav-logo img {
  height: 58px;
  width: auto;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.25rem;
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.88rem;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width 0.25s ease;
  border-radius: 1px;
}
.nav-links a:hover { color: var(--orange); }
.nav-links a:hover::after { width: 100%; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero {
  position: relative;
  height: 90vh;
  min-height: 580px;
  max-height: 880px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.6s ease-in-out;
}
.hero-slide.active { opacity: 1; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    108deg,
    rgba(11, 29, 53, 0.94) 0%,
    rgba(11, 29, 53, 0.82) 42%,
    rgba(11, 29, 53, 0.32) 100%
  );
  z-index: 1;
}

.hero .container { position: relative; z-index: 2; }

.hero-body { width: 100%; }

.hero-text { max-width: 620px; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1.2rem;
  opacity: 0;
  animation: heroFadeUp 0.7s ease forwards 0.25s;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--orange);
  border-radius: 1px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 1.2rem;
  opacity: 0;
  animation: heroFadeUp 0.7s ease forwards 0.42s;
}

.hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.77);
  max-width: 490px;
  margin-bottom: 2.25rem;
  line-height: 1.72;
  opacity: 0;
  animation: heroFadeUp 0.7s ease forwards 0.58s;
}

.hero-ctas {
  display: flex;
  gap: 0.875rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroFadeUp 0.7s ease forwards 0.72s;
}

/* Carousel dots */
.carousel-dots {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.45rem;
  z-index: 3;
}
.carousel-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,.3);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}
.carousel-dot.active {
  background: var(--orange);
  width: 22px;
  border-radius: 4px;
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--navy);
  padding: 2.75rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}

.stat-item {
  padding: 1rem 1.5rem;
  border-right: 1px solid rgba(255,255,255,.08);
}
.stat-item:last-child { border-right: none; }

.stat-number-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.1rem;
  margin-bottom: 0.4rem;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}
.stat-suf {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
}
.stat-item p {
  color: rgba(255,255,255,.6);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ============================================================
   ACCREDITATIONS
   ============================================================ */
.accreditations {
  background: var(--off-white);
  padding: 2.75rem 0;
  border-bottom: 1px solid var(--border);
}

.acc-label {
  text-align: center;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 1.4rem;
}

.acc-track {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.75rem 3.25rem;
}

.acc-item {
  opacity: 0.38;
  filter: grayscale(100%);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  cursor: default;
}
.acc-item:hover {
  opacity: 1;
  filter: none;
  transform: translateY(-2px);
}
.acc-item img { height: 72px; width: auto; }
.acc-text {
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--text-mid);
  letter-spacing: -0.02em;
}

/* ============================================================
   CAPABILITIES
   ============================================================ */
.capabilities { overflow: hidden; }

.capabilities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 540px;
}

.cap-panel {
  position: relative;
  overflow: hidden;
}
.cap-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.cap-panel:hover .cap-img { transform: scale(1.05); }

.cap-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(11,29,53,.97) 0%,
    rgba(11,29,53,.68) 48%,
    rgba(11,29,53,.12) 100%
  );
  display: flex;
  align-items: flex-end;
  padding: 2.75rem;
  transition: background 0.35s ease;
}
.cap-panel:hover .cap-overlay {
  background: linear-gradient(
    to top,
    rgba(11,29,53,.99) 0%,
    rgba(11,29,53,.78) 52%,
    rgba(11,29,53,.18) 100%
  );
}

.cap-tag {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.22rem 0.7rem;
  border-radius: 2px;
  margin-bottom: 0.7rem;
}

.cap-content h3 {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 0.8rem;
}
.cap-content p {
  color: rgba(255,255,255,.72);
  font-size: 0.875rem;
  line-height: 1.68;
  margin-bottom: 1.4rem;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  padding: 5.5rem 0;
  background: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 3.25rem;
}
.section-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--orange);
  margin-bottom: 0.8rem;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 0.9rem;
}
.section-header p {
  color: var(--text-mid);
  font-size: 1rem;
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.72;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  padding: 1.875rem;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  text-decoration: none;
  color: inherit;
  background: var(--white);
  transition: all 0.28s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--orange);
  border-radius: var(--r-sm) 0 0 var(--r-sm);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s ease;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-lg);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleY(1); }

.service-icon {
  width: 52px;
  height: 52px;
  background: var(--orange-glow);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  color: var(--orange);
  transition: background 0.28s ease, color 0.28s ease;
  flex-shrink: 0;
}
.service-card:hover .service-icon {
  background: var(--orange);
  color: var(--white);
}

.service-body { flex: 1; }
.service-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.55rem;
  letter-spacing: -0.01em;
}
.service-body p {
  color: var(--text-mid);
  font-size: 0.85rem;
  line-height: 1.65;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1.2rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--orange);
  transition: gap 0.25s ease;
}
.service-card:hover .service-link { gap: 0.55rem; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--navy-mid);
  padding: 4.25rem 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::after {
  content: '';
  position: absolute;
  right: -80px; top: -80px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(11,168,160,.13) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.cta-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 2.8vw, 2.35rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 0.4rem;
}
.cta-text p {
  color: rgba(255,255,255,.6);
  font-size: 0.95rem;
}
.cta-actions {
  display: flex;
  gap: 0.875rem;
  flex-shrink: 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--navy);
  color: var(--white);
  padding: 4.5rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.75rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.footer-logo-link img {
  height: 46px;
  width: auto;
  background: rgba(255,255,255,.9);
  padding: 5px 10px;
  border-radius: var(--r-sm);
  margin-bottom: 1.1rem;
}

.footer-brand p {
  color: rgba(255,255,255,.5);
  font-size: 0.84rem;
  line-height: 1.7;
  margin-bottom: 1.4rem;
}

.footer-contact-pills {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-contact-pills a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(255,255,255,.65);
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 500;
  transition: color 0.2s;
}
.footer-contact-pills a:hover { color: var(--orange); }

.footer-col h5 {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  margin-bottom: 1.1rem;
}
.footer-col a {
  display: block;
  color: rgba(255,255,255,.55);
  text-decoration: none;
  font-size: 0.84rem;
  margin-bottom: 0.55rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 0;
  gap: 1rem;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,.3);
}
.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}
.footer-bottom-links a {
  font-size: 0.78rem;
  color: rgba(255,255,255,.3);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-bottom-links a:hover { color: rgba(255,255,255,.65); }

/* ============================================================
   FLOATING CONTACT WIDGET
   ============================================================ */
.floating-widget {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
}

/* FAB Button */
.widget-fab {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--orange);
  color: var(--white);
  border: none;
  padding: 0.8rem 1.2rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(11,168,160,.45);
  transition: all 0.25s ease;
}
.widget-fab:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 7px 26px rgba(11,168,160,.5);
}
.widget-fab .fab-icon-close { display: none; }
.floating-widget.open .widget-fab .fab-icon-open { display: none; }
.floating-widget.open .widget-fab .fab-icon-close { display: block; }

/* Panel */
.widget-panel {
  background: var(--white);
  border-radius: var(--r-md);
  box-shadow: var(--sh-xl);
  width: 310px;
  border: 1px solid var(--border);
  overflow: hidden;
  display: none;
  animation: panelSlideUp 0.28s ease forwards;
}
.floating-widget.open .widget-panel { display: block; }

@keyframes panelSlideUp {
  from { opacity: 0; transform: translateY(16px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.widget-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 1.4rem;
  background: var(--navy);
  color: var(--white);
}
.widget-header h4 {
  font-size: 0.95rem;
  font-weight: 700;
}
.widget-close {
  background: none;
  border: none;
  color: rgba(255,255,255,.6);
  cursor: pointer;
  padding: 0.2rem;
  display: flex;
  align-items: center;
  transition: color 0.2s;
  border-radius: 4px;
}
.widget-close:hover { color: var(--white); }

#contactForm {
  padding: 1.2rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
#contactForm input,
#contactForm textarea {
  width: 100%;
  padding: 0.65rem 0.875rem;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  font-family: var(--font-body);
  font-size: 0.84rem;
  color: var(--text-dark);
  background: var(--off-white);
  transition: border-color 0.2s, background 0.2s;
}
#contactForm input:focus,
#contactForm textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: var(--white);
}
#contactForm textarea { resize: vertical; min-height: 80px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* ---- Large tablet ---- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ---- Tablet ---- */
@media (max-width: 900px) {
  .capabilities-grid { grid-template-columns: 1fr; min-height: auto; }
  .cap-panel { min-height: 400px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
}

/* ---- Mobile ---- */
@media (max-width: 768px) {
  .top-bar-inner { flex-direction: column; gap: 0.3rem; padding: 0.45rem 0; }
  .contact-strip { gap: 1rem; }
  .email-link { display: none; }

  .hamburger { display: flex; }
  .nav-inner { padding: 0.5rem 1rem; }
  .nav-cta { display: none; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 0.4rem 0;
    gap: 0;
    box-shadow: var(--sh-md);
    border-top: 1px solid var(--border);
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links li { border-bottom: 1px solid var(--border); }
  .nav-links li:last-child { border-bottom: none; }
  .nav-links a { padding: 0.8rem 1.4rem; display: block; }

  .hero { height: 85vh; max-height: 720px; }
  .hero h1 { font-size: 2.5rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ---- Small mobile ---- */
@media (max-width: 540px) {
  .container { padding: 0 1rem; }
  .services-grid { grid-template-columns: 1fr; }
  .hero {
    height: auto;
    min-height: 100svh;
    max-height: none;
    padding: 7.5rem 0 4.5rem;
  }
  .hero h1 { font-size: 2.1rem; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { justify-content: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); padding: 1.1rem; }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.08); }
  .stat-item:last-child, .stat-item:nth-last-child(2):nth-child(odd) { border-bottom: none; }
  .cap-panel { min-height: 360px; }
  .cap-overlay { padding: 1.75rem; }
  .cap-content h3 { font-size: 1.5rem; }
  .floating-widget { bottom: 1rem; right: 1rem; }
  .widget-panel { width: 288px; }
  .cta-actions { flex-direction: column; align-items: center; }
  .footer-bottom-links { flex-direction: column; align-items: center; gap: 0.5rem; }
}
