:root {
  /*============================================
    BRAND COLORS (Core Identity)
    ============================================ */
  --everfast-blue: #00529b;
  --everfast-gold: #efb13a;
  --everfast-gray: #E0E3E6;

  /*============================================
    UI COLORS (Semantic Aliases)
    ============================================ */
  --color-primary: var(--everfast-blue);
  --color-primary-10: rgba(0, 82, 155, 0.1);
  --color-accent: var(--everfast-gold);

  /*============================================
    TYPOGRAPHY
    ============================================ */
  --font-heading: 'NewsReader', serif;
  --font-body: 'Roboto', sans-serif;

  /*============================================
    BORDER RADIUS
    ============================================ */
  --radius-sm: 15px;
  --radius-md: 25px;
  --radius-lg: 50px;

  /*============================================
    TRANSITIONS
    ============================================ */
  --transition-fast: 0.15s ease;
  --transition-base: 0.25s ease;
  --transition-slow: 0.35s ease;

  /*============================================
    SHADOWS
    ============================================ */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.15);
  --shadow-lg: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;

  /*============================================
    BORDERS
    ============================================ */
  --border-light: rgba(255, 255, 255, 0.1);

  /*============================================
    HEADER
    ============================================ */
  --header-bg: rgba(6, 87, 158, 0.75);
  --header-blur: 10px;
  --header-shadow: 0 5px 8px rgba(0, 0, 0, 0.3);

  /*============================================
    GRADIENTS
    ============================================ */
  --gradient-blue: linear-gradient(rgba(0, 80, 160, 0.5), rgba(0, 80, 160, 0.5));
  --gradient-gold: linear-gradient(to right top, #ce7500, #d78721, #e19939, #eaab4f, #f3bd65, #f4bf66, #f6c066, #f7c267, #f1b552, #eba73d, #e59925, #df8b00);
  
  /*============================================
    HERO
    ============================================ */
  --hero-overlay: var(--gradient-blue);
  --hero-padding-sm: clamp(0.75rem, 1vw + 0.5rem, 1.25rem) 0;
  --hero-padding-md: clamp(2rem, 8vw, 4.5rem) 0;
  --hero-padding-lg: clamp(1rem, 8vw, 5rem) 0;
  --hero-padding-xl: clamp(2.5rem, 8vw, 7.5rem) 0;

  /*============================================
    BACKGROUND SYSTEM (Page-level)
    ============================================ */
  --bg-base: linear-gradient(135deg, #f0f0f0 0%, #e8e8e8 100%);
  --bg-card: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);

  /* Overlay gradients */
  --bg-overlay-blue: radial-gradient(circle at 30% 20%, rgba(6, 87, 158, 0.15) 0%, transparent 50%);
  --bg-overlay-gold: radial-gradient(circle at 70% 80%, rgba(234, 175, 70, 0.12) 0%, transparent 50%);

  /* Dot pattern overlay */
  --bg-pattern-blue-dot: radial-gradient(circle at 25% 25%, rgba(6, 87, 158, 0.3) 2px, transparent 2px);
  --bg-pattern-gold-dot: radial-gradient(circle at 75% 75%, rgba(234, 175, 70, 0.4) 2px, transparent 2px);

  /* Pattern sizing */
  --bg-pattern-size-sm: 30px;
  --bg-pattern-size-lg: 45px;
  --bg-pattern-offset: 15px;
}

/*============================================
  BASE STYLES
  ============================================ */
body {
  background:
    var(--bg-overlay-blue),
    var(--bg-overlay-gold),
    var(--bg-base);
  background-attachment: fixed;
  min-height: 100vh;
  position: relative;
}

/* Dot pattern overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    var(--bg-pattern-blue-dot),
    var(--bg-pattern-gold-dot);
  background-size:
    var(--bg-pattern-size-sm) var(--bg-pattern-size-sm),
    var(--bg-pattern-size-lg) var(--bg-pattern-size-lg);
  background-position: 0 0, 15px 1px;
  pointer-events: none;
  z-index: -999;
}

/* Ensure main takes full height */
main {
  min-height: 100vh;
  position: relative;
}

/*============================================
  BUTTONS
  ============================================ */
.btn-style {
  background-image: var(--gradient-gold);
  color: black;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(0.875rem, 2.5vw, 1rem) !important;
  padding: clamp(0.375rem, 1.5vw, 0.5rem) clamp(0.75rem, 2vw, 1rem) !important;
  border: 1px solid var(--color-accent);
  border-radius: var(--radius-md);
  text-transform: uppercase;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.btn-style--sm {
  font-size: clamp(0.75rem, 2vw, 0.875rem) !important;  /* 12-14px */
  padding: clamp(0.25rem, 1vw, 0.375rem) clamp(0.5rem, 1.5vw, 0.75rem) !important;
}

.btn-style:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 4px 12px rgba(239, 177, 58, 0.4);
  filter: brightness(1.05);
  color: black;
}

/*============================================
  COLOR UTILITIES
  ============================================ */
/* Text colors */
.text-blue {
  color: var(--color-primary);
}

.text-gold {
  color: var(--color-accent);
}

/* Background colors */
.bg-blue {
  background-color: var(--color-primary);
}

.bg-gray {
  background-color: var(--everfast-gray);
}

/*============================================
  SECTION STYLES
  ============================================ */
/* Section container */
.section-wrapper {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Section title */
.section__title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(1.5rem, 5vw, 3rem);
  position: relative;
  display: block;
  text-align: center;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  letter-spacing: 0.5px;
}

.section__title--contact-form {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
}

/* Decorative underline */
.section__title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  border-radius: 2px;
  transform: translateX(-50%);
  animation: sectionUnderlineExpand 0.6s ease-out 0.4s forwards;
}

@keyframes sectionUnderlineExpand {
  from {
    width: 0;
  }
  to {
    width: 60px;
  }
}

/* Section text */
.section__text {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 3vw, 1.125rem);
  line-height: 1.7;
  letter-spacing: 0.3px;
}

.section__subtitle {
  font-size: clamp(1.125rem, 3.5vw, 1.5rem);
}

.section__list {
  padding-left: 1.25rem;
  text-align: left;
  width: fit-content;
  margin: 0 auto;
}

.section__list li {
  padding-left: 0.5rem;
}
  
/*============================================
  FORM UTILITIES
  ============================================ */
.form-label-title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .875rem;
}

.form-input-fully-rounded {
  border: 2px solid var(--color-accent);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
}

.checkbox-border {
  border: 1px solid var(--color-accent);
}

/*============================================
  CARD UTILITIES
  ============================================ */
/* Glassmorphism variants */
.glass--blue {
  background: rgba(6, 87, 158, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.glass--light {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: var(--shadow-md);
}

.glass--subtle {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.glass--blue-dark {
  background: linear-gradient(135deg, rgba(0, 82, 155, 0.95), rgba(10, 78, 125, 0.9));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: var(--shadow-md);
}

/* Hover effects */
.hover-lift {
  translate: 0 0;
  transition: translate var(--transition-base), box-shadow var(--transition-base);
}
.hover-lift:hover {
  translate: 0 -8px;
  box-shadow: var(--shadow-lg);
}

/* Card entrance animation */
@keyframes cardFadeIn {
  from { opacity: 0; transform: translateY(25px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Stagger classes */
.animate-stagger-1 { animation: cardFadeIn 0.6s ease-out 0.1s forwards; opacity: 0; }
.animate-stagger-2 { animation: cardFadeIn 0.6s ease-out 0.25s forwards; opacity: 0; }
.animate-stagger-3 { animation: cardFadeIn 0.6s ease-out 0.4s forwards; opacity: 0; }
.animate-stagger-4 { animation: cardFadeIn 0.6s ease-out 0.55s forwards; opacity: 0; }
.animate-stagger-5 { animation: cardFadeIn 0.6s ease-out 0.7s forwards; opacity: 0; }

/* Slide animations */
@keyframes slideFromRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideFromLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeScale {
  from { opacity: 0; transform: scale(0.95) !important; }
  to { opacity: 1; transform: scale(1) !important; }
}

@keyframes slideFromUp {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideFromDown {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-slide-right {
  opacity: 0;
  animation: slideFromRight 0.8s ease-out 0.2s forwards;
}

.animate-slide-left {
  opacity: 0;
  animation: slideFromLeft 0.8s ease-out 0.2s forwards;
}
.animate-slide-up {
  opacity: 0;
  animation: slideFromDown 0.8s ease-out 0.2s forwards;
}

.animate-slide-down {
  opacity: 0;
  animation: slideFromUp 0.8s ease-out 0.2s forwards;
}


.animate-fade-scale {
  opacity: 0;
  animation: fadeScale 0.8s ease-out 0.3s forwards !important;
}

/* Hover scale effect */
.hover-scale {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hover-scale:hover {
  transform: scale(1.02) !important;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(239, 177, 58, 0.2);
}

/*============================================
  CARD COMPONENTS
  ============================================ */
/* Content Card */
.content-card {
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.content-card__title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 5vw, 2rem); 
  color: var(--color-accent);
  font-weight: 700;
}

.content-card__description {
  font-family: var(--font-body);
  font-size: clamp(1rem, 3vw, 1.25rem);
  width: 75%;
  color: white;
}

.content-card__list-item {
  color: white;
  text-align: left;
  display: flex;
  align-items: center;
  font-size: clamp(1rem, 3vw, 1.25rem);
  font-weight: 600;
}

.content-card__list-item-text {
  font-family: var(--font-body);
}

.content-card__icon {
  color: var(--color-accent);
}

/* Perk Card */
.perk-card {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.perk-card__icon {
  font-size: clamp(2.5rem, 8vw, 3.75rem);
}

.perk-card__text {
  font-size: clamp(.875rem, 3vw, 1.15rem);
  font-weight: 600;
}
@media (max-width: 991.98px) {
  .perk-card__text {
    min-height: 2.5em;
  }
}

/* Pricing Card */
.price-teaser-card {
  border-radius: var(--radius-md);
}

.price-teaser-card__title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 4vw, 1.75rem);
  font-weight: 500;
}

.price-teaser-card__amount {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 10vw, 4.5rem);
  font-weight: 500;
  color: var(--color-accent);
}

.price-teaser-card__period {
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 3vw, 1.25rem);
  color: white;
}

/* Benefit Card */
.benefit-card {
  color: white;
  border-radius: var(--radius-md);
  transition: border-color var(--transition-base);
  font-family: var(--font-body);
}
.benefit-card:hover {
  border-color: rgba(239, 177, 58, 0.4);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(239, 177, 58, 0.25);
}

.benefit-card__icon.benefit-card__icon {
  border-radius: var(--radius-lg);
  width: clamp(60px, 15vw, 80px) !important;
  height: clamp(60px, 15vw, 80px) !important;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.benefit-card:hover .benefit-card__icon {
  transform: scale(1.1) !important;
}

.benefit-card__title {
  font-family: var(--font-heading);
  font-weight: bold;
  font-size: clamp(0.875rem, 4vw, 1.15rem);
  letter-spacing: 0.5px;
}

.benefit-card:hover .benefit-card__title {
  text-shadow: 0 0 10px rgba(239, 177, 58, 0.4);
}

/* Service Card */
.service-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition-base);
}

.service-card:hover {
  border-color: rgba(239, 177, 58, 0.5);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25), 0 0 20px rgba(239, 177, 58, 0.5);
}

.service-card__image {
  border-radius: 50px 50px 0 0;
  transition: transform 0.4s ease;
}

.service-card:hover .service-card__image {
  transform: scale(1.05) !important;
}

.service-card__title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 4vw, 1.5rem);
  letter-spacing: 0.5px;
}

.service-card:hover .service-card__title {
  text-shadow: 0 0 12px rgba(239, 177, 58, 0.4);
}

.service-card__text {
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 3vw, 1rem);
  line-height: 1.6;
  opacity: 0.9;
  letter-spacing: 0.3px;
}

/* Business Pitch Card */
.business-pitch-card {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.business-pitch-card__list-item {
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 3vw, 1rem);
  color: black;
  border-bottom: 1px solid gray;
}

.business-pitch-card__title {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 3.5vw, 1.5rem);
  color: var(--color-primary);
}

/* Pricing Card */
.pricing-card {
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
}

.pricing-card:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transition: left 0.5s ease;
  z-index: 1;
  pointer-events: none;
}

.pricing-card:hover::before {
  left: 100%;
}

/* Price hover effect */
.pricing-card__price {
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--color-accent);
  text-shadow: 0 2px 8px rgba(239, 177, 58, 0.3);
  transition: transform var(--transition-base);
  font-size: clamp(2.5rem, 10vw, 4.5rem);
}

.pricing-card:hover .pricing-card__price {
  transform: scale(1.05);
}

.pricing-card__price-term {
  font-family: var(--font-body);
  font-size: clamp(0.75rem, 2.5vw, 0.875rem);
  opacity: 0.8;
}

/* Badge */
.pricing-card__badge {
  display: inline;
  margin: 0 auto;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 5px 5px, rgba(0, 0, 0, 0.22) 0px 5px 5px;
  transition: box-shadow var(--transition-base), transform var(--transition-base);
  border-radius: 0 0 150px 150px;
}

.pricing-card__badge--white {
  background-color: white;
  
}

.pricing-card:hover .pricing-card__badge {
  box-shadow: 0 5px 15px rgba(239, 177, 58, 0.4);
  transform: scale(1.02);
}

.pricing-card__badge-title {
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: clamp(1rem, 4vw, 1.5rem);
  letter-spacing: 1px;
  font-weight: 700;
  text-transform: uppercase;
}

/* Title (speed display for detailed) */
.pricing-card__title {
  font-family: var(--font-heading);
  color: var(--color-primary);
  font-weight: 700;
  letter-spacing: 1px;
  font-size: clamp(1.5rem, 4vw, 1.75rem);
}

/* Features */
.pricing-card__features {
  margin: 0 auto;
}

.pricing-card__feature-icon {
  color: var(--color-success, #28a745);
  transition: transform 0.3s ease, color 0.3s ease;
  display: inline-block;
}

.pricing-card:hover .pricing-card__feature-icon {
  animation: checkmarkBounce 0.4s ease;
  color: var(--color-accent);
}

@keyframes checkmarkBounce {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.3); }
}

.pricing-card__feature-text {
  font-family: var(--font-body);
  font-size: clamp(0.8rem, 3vw, 1rem);
  color: black;
  letter-spacing: 0.3px;
  font-weight: 700;
}

.pricing-card__feature-text--bordered {
  border-bottom: 1px solid gray;
}

.pricing-card__feature-text--bordered:first-child {
  border-top: 1px solid gray;
}

.pricing-card__feature-text--bordered--white {
  border-bottom: 1px solid white !important;
}

.pricing-card__feature-text--bordered--white:first-child {
  border-top: 1px solid white !important;
}

/* Footer */
.pricing-card__footer {
  background-color: #f8f9fa;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
}

/* Disclaimer */
.pricing-card__disclaimer {
  font-size: clamp(0.75rem, 2.5vw, 0.875rem);
  font-family: var(--font-body);
  color: black;
  font-weight: 700;
}

.pricing-card__disclaimer-box {
  background-color: var(--color-primary);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
}

/* CTA Text (e.g., "Already a customer?") */
.pricing-card__cta-text {
  font-family: var(--font-body);
  font-size: clamp(1.125rem, 4vw, 1.75rem);
  font-weight: 700;
  color: var(--color-primary);
}

/* Location Disclaimer (e.g., "*Applicable in...") */
.pricing-card__location-disclaimer {
  font-family: var(--font-body);
  font-size: clamp(0.8rem, 2.5vw, 1rem);
  font-style: italic;
  color: white;
  background-color: var(--color-primary);
  border-radius: 30px;
}

/* Solution Card */
.solution-card {
  position: relative;
  overflow: hidden;
  border-left: 4px solid var(--color-accent) !important;
  border-radius: var(--radius-sm);
  transition: border-color var(--transition-base);
}

.solution-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  background-size: 200% 200%;
  border-radius: inherit;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.solution-card::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.solution-card .card-body {
  position: relative;
  z-index: 1;
}

.solution-card:hover::before {
  opacity: 1;
}

.solution-card:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25), 0 0 15px rgba(239, 177, 58, .5) !important;
}

.solution-card__title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 4vw, 1.75rem);
  color: white;
}
/* Title Icon bounce on hover */
.solution-card__title i {
  display: inline-block;
  transition: transform 0.3s ease;
}

.solution-card:hover .solution-card__title i {
  animation: titleIconBounce 0.5s ease;
}

@keyframes titleIconBounce {
  0%, 100% { transform: scale(1); }
  25% { transform: scale(1.2); }
  50% { transform: scale(0.95); }
  75% { transform: scale(1.1); }
}

.solution-card__list-item {
  font-family: var(--font-body);
  font-size: clamp(1rem, 3vw, 1.25rem);
  color: white;
}

.solution-card__icon {
  color: var(--color-accent);
}

/* Home Variant */
.solution-card--home {
  background: linear-gradient(135deg, #2b6ba8, #1f5a95, #145082, #00529B) !important;
  border-color: rgba(3, 3, 112, 0.5);
}

.solution-card--home:hover {
  box-shadow: 0 15px 45px rgba(61, 127, 196, 0.2), 0 0 30px rgba(61, 127, 196, 0.12);
}

.solution-card--home .solution-card__title {
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.solution-card--home .solution-card__icon {
  color: #5ba3e0;
  text-shadow: 0 0 6px rgba(91, 163, 224, 0.3);
}

.solution-card--home::before {
  background: linear-gradient(135deg, #3d7fc4, #2b6ba8, #1f5a95, #00529B);
  animation: cardGradientShift 3s ease infinite;
}
.solution-card--home::after {
   background:
    radial-gradient(circle at 30% 40%, rgba(61, 127, 196, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(0, 82, 155, 0.1) 0%, transparent 50%);
}

.solution-card--home:hover::before {
  opacity: 1;
}

.solution-card--home:hover {
  box-shadow: 0 15px 45px rgba(61, 127, 196, 0.2), 0 0 30px rgba(61, 127, 196, 0.12);
}

.solution-card--home .solution-card__title {
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.solution-card--home .solution-card__icon {
  color: #5ba3e0;
  text-shadow: 0 0 6px rgba(91, 163, 224, 0.3);
}

/* Gaming Variant */
.solution-card--gaming {
  background: linear-gradient(135deg, #0f0c29, #302b63, #24243e) !important;
  border-color: transparent;
}

.solution-card--gaming::before {
  background: linear-gradient(45deg, #00ffff, #ff00ff, #00ffff, #ff00ff);
  background-size: 300% 300%; /* override base 200% */
  animation: cardGradientShift 4s ease infinite;
}
.solution-card--gaming::after {
  background:
    radial-gradient(circle at 20% 50%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(255, 0, 255, 0.1) 0%, transparent 50%);
}

.solution-card--gaming:hover {
  box-shadow: 0 20px 60px rgba(0, 255, 255, 0.2), 0 0 40px rgba(255, 0, 255, 0.15);
}

.solution-card--gaming .solution-card__title {
  background: linear-gradient(90deg, #00ffff, #ff00ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.solution-card--gaming .solution-card__title i {
  color: #00ffff;
  filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.4));
  -webkit-text-fill-color: #00ffff;
}

.solution-card--gaming .solution-card__list-item i {
  color: #00ffff;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

/* Business Variant */
.solution-card--business {
  background: linear-gradient(135deg, #00529B 0%, #1a3a6b 40%, #1f2657 70%, #0f0c29 100%) !important;
  border-color: transparent;
}

.solution-card--business::before {
  background: linear-gradient(135deg, #4a90e2, #00529B, #1a3a6b, #4a90e2);
  background-size: 300% 300%; /* override base 200% */
  animation: cardGradientShift 3s ease infinite;
}

.solution-card--business:hover {
  box-shadow: 0 15px 45px rgba(74, 144, 226, 0.2), 0 0 30px rgba(15, 12, 41, 0.15);
}

.solution-card--business .solution-card__title {
  background: linear-gradient(135deg, #efb13a, #f3bd65, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 12px rgba(239, 177, 58, 0.3));
}

.solution-card--business .solution-card__title i {
  color: #efb13a;
  filter: drop-shadow(0 0 10px rgba(239, 177, 58, 0.4));
  -webkit-text-fill-color: #efb13a;
}

.solution-card--business .solution-card__list-item i {
  color: #5ba3e0;
  text-shadow: 0 0 8px rgba(91, 163, 224, 0.3);
}

@keyframes cardGradientShift  {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Base for solution card buttons */
.btn-style--card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  text-transform: uppercase;
  font-size: clamp(0.875rem, 2.5vw, 1rem) !important;
  padding: clamp(0.375rem, 1.5vw, 0.5rem) clamp(0.75rem, 2vw, 1rem);
  color: white !important;
  font-weight: 700 !important;
}

.btn-style--card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.btn-style--card:hover {
  transform: translateY(-2px);
}

.btn-style--card:hover::before {
  left: 100%;
}

/* Variants - only unique properties */
.btn-style--gaming {
  background: linear-gradient(135deg, #00ffff, #ff00ff) !important;
  border: 2px solid #00ffff !important;
}

.btn-style--gaming:hover {
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.5), 0 0 30px rgba(255, 0, 255, 0.3);
}

.btn-style--home {
  background: linear-gradient(135deg, #3d7fc4, #2b6ba8) !important;
  border: 2px solid #3d7fc4 !important;
}

.btn-style--home:hover {
  box-shadow: 0 0 15px rgba(61, 127, 196, 0.4), 0 0 25px rgba(61, 127, 196, 0.2);
}

.btn-style--business {
  background: linear-gradient(135deg, #4a90e2, #00529B) !important;
  border: 2px solid #4a90e2 !important;
}

.btn-style--business:hover {
  box-shadow: 0 0 15px rgba(74, 144, 226, 0.4), 0 0 25px rgba(74, 144, 226, 0.2);
}

/*============================================
  TARGET AUDIENCE CARDS
============================================ */
.target-card {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.target-card__image {
  border-radius: 25px 25px 0 0;
}
@media (max-width: 767.98px) {
  .target-card__image {
    max-height: 175px;
    object-fit: cover;
  }
}

.target-card__title {
  color: var(--color-accent);
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 4vw, 1.5rem);
  letter-spacing: 0.5px;
  font-weight: bold;
  text-transform: uppercase;
}

.target-card__text {
  color: white;
  font-size: clamp(0.875rem, 3vw, 1rem);
  font-family: var(--font-body);
}

/*============================================
  HEADER/NAVIGATION STYLES
  ============================================ */
.header {
  background-color: var(--header-bg);
  backdrop-filter: blur(var(--header-blur));
  -webkit-backdrop-filter: blur(var(--header-blur));
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--header-shadow);
}

.header .dropdown-menu li {
  text-align: center;
}

.header__logo {
  width: clamp(7rem, 20vw, 10rem);
  height: auto;
  transition: transform var(--transition-base), filter var(--transition-base);
}
.header__logo:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}

/* Nav links */
.header__nav-link {
  font-family: var(--font-body);
  font-size: 0.875rem;
  text-decoration: none;
}

.header__nav-link .nav-link {
  position: relative;
  transition: color var(--transition-base);
  color: white;
}

/* Underline effect */
.header__nav-link .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--color-accent);
  transition: width var(--transition-base), left var(--transition-base);
}
.header__nav-link .nav-link:hover {
  color: var(--color-accent);
}
.header__nav-link .nav-link:hover::before {
  width: 100%;
  left: 0;
}

/* Dropdown menu */
.header__nav-link .dropdown-menu {
  border: none;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  padding: 0.5rem 0;
}
.header .header__nav-link .dropdown-menu.show {
  animation: dropdownFadeIn var(--transition-base);
}
@keyframes dropdownFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Dropdown items */
.header__nav-link .dropdown-item {
  transition: background-color var(--transition-fast), color var(--transition-fast);
  padding: 0.5rem 1.5rem;
}

.header__nav-link .dropdown-item:hover {
  background-color: var(--color-primary-10);
  color: var(--color-primary);
}

/* Mobile toggle */
.header__toggle {
  background-color: var(--color-accent);
  border: none;
}

/*============================================
  FOOTER SECTION
  ============================================ */
.footer {
  background-color: var(--color-primary);
  
  color: white;
}

.footer__title {
  font-family: var(--font-heading);
  text-transform: uppercase;
}

.footer__content-width {
  width: 100%;
}
@media (max-width: 768px) {
  .footer__content-width {
    width: 90%;
  }
}

.footer__logo {
  width: clamp(7rem, 20vw, 10rem);
  height: auto;
}

.footer__disclaimer {
  font-size: 0.75rem;
  font-style: italic;
}

.footer__bottom {
  border-top: 2px solid var(--everfast-gold);
  text-align: center;
  margin: 0 auto;
}

.footer__social-icon {
  font-size: clamp(1.5rem, 5vw, 2rem);
  color: white;
}


/*============================================
  HERO SECTION
  ============================================ */
/* Base hero style (shared by all) */
.hero {
  background-size: 110%;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  overflow: hidden;
  position: relative;
  animation: heroKenBurns 60s ease-in-out 0.5s infinite alternate backwards;
}
/* Ken Burns - subtle zoom effect */
@keyframes heroKenBurns {
  from {
    background-size: 110%;
    background-position: center;
  }
  to {
    background-size: 120%;
    background-position: center top;
  }
}

/* Overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--hero-overlay);
  z-index: 0;
}
/* Ensure content stays above overlay */
.hero > * {
  position: relative;
  z-index: 1;
}

/* Entrance animation */
@keyframes heroFadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === Padding Modifiers === */
.hero--padding-sm { padding: var(--hero-padding-sm); }
.hero--padding-md { padding: var(--hero-padding-md); }
.hero--padding-lg { padding: var(--hero-padding-lg); }
.hero--padding-xl { padding: var(--hero-padding-xl); }

/* === Background Image Modifiers === */
.hero--home      { background-image: url('images/johnson-county-public-market.jpg'); }
.hero--contact    { background-image: url('images/union-station-downtown-kc.jpg'); }
.hero--internet   { background-image: url('images/entire-family-using-everfast-wifi-and-internet.jpg'); }
.hero--wifi       { background-image: url('images/parent-and-children-using-a-laptop-smartphone-in-the-living-room.jpg'); }
.hero--phone      { background-image: url('images/mother-talking-on-phone-at-home-office.jpg'); }
.hero--tv         { background-image: url('images/person-pointing-remote-at-screen.jpg'); }
.hero--blog       { background-image: url('images/johnson-county-public-market.jpg'); }
.hero--business   { background-image: url('images/coworkers-using-everfast-internet-for-business-1.jpg'); }
.hero--business-phone { background-image: url('images/man-and-woman-working-on-phone.jpg'); }
.hero--business-security { background-image: url('images/young-man-ordering-coffee-at-the-counter.jpg'); }
.hero--business-sdwan { background-image: url('images/small-business-team-on-meeting-using-computer.jpg'); }
.hero--enterprise { background-image: url('images/iStock-1328677027-2.jpg'); }
.hero--about      { background-image: url('images/people-walking-in-park.jpg'); }

/* === Hero Content Elements === */
.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 500;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  animation: heroFadeSlideUp 0.8s ease-out forwards;
}

.hero__text {
  font-family: var(--font-body);
  font-size: clamp(1rem, 3vw, 1.5rem);
  font-weight: 700;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  opacity: 0;
  animation: heroFadeSlideUp 0.8s ease-out 0.15s forwards;
}
.hero__text--small {
  font-size: clamp(0.75rem, 2.5vw, 0.875rem);
  font-weight: bold;
}

.hero__price {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 10vw, 5rem);
  font-weight: 500;
  color: var(--color-accent);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  opacity: 0;
  animation: heroFadeSlideUp 0.8s ease-out 0.15s forwards;
}
.hero__price-term {
  font-size: clamp(1.25rem, 5vw, 2.5rem);
}

/* Hero CTA wrapper - handles entrance animation */
.hero__cta {
  display: inline-block;
  opacity: 0;
  animation: heroFadeSlideUp 0.8s ease-out 0.3s forwards;
}

/* === Hero Image Wrapper (Home Page) === */
.hero__image-wrapper {
  position: relative;
  opacity: 0;
  animation: heroFadeSlideUp 0.8s ease-out 0.2s forwards;
}

.hero__image-wrapper::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-35%, -50%);
  width: 500px;
  height: 500px;
  background-color: var(--color-primary);
  border-radius: 50%;
  z-index: 0;
}
.hero__image-wrapper img {
  position: relative;
  z-index: 1;
  transform: scale(1.10);
}

@keyframes heroFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(1deg);
  }
}

/* === Hero Mobile Responsive === */
@media (max-width: 768px) {
  .hero {
    background-size: cover;
    animation: none;
  }
}

/*============================================
  CONTACT FORM SECTION
  ============================================ */
.contact-wrapper {
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

/* Background image modifiers */
.contact-wrapper--home {
  background-image: var(--hero-overlay), url('images/olathe-offering-everfast-home-internet-to-residents.jpg');
}

.contact-wrapper--internet {
  background-image: var(--hero-overlay), url('images/family-smiling-as-mother-looks-at-phone.jpg');
}

.contact-wrapper--phone {
  background-image: var(--hero-overlay), url('images/family-smiling-as-mother-looks-at-phone.jpg');
}

.contact-wrapper--tv {
  background-image: var(--hero-overlay), url('images/group-of-friends-watching-football.jpg');
}

.contact-wrapper--business {
  background-image: var(--hero-overlay), url('images/man-smiling-talking-on-phone.jpg');
}

.contact-wrapper--business-2 {
  background-image: var(--hero-overlay), url('images/happy-young-businesswoman-speaking-on-the-phone-in-a-warehouse-1.jpg');
}

.contact-wrapper--business-3 {
  background-image: var(--hero-overlay), url('images/businessman-talking-on-phone-while-taking-notes-in-flower-shop.jpg');
}

.contact-wrapper--business-4 {
  background-image: var(--hero-overlay), url('images/woman-using-laptop-sitting-in-the-office.jpg');
}

/* Contact Card */
.contact-card {
  border-radius: 3rem;
  box-shadow: var(--shadow-lg); /*may need to modify later */
  border: none;
}

/*============================================
  COMPARISON TABLE SECTION
  ============================================ */
.comparison-table__column {
  position: relative;
}

.comparison-table__header {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 25px 25px 0 0;
  padding: 20px;
  text-align: center;
  font-weight: 700;
  font-size: 1.3rem;
  position: relative;
  margin-bottom: 0;
  font-family: var(--font-body);
}

/* EverFast Header - green checkmark */
.comparison-table__header--everfast {
  color: #059669;
  background: rgba(255, 255, 255, 0.98);
}

.comparison-table__header--everfast::before {
  content: '✓';
  color: white;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: #10b981;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.5rem;
}


/* Competitors Header Variant */
.comparison-table__header--competitors {
  color: #6b7280;
}

.comparison-table__header--competitors::before {
  content: 'X';
  color: white;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: #DC2626;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.5rem;
}

.comparison-table__content {
  font-family: var(--font-body);
  background: rgba(255, 255, 255, .9);
  border-radius: 0 0 25px 25px;
  padding: 0;
  min-height: 400px;
}

.comparison-table__item {
  padding: 20px 25px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 1rem;
  line-height: 1.5;
  color: #374151;
}

.comparison-table__item:last-child {
  border-bottom: none;
}

.comparison-table__item--first {
  border-top: 1px solid rgba(0, 0, 0, .1);
}

.comparison-table__divider {
  font-family: var(--font-heading);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: var(--color-primary);
  width: 80px;
  height: 80px;
  min-width: 80px;
  max-width: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: bold;
  color: var(--color-accent);
  z-index: 10;
  box-shadow: var(--shadow-md);
  flex-shrink: 0;
}

/*============================================
  TESTIMONIAL SECTION
  ============================================ */
.testimonial {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(0.875rem, 3vw, 1.125rem);
  text-align: center;
}
.testimonial--blue {
  color: var(--color-primary);
}

.testimonial__reviewer-name {
  font-family: var(--font-body);
  font-weight: bolder;
  font-size: clamp(0.9rem, 3vw, 1rem);
}

.testimonial__reviewer-location {
  font-family: var(--font-body);
  font-weight: lighter;
  font-size: clamp(0.75rem, 2.5vw, 0.875rem);
}

.testimonial__profile-icon {
  font-size: clamp(24px, 6vw, 30px);
}

/* Prevent carousel height shift between slides */
.carousel-inner {
  min-height: 280px;
}

@media (max-width: 768px) {
  .carousel-inner {
    min-height: 350px;
  }
}

@media (max-width: 576px) {
  .carousel-inner {
    min-height: 420px;
  }
}

/*============================================
  FAQ SECTION
  ============================================ */
.faq-accordion {
  box-shadow: var(--shadow-md);
}

.faq-accordion__question {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(0.9rem, 3.5vw, 1.125rem);
}

.faq-accordion__answer {
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 3vw, 1rem);
}

/*===========================================
  SERVICE AREA NAVIGATION SECTION
  =========================================== */
.service-area-state-btn {
  font-family: var(--font-body);
  background-color: var(--color-primary);
  color: white;
  border-radius: var(--radius-lg);
  font-weight: 500;
  font-size: clamp(1.1rem, 4vw, 1.5rem);
  width: fit-content;
  margin: 0 auto;
}
.service-area-state-btn--gold {
  background-color: var(--color-accent);
}

.service-area-city-btn {
  border: 1px solid var(--color-primary);
  border-radius: var(--radius-md);
  padding: 0.5rem 1.5rem;
  background-color: var(--color-primary);
  color: white;
  font-family: var(--font-body);
  font-size: clamp(0.75rem, 3vw, 1rem);
  font-weight: 700;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.service-area-city-btn:hover {
  background-color: var(--color-primary);
  color: white;
}

.service-area-map {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-bottom: -96px;
}

/*============================================
  HELP CENTER / TUTORIAL SECTION
  ============================================ */
/* === Hero Section === */
.help-hero {
  color: white;
  position: relative;
  overflow: hidden;
}


.help-hero__title {
  font-family: var(--font-heading);
  color: var(--color-accent);
  font-weight: 500;
  position: relative;
  z-index: 1;
}

.help-hero__text {
  font-family: var(--font-body);
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  z-index: 1;
  line-height: 1.6;
}

/* === Tutorial Cards === */
.help-tutorial {
  cursor: pointer;
}

.help-tutorial__card {
  border: 2px solid var(--color-primary-10);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  overflow: hidden;
}

.help-tutorial:hover .help-tutorial__card {
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary);
}

/* === Video Thumbnail === */
.help-tutorial__video-thumbnail {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.help-tutorial__video-thumbnail::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 30% 70%, rgba(234, 175, 70, 0.2) 2px, transparent 2px),
    radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 20px 20px, 15px 15px;
  background-position: 0 0, 10px 10px;
}

.help-tutorial__play-icon {
  font-size: 3.5rem;
  color: var(--color-accent);
  opacity: .75;
  transition: all 0.3s ease;
  z-index: 1;
  position: relative;
}

.help-tutorial:hover .help-tutorial__play-icon {
  transform: scale(1.1);
  color: var(--color-accent);
  opacity: 1;
}

.help-tutorial__duration {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-family: var(--font-body);
  font-weight: 500;
  z-index: 1;
}

/* === Card Body === */
.help-tutorial__body {
  padding: 1.5rem;
  /* background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%); */
}

.help-tutorial__title {
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--color-primary);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  text-align: center;
}

.help-tutorial__text {
  font-family: var(--font-body);
  color: #6c757d;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 1.25rem;
  text-align: center;
}

/* === Video Player === */
.help-tutorial__video-player {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.help-tutorial__video-player:hover {
  box-shadow: var(--shadow-lg);
}

.help-tutorial__video-player video {
  background-color: #000;
}

.help-tutorial__video-player video::-webkit-media-controls-panel {
  background-color: rgba(6, 87, 158, 0.8);
}

/* === Instructions Panel === */
.help-tutorial__instructions {
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  height: fit-content;
}

.help-tutorial__instructions-title {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-primary);
}

.help-tutorial__instructions-content {
  font-family: var(--font-body);
  line-height: 1.6;
}

.help-tutorial__instructions-content h5 {
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--color-primary);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.help-tutorial__instructions-content ol {
  padding-left: 1.25rem;
}

.help-tutorial__instructions-content ol li {
  margin-bottom: 0.75rem;
  color: #495057;
}

.help-tutorial__instructions-content ol li strong {
  color: var(--color-primary);
}

.help-tutorial__instructions-content .note {
  background: rgba(6, 87, 158, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(6, 87, 158, 0.1);
  border-radius: 10px;
  padding: 1rem;
  margin: 1rem 0;
  font-style: italic;
  color: var(--color-accent);
  font-weight: 500;
}

.help-tutorial__instructions-content .note i {
  color: var(--color-accent);
  text-shadow: 0 0 5px rgba(255, 215, 0, .75);
  margin-right: 0.5rem;
}

/* === Help Contact Section === */
.help-contact {
  background: linear-gradient(135deg, rgba(6, 87, 158, 0.05) 0%, rgba(234, 175, 70, 0.05) 100%);
  border: 1px solid rgba(6, 87, 158, 0.1);
  border-radius: 15px;
}

.help-contact__title {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-family: var(--font-heading);
  color: var(--color-primary);
}

.help-contact__text {
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  font-family: var(--font-body);
  color: #6c757d;
}

/* === Responsive Design === */
@media (max-width: 991px) {
  .help-hero__title {
    font-size: 2.5rem;
  }

  .help-tutorial__title {
    font-size: 1.1rem;
  }

  .help-tutorial__instructions {
    margin-top: 2rem;
    padding: 1.5rem;
  }

  .help-tutorial__video-thumbnail {
    height: 160px;
  }

  .help-tutorial__play-icon {
    font-size: 3rem;
  }
}

@media (max-width: 767px) {
  .help-hero__title {
    font-size: 2rem;
  }

  .help-hero__text {
    font-size: 1rem;
  }

  .help-tutorial__body {
    padding: 1.25rem;
  }

  .help-tutorial__instructions {
    padding: 1.25rem;
  }

  .help-tutorial__video-thumbnail {
    height: 140px;
  }

  .help-tutorial__play-icon {
    font-size: 2.5rem;
  }

  .help-contact .btn {
    width: 100%;
    margin-bottom: 0.5rem;
  }

  .help-contact .btn:last-child {
    margin-bottom: 0;
  }
}

/*============================================
  STAT SECTION (Enterprise Page)
============================================ */
.stat__number {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-accent);
  font-size: clamp(2rem, 6vw, 3rem);
}

.stat__text {
  font-size: clamp(1rem, 3vw, 1.75rem);
  font-family: var(--font-body);
  color: white;
}

/*============================================
  FLOATING GAMING BADGE
============================================ */
.floating-gaming-badge {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border: 2px solid transparent;
  border-radius: 50px;
  text-decoration: none;
  color: white;
  z-index: 9999;
  box-shadow:
    0 8px 32px rgba(0, 255, 255, 0.2),
    0 0 20px rgba(255, 0, 255, 0.1);
  transition: all 0.3s ease;
  overflow: hidden;
  animation: float 3s ease-in-out infinite;
}

.floating-gaming-badge::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(45deg, #00ffff, #ff00ff, #00ffff);
  border-radius: 50px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
  animation: borderGlow 3s linear infinite;
}

.floating-gaming-badge:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow:
    0 12px 40px rgba(0, 255, 255, 0.4),
    0 0 30px rgba(255, 0, 255, 0.3);
}

.floating-gaming-badge:hover::before {
  opacity: 1;
}

.floating-gaming-badge__icon {
  font-size: 28px;
  animation: gamingPulse 2s ease-in-out infinite;
}

.floating-gaming-badge__text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.floating-gaming-badge__text-main {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  background: linear-gradient(90deg, #00ffff, #ff00ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.floating-gaming-badge__text-sub {
  font-size: 12px;
  font-weight: 500;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.floating-gaming-badge__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(0, 255, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
  animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes gamingPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

@keyframes borderGlow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@media (max-width: 768px) {
  .floating-gaming-badge {
    bottom: 20px;
    right: 20px;
    padding: 12px 18px;
    gap: 8px;
  }

  .floating-gaming-badge__icon {
    font-size: 24px;
  }

  .floating-gaming-badge__text-main {
    font-size: 14px;
  }

  .floating-gaming-badge__text-sub {
    font-size: 10px;
  }
}

/* ========================================
   TERMS & POLICIES PAGE
   ======================================== */
.terms-policies__list-item {
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  line-height: 1.6;
}

.terms-policies__list-item a {
  transition: color 0.2s ease;
}

.terms-policies__list-item a:hover {
  color: var(--color-accent);
}

/* Card titles - smaller size for card context */
.terms-policies .section__title {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
}

/* Card titles with icons - offset underline to account for icon */
.terms-policies .section__title::after {
  left: calc(50% + 0.75rem);
}

/* ========================================
   BROADBAND LABELS PAGE
   ======================================== */
.broadband-labels__info-list {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.broadband-labels__info-list li {
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.broadband-labels__info-list li strong {
  color: var(--color-primary);
}


.font-heading {
  font-family: var(--font-heading);
}

.font-body {
  font-family: var(--font-body);
}