﻿/**
 * ==========================================================================
 * COLI LINK AFRICA - CLOUD & WEB HOSTING DESIGN SYSTEM
 * Tailored for Nigeria & South Africa Enterprise Hosting
 * ==========================================================================
 */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Outfit:wght@400;600;700;800&display=swap');

:root {
  --bg-dark: #080b11;
  --bg-darker: #05070a;
  --bg-card: rgba(18, 24, 36, 0.7);
  --accent-cyan: #00f2fe;
  --accent-blue: #4facfe;
  --accent-purple: #8a2be2;
  --text-light: #f8fafc;
  --text-muted: #94a3b8;
  --border-glass: rgba(255, 255, 255, 0.08);
  --glass-bg: rgba(13, 18, 28, 0.75);
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Outfit', sans-serif;
  --nav-height: 80px;
}

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

body {
  font-family: var(--font-main);
  background-color: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* --- 1. Header & Navigation --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  background: rgba(8, 11, 17, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-glass);
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  height: 70px;
  background: rgba(8, 11, 17, 0.96);
  box-shadow: 0 10px 30px rgba(0,0,0,0.8);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo-img {
  height: 44px;
  width: auto;
}

.brand-tag {
  background: linear-gradient(135deg, #00f2fe, #4facfe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--accent-cyan);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
}

/* --- 2. Buttons & Badges --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 26px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-blue) 100%);
  color: #080b11;
  box-shadow: 0 8px 25px rgba(0, 242, 254, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 242, 254, 0.45);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-light);
  border-color: var(--border-glass);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--accent-cyan);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 50px;
  background: rgba(0, 242, 254, 0.12);
  border: 1px solid rgba(0, 242, 254, 0.3);
  color: var(--accent-cyan);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

/* --- 3. Hero Sections with Ladies Background --- */
.hero-slider-container { position: relative; width: 100%; min-height: 90vh; display: flex; align-items: center; overflow: hidden; padding-top: var(--nav-height); background: #000000 !important;
}

.hero-slide-item { position: absolute; top: 0; left: 0; width: 100%; height: 100%; display: flex; align-items: center; opacity: 0; visibility: hidden; pointer-events: none; transition: opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.65s cubic-bezier(0.4, 0, 0.2, 1) !important; z-index: 1; }

.hero-slide-item.active { opacity: 1; visibility: visible; pointer-events: auto; z-index: 15; }

.hero-slide-img {
  position: absolute !important;
  bottom: 0 !important;
  top: auto !important;
  right: 8% !important;
  left: auto !important;
  width: 45% !important;
  height: 90% !important;
  object-fit: contain !important;
  object-position: center bottom !important;
  opacity: 1 !important;
  z-index: 1 !important;
}

.hero-slide-item .hero-overlay,
.hero-overlay {
  display: none !important;
  opacity: 0 !important;
  background: transparent !important;
  pointer-events: none !important;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 540px !important;
  padding: 60px 0;
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 24px;
  color: #ffffff;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.9);
}



.hero-content p {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-slider-dots { position: absolute; bottom: 35px; left: 50%; transform: translateX(-50%); display: flex; gap: 12px; z-index: 1000 !important; pointer-events: auto; }

.hero-dot { width: 14px; height: 14px; border-radius: 50%; background: #cbd5e1; border: none; cursor: pointer !important; transition: all 0.3s ease; z-index: 1001 !important; padding: 0; }

.hero-dot.active {
  width: 32px;
  border-radius: 10px;
  background: var(--accent-cyan);
}

/* --- 4. Currency Switcher & Pricing Grid --- */
.section-padding {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.currency-switcher {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
}

.currency-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  color: var(--text-muted);
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.currency-btn.active {
  background: linear-gradient(135deg, rgba(0, 242, 254, 0.15), rgba(79, 172, 254, 0.15));
  border-color: var(--accent-cyan);
  color: #fff;
  box-shadow: 0 0 20px rgba(0, 242, 254, 0.2);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 24px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.pricing-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 242, 254, 0.4);
  box-shadow: 0 20px 40px rgba(0,0,0,0.6), 0 0 30px rgba(0, 242, 254, 0.1);
}

.pricing-card.popular {
  border: 2px solid var(--accent-cyan);
  background: linear-gradient(180deg, rgba(0, 242, 254, 0.06) 0%, rgba(18, 24, 36, 0.8) 100%);
}

.popular-tag {
  position: absolute;
  top: -14px;
  right: 28px;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
  color: #080b11;
  font-weight: 800;
  font-size: 0.75rem;
  padding: 4px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.plan-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #fff;
}

.plan-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 24px;
  min-height: 44px;
}

.plan-price {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--accent-cyan);
  margin-bottom: 6px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.plan-price span {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 600;
}

.plan-price-alt {
  font-size: 0.95rem;
  color: #fff;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.06);
  padding: 4px 12px;
  border-radius: 6px;
  display: inline-block;
  margin-bottom: 28px;
}

.plan-features {
  list-style: none;
  margin-bottom: 36px;
  flex: 1;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 14px;
}

.plan-features li i {
  color: #10b981;
  font-size: 1.1rem;
}

/* --- 5. Features Grid --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: 36px;
  transition: all 0.3s ease;
}

.feature-box:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--accent-cyan);
  transform: translateY(-5px);
}

.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(0, 242, 254, 0.12);
  color: var(--accent-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 24px;
}

.feature-box h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.feature-box p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* --- 6. CTA & Footer --- */
.cta-banner {
  background: linear-gradient(135deg, rgba(0, 242, 254, 0.15), rgba(79, 172, 254, 0.15));
  border: 1px solid rgba(0, 242, 254, 0.3);
  border-radius: 30px;
  padding: 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.cta-banner p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 30px;
}

footer {
  background: var(--bg-darker);
  border-top: 1px solid var(--border-glass);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 50px;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--accent-cyan);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-glass);
  padding-top: 30px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* --- 7. Responsive Mobile Adjustments --- */
@media (max-width: 1024px) {
  .pricing-grid,
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-actions {
    display: flex !important;
  }

  .nav-links {
    display: none;
  }

  .mobile-toggle {
    display: block !important;
    z-index: 2005;
    position: relative;
  }

  /* Off-canvas Side Menu Drawer for Mobile */
  .navbar.mobile-active .nav-links {
    display: flex !important;
    flex-direction: column;
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    left: auto !important;
    width: 280px !important;
    height: 100vh !important;
    background: #0b0f19 !important;
    padding: 80px 24px 50px !important;
    border-left: 1px solid var(--border-glass) !important;
    gap: 18px !important;
    z-index: 2000 !important;
    box-shadow: -15px 0 35px rgba(0,0,0,0.95) !important;
  }

  .hero-slider-container {
    min-height: 640px !important;
    padding-bottom: 50px !important;
  }

  .hero-slide-item { position: absolute; top: 0; left: 0; width: 100%; height: 100%; display: flex; align-items: center; opacity: 0; visibility: hidden; pointer-events: none; transition: opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.65s cubic-bezier(0.4, 0, 0.2, 1) !important; z-index: 1; }

  .hero-slide-img {
    right: 0 !important;
    left: 0 !important;
    width: 100% !important;
    opacity: 0.45 !important;
    object-position: center 20% !important;
    mask-image: linear-gradient(to bottom, transparent 0%, black 25%, black 75%, transparent 100%) !important;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 25%, black 75%, transparent 100%) !important;
  }

  .hero-content {
  position: relative;
  z-index: 3;
  max-width: 540px !important;
  padding: 60px 0;
}

  .hero-content h1 {
    font-size: 2.1rem !important;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .pricing-grid,
  .features-grid,
  .footer-grid {
    grid-template-columns: 1fr !important;
  }

  .cta-banner {
    padding: 36px 20px;
  }
}

@keyframes pingPulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1.35); box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* ==========================================================================
   SMOOTH 3D GLASS SCROLL & HOVER ANIMATION EFFECT
   ========================================================================== */
.glass-3d-hidden {
  opacity: 0;
  transform: perspective(1000px) translateY(65px) rotateX(12deg) scale(0.94);
  filter: blur(8px);
  transition: opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.65s cubic-bezier(0.4, 0, 0.2, 1) !important;
  will-change: opacity, transform, filter;
}

.glass-3d-revealed {
  opacity: 1;
  transform: perspective(1000px) translateY(0) rotateX(0deg) scale(1);
  filter: blur(0px);
}

/* Staggered sequential entrance delays for cards and boxes */
.pricing-grid .pricing-card:nth-child(1),
.features-grid .feature-box:nth-child(1) { transition-delay: 0.05s; }
.pricing-grid .pricing-card:nth-child(2),
.features-grid .feature-box:nth-child(2) { transition-delay: 0.18s; }
.pricing-grid .pricing-card:nth-child(3),
.features-grid .feature-box:nth-child(3) { transition-delay: 0.31s; }
.features-grid .feature-box:nth-child(4) { transition-delay: 0.44s; }
.features-grid .feature-box:nth-child(5) { transition-delay: 0.57s; }
.features-grid .feature-box:nth-child(6) { transition-delay: 0.70s; }

/* Interactive 3D Perspective Hover Tilt & Neon Glass Shimmer */
.pricing-card.glass-3d-revealed:hover,
.feature-box.glass-3d-revealed:hover {
  transform: perspective(1000px) translateY(-10px) rotateX(3.5deg) rotateY(-1.5deg) scale(1.025);
  box-shadow: 0 25px 60px rgba(0, 242, 254, 0.2), inset 0 1px 2px rgba(255, 255, 255, 0.3);
  border-color: rgba(0, 242, 254, 0.65);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.45s ease, border-color 0.45s ease;
}

/* ==========================================================================
   PRICING HIGHLIGHT MATCHING COLOR & CRYSTALLINE GLASS SHATTER TRANSITION
   ========================================================================== */
@keyframes glassShatterPulse {
  0% {
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.4), inset 0 0 10px rgba(0, 242, 254, 0.3);
    border-color: rgba(0, 242, 254, 0.6);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 32px rgba(0, 242, 254, 0.95), 0 0 60px rgba(0, 242, 254, 0.4), inset 0 0 18px rgba(255, 255, 255, 0.6);
    border-color: #ffffff;
    transform: scale(1.04) rotate(-0.5deg);
  }
  100% {
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.4), inset 0 0 10px rgba(0, 242, 254, 0.3);
    border-color: rgba(0, 242, 254, 0.6);
    transform: scale(1);
  }
}

.price-highlight-match {
  color: #00f2fe !important;
  background: linear-gradient(135deg, rgba(0, 242, 254, 0.25) 0%, rgba(11, 15, 25, 0.85) 50%, rgba(0, 242, 254, 0.25) 100%) !important;
  border: 1.5px solid #00f2fe !important;
  padding: 4px 14px !important;
  border-radius: 8px !important;
  display: inline-block !important;
  font-weight: 900 !important;
  text-shadow: 0 0 14px rgba(0, 242, 254, 1), 0 0 28px rgba(0, 242, 254, 0.6) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  animation: glassShatterPulse 2.4s infinite ease-in-out !important;
  cursor: pointer;
  position: relative;
  z-index: 5;
}

.price-highlight-match:hover {
  transform: scale(1.1) rotate(-2deg) !important;
  box-shadow: 0 0 40px rgba(0, 242, 254, 1), inset 0 0 22px rgba(255, 255, 255, 0.8) !important;
  border-color: #ffffff !important;
  color: #ffffff !important;
}

@keyframes heroSlideGlassShatter {
  0% {
    opacity: 0;
    transform: perspective(1200px) translateZ(-180px) rotateX(20deg) rotateY(-18deg) scale(0.82) skew(-8deg, 6deg);
    filter: blur(20px) contrast(160%) brightness(180%);
  }
  40% {
    opacity: 0.95;
    transform: perspective(1200px) translateZ(35px) rotateX(-5deg) rotateY(4deg) scale(1.045) skew(3deg, -2deg);
    filter: blur(4px) contrast(135%) brightness(145%);
  }
  70% {
    transform: perspective(1200px) translateZ(-12px) rotateX(2deg) rotateY(-1.5deg) scale(0.985) skew(-1deg, 0.5deg);
    filter: blur(0px) contrast(110%) brightness(115%);
  }
  100% {
    opacity: 1;
    transform: perspective(1200px) translateZ(0) rotateX(0deg) rotateY(0deg) scale(1) skew(0deg, 0deg);
    filter: blur(0px) contrast(100%) brightness(100%);
  }
}

/* Crystalline glass shatter reform transition when slide becomes active or card revealed */
.pricing-card.glass-3d-revealed,
.feature-box.glass-3d-revealed {
  animation: heroSlideGlassShatter 0.95s cubic-bezier(0.19, 1, 0.22, 1) forwards !important;
}

/* ==========================================================================
   REGIONAL LOCATION BAR & FOOTER LOCATION BADGES
   ========================================================================== */
.footer-regional-bar {
  background: linear-gradient(135deg, rgba(0, 242, 254, 0.08) 0%, rgba(16, 185, 129, 0.08) 100%);
  border: 1px solid rgba(0, 242, 254, 0.35);
  border-radius: 14px;
  padding: 22px 28px;
  margin-bottom: 42px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35), inset 0 1px 2px rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.regional-badge {
  padding: 10px 22px;
  border-radius: 10px;
  color: #ffffff;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none !important;
  font-size: 0.98rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.regional-badge:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 30px rgba(0, 242, 254, 0.6), inset 0 1px 4px rgba(255, 255, 255, 0.6);
  border-color: #ffffff !important;
  color: #ffffff !important;
}

/* ==========================================================================
   EARLY BIRD PROMO BOX (NIGERIA & SA SITES)
   ========================================================================== */
.early-bird-promo-box {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  border: 2px solid #f87171;
  border-radius: 16px;
  padding: 22px 24px;
  color: #ffffff;
  max-width: 460px;
  box-shadow: 0 14px 35px rgba(220, 38, 38, 0.45), inset 0 2px 4px rgba(255, 255, 255, 0.25);
  position: relative;
  overflow: hidden;
  animation: pulsePromo 3s infinite ease-in-out;
  margin: 22px 0;
  text-align: left;
}

@keyframes pulsePromo {
  0%, 100% { transform: scale(1); box-shadow: 0 14px 35px rgba(220, 38, 38, 0.45); }
  50% { transform: scale(1.02); box-shadow: 0 18px 45px rgba(220, 38, 38, 0.65); border-color: #ffffff; }
}

.early-bird-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.18rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 8px;
  color: #ffffff;
  text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}

.early-bird-gift-icon {
  font-size: 1.45rem;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.early-bird-subtext {
  font-size: 0.98rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 18px;
  font-weight: 500;
}

.early-bird-code-pill {
  background: rgba(153, 27, 27, 0.88);
  border: 2px dashed rgba(255, 255, 255, 0.85);
  border-radius: 12px;
  padding: 12px 18px;
  text-align: center;
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: 2.5px;
  color: #ffffff;
  box-shadow: inset 0 2px 6px rgba(0,0,0,0.45);
  cursor: pointer;
  transition: all 0.25s ease;
  display: block;
}

.early-bird-code-pill:hover {
  background: rgba(127, 29, 29, 0.98);
  border-color: #ffffff;
  transform: scale(1.02);
}

/* ==========================================================================
   FLOATING GIFT BOX PROMO WIDGET (REPLACING INLINE PROMO BOXES)
   ========================================================================== */
.promo-floating-btn {
  position: fixed;
  bottom: 84px;
  right: 28px;
  z-index: 99999;
  background: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%);
  border: 2px solid #f87171;
  border-radius: 50px;
  padding: 12px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  font-weight: 800;
  font-size: 0.98rem;
  box-shadow: 0 10px 30px rgba(220, 38, 38, 0.55), inset 0 2px 4px rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  animation: promoFloatBounce 2.5s infinite ease-in-out;
}

@keyframes promoFloatBounce {
  0%, 100% { transform: translateY(0); box-shadow: 0 10px 30px rgba(220, 38, 38, 0.55); }
  50% { transform: translateY(-6px) scale(1.03); box-shadow: 0 16px 40px rgba(220, 38, 38, 0.75); }
}

.promo-floating-btn:hover {
  transform: translateY(-4px) scale(1.06) !important;
  border-color: #ffffff;
}

.promo-floating-btn .gift-icon-anim {
  font-size: 1.6rem;
  animation: giftWiggle 1.8s infinite ease-in-out;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.4));
}

@keyframes giftWiggle {
  0%, 100% { transform: rotate(0deg); }
  20% { transform: rotate(-12deg) scale(1.1); }
  40% { transform: rotate(12deg) scale(1.1); }
  60% { transform: rotate(-8deg); }
  80% { transform: rotate(8deg); }
}

.promo-discount-card {
  position: fixed;
  bottom: 152px;
  right: 28px;
  z-index: 99999;
  width: 360px;
  background: linear-gradient(135deg, rgba(20, 5, 5, 0.98) 0%, rgba(153, 27, 27, 0.95) 100%);
  border: 2px solid #f87171;
  border-radius: 20px;
  padding: 24px;
  color: #ffffff;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.75), 0 0 40px rgba(239, 68, 68, 0.4);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transform: translateY(20px) scale(0.9);
  opacity: 0;
  pointer-events: none;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.promo-discount-card.active {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}

.promo-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 12px;
  margin-bottom: 14px;
}

.promo-card-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.05rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #fca5a5;
}

.promo-card-close {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #ffffff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
}

.promo-card-close:hover {
  background: #ef4444;
  transform: scale(1.1);
}

/* ==========================================================================
   STATIC HERO HIGHLIGHTS & BARS (REFINED, SUBTLE, NON-DISTRACTING)
   ========================================================================== */
.hero-highlight-green {
  display: inline-block;
  color: #10b981 !important;
  -webkit-text-fill-color: #10b981 !important;
  background: none !important;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
  filter: none !important;
  font-weight: 800;
  text-shadow: 0 0 12px rgba(16, 185, 129, 0.35) !important;
  animation: none !important;
  transform: none !important;
}

.hero-highlight-cyan {
  display: inline-block;
  color: #00f2fe !important;
  -webkit-text-fill-color: #00f2fe !important;
  background: none !important;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
  filter: none !important;
  font-weight: 800;
  text-shadow: 0 0 12px rgba(0, 242, 254, 0.35) !important;
  animation: none !important;
  transform: none !important;
}

.hero-bar-green {
  display: inline-block;
  width: 44px;
  height: 3px;
  background: #10b981;
  border-radius: 2px;
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.5) !important;
  animation: none !important;
}

.hero-bar-cyan {
  display: inline-block;
  width: 44px;
  height: 3px;
  background: #00f2fe;
  border-radius: 2px;
  box-shadow: 0 0 8px rgba(0, 242, 254, 0.5) !important;
  animation: none !important;
}
