/* ==========================================================================
   1. Root Variables & Base Styles
   ========================================================================== */
   :root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --cta-color: #ffffff;
    --accent-color: #0f3460;
    --highlight-color: #e94560;
    --text-color: #ffffff;
    --dark-text-color: #000000;
  }
  
  html {
    font-size: 18px;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--primary-color);
    color: var(--text-color);
    overflow-x: hidden;
    font-size: 1rem;
  }
  
  .container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 25px;
  }
  
  .section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 70px;
    color: white;
  }
  
  /* ==========================================================================
     2. General Components (Buttons, Badges, etc.)
     ========================================================================== */
  /* General Button Styles */
  .cta-button {
    display: inline-block;
    background-color: var(--highlight-color);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-size: 1.1rem;
    position: relative;
    z-index: 10;
  }
  .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(233, 69, 96, 0.4);
  }
  
  .regularbutton {
    display: inline-block;
    padding: 10px 30px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
  }
  .regularbutton--primary {
    background-color: var(--highlight-color);
    color: white;
  }
  .regularbutton--secondary {
    background-color: transparent;
    color: var(--cta-color);
    border: 2px solid var(--cta-color);
  }
  .regularbutton:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  }
  .regularbutton--primary:hover {
    background-color: var(--cta-color);
    color: var(--highlight-color);
  }
  .regularbutton--secondary:hover {
    background-color: var(--cta-color);
    color: var(--accent-color);
  }
  
  /* Badge Styles */
  .badge {
    background-color: var(--accent-color);
    padding: 6px 12px;
    border-radius: 18px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
  }
  .badge.featured, .badge.canada {
    background-color: var(--highlight-color);
    font-weight: bold;
    font-size: 1.3rem;
  }
  .badge.featured {
    margin-bottom: 2.4rem;
  }
  .badge.wifi {
    background-color: var(--accent-color);
    font-weight: bold;
    font-size: 1.3rem;
  }
  
  .verified-badge {
    display: inline-flex;
    align-items: center;
    background-color: rgba(0, 183, 106, 0.15);
    color: #00b76a;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-left: 10px;
    position: relative;
    top: -1px;
  }
  .verified-badge i {
    margin-right: 5px;
    font-size: 0.9rem;
  }
  
  /* Star Rating */
  .star-rating {
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 1.2rem;
  }
  .star-rating .fas.fa-star-half-alt {
    position: relative;
    margin-right: 0.25rem;
  }
  
  /* ==========================================================================
     3. Layout & Main UI (Promo, Header, Footer)
     ========================================================================== */
  
  /* HTML Update for top-bar-content:
Replace the existing top-bar-content div with:

<div class="top-bar-content">
  <div class="top-bar-left">
    <div class="proudly-canadian">
      <i class="fa-brands fa-canadian-maple-leaf"></i>
      Proudly Canadian
    </div>
    <a href="#" class="top-bar-link">Contact</a>
    <a href="#" class="top-bar-link">About</a>
  </div>
  <div class="language-toggle">
    <div class="lang-option active" data-lang="en">EN</div>
    <div class="lang-option" data-lang="fr">FR</div>
  </div>
</div>
*/

/* Top Bar - Make smaller and improve hierarchy */
.top-bar {
  background-color: rgba(15, 52, 96, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(233, 69, 96, 0.1);
  padding: 6px 0; /* Reduced from 8px */
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  transition: all 0.3s ease;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 25px;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 20px; /* Reduced from 24px */
}

.top-bar-link {
  color: var(--text-color);
  text-decoration: none;
  font-size: 0.7rem; /* Reduced from 0.75rem */
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.8;
  transition: all 0.3s ease;
  padding: 3px 6px; /* Reduced from 4px 8px */
  border-radius: 4px;
}

.top-bar-link:hover {
  opacity: 1;
  color: var(--highlight-color);
  background-color: rgba(255, 255, 255, 0.05);
}

/* Add Proudly Canadian styling */
.proudly-canadian {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-color);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.9;
  background-color: rgba(233, 69, 96, 0.15);
  padding: 3px 8px;
  border-radius: 12px;
  border: 1px solid rgba(233, 69, 96, 0.3);
}

.proudly-canadian i {
  color: var(--highlight-color);
  font-size: 0.8rem;
}

.language-toggle {
  display: flex;
  align-items: center;
  gap: 6px; /* Reduced from 8px */
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px; /* Reduced from 20px */
  padding: 3px; /* Reduced from 4px */
  transition: all 0.3s ease;
}

.language-toggle:hover {
  border-color: rgba(233, 69, 96, 0.3);
  background-color: rgba(233, 69, 96, 0.05);
}

.lang-option {
  padding: 3px 10px; /* Reduced from 4px 12px */
  border-radius: 13px; /* Reduced from 16px */
  font-size: 0.65rem; /* Reduced from 0.7rem */
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--text-color);
  opacity: 0.6;
}

.lang-option.active {
  background-color: var(--highlight-color);
  color: white;
  opacity: 1;
  box-shadow: 0 2px 8px rgba(233, 69, 96, 0.3);
}

.lang-option:not(.active):hover {
  opacity: 0.9;
  background-color: rgba(255, 255, 255, 0.08);
}
  
  /* Header & Navigation */
  header {
    padding: 12px 0;
    position: fixed;
    width: 100%;
    z-index: 1000;
    background-color: rgba(26, 26, 46, 0.98);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(233, 69, 96, 0.2);
    top: 38px;
    transition: all 0.3s ease;
  }

  header.scrolled {
    padding: 8px 0;
    background-color: rgba(26, 26, 46, 1);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.4);
  }
  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .logo-container {
    display: flex;
    align-items: center;
  }
  .logo-text {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--text-color);
  }
  .icon {
    width: 40px;
    height: 40px;
    margin-right: 10px;
  }
  .icon-text {
    margin-right: 0.6rem;
  }
  .logo-hero {
    width: 150px;
    height: 150px;
  }
  
  /* Desktop Navigation Links */
  .nav-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    margin-left: auto;
  }
  .nav-item {
    position: relative;
  }
  .nav-link {
    color: var(--text-color);
    text-decoration: none;
    padding: 10px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
  }
  .nav-link:hover {
    color: var(--highlight-color);
    background-color: rgba(255, 255, 255, 0.08);
    transform: translateY(-1px);
  }
  .nav-link.has-dropdown::after {
    content: '\f0d7';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-left: 6px;
    font-size: 0.7rem;
    transition: transform 0.3s ease;
  }
  .nav-item:hover .nav-link.has-dropdown::after {
    transform: rotate(180deg);
  }
  
  /* Nav Dropdowns */
  .dropdown {
    position: absolute;
    top: 100%;
    left: 0; /* Changed from left: 50% */
    transform: translateY(-10px); /* Removed translateX(-50%) */
    background-color: rgba(22, 33, 62, 0.98);
    backdrop-filter: blur(12px);
    border-radius: 12px;
    padding: 12px 0;
    min-width: 220px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(233, 69, 96, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1001;
  }
  
  .nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(5%); /* Removed translateX(-50%) */
  }
  .dropdown-item {
    display: block;
    color: var(--text-color);
    text-decoration: none;
    padding: 10px 20px;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
  }
  .dropdown-item:hover {
    background-color: rgba(233, 69, 96, 0.1);
    color: var(--highlight-color);
    border-left-color: var(--highlight-color);
    padding-left: 24px;
  }
  .dropdown-item i {
    margin-right: 10px;
    width: 16px;
    text-align: center;
    color: var(--highlight-color);
    opacity: 0.8;
  }
  
  /* Nav CTA Buttons */
  .login-btn {
    border: 1px solid rgba(255, 255, 255, 0.3);
    background-color: rgba(255, 255, 255, 0.05);
  }
  .login-btn:hover {
    border-color: var(--highlight-color);
    background-color: rgba(233, 69, 96, 0.1);
  }
  .primary-cta {
    background-color: var(--highlight-color);
    color: white !important;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(233, 69, 96, 0.3);
    margin-left: 8px;
  }
  .primary-cta:hover {
    background-color: #ff5a7c;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(233, 69, 96, 0.4);
  }
  
  /* Mobile Navigation */
  .mobile-menu-toggle {
    display: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.1);
    position: relative;           /* ADD THIS LINE */
    z-index: 1002;               /* ADD THIS LINE */
  }
  .mobile-menu-toggle:hover {
    background-color: rgba(255, 255, 255, 0.2);
  }
  /* Mobile Menu Toggle Enhanced */
.mobile-menu-toggle i {
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active i {
  transform: rotate(90deg);
}

/* New Mobile Menu Styles */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  overflow-y: auto;
  padding-top: 80px;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-content {
  padding: 20px;
  max-width: 400px;
  margin: 0 auto;
}

.mobile-nav-item {
  margin-bottom: 12px;
  border-radius: 16px;
  background: rgba(15, 52, 96, 0.3);
  border: 1px solid rgba(233, 69, 96, 0.2);
  overflow: hidden;
  transition: all 0.3s ease;
}

.mobile-nav-item:hover {
  background: rgba(15, 52, 96, 0.5);
  border-color: rgba(233, 69, 96, 0.4);
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  color: var(--text-color);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  position: relative;
}

.mobile-nav-link:hover {
  color: var(--highlight-color);
  background: rgba(233, 69, 96, 0.1);
}

.mobile-nav-link i {
  margin-right: 12px;
  font-size: 1.2rem;
  color: var(--highlight-color);
}

.mobile-nav-link.has-dropdown::after {
  content: '\f0d7';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.9rem;
  transition: transform 0.3s ease;
  color: var(--highlight-color);
}

.mobile-nav-link.has-dropdown.open::after {
  transform: rotate(180deg);
}

/* Mobile Dropdown */
.mobile-dropdown {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  background: rgba(22, 33, 62, 0.8);
  border-top: 1px solid rgba(233, 69, 96, 0.2);
}

.mobile-dropdown.open {
  max-height: 400px;
  padding: 12px 0;
}

.mobile-dropdown-item {
  display: block;
  padding: 16px 32px;
  color: var(--text-color);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
  position: relative;
}

.mobile-dropdown-item:hover {
  background-color: rgba(233, 69, 96, 0.1);
  color: var(--highlight-color);
  border-left-color: var(--highlight-color);
  padding-left: 36px;
}

.mobile-dropdown-item i {
  margin-right: 12px;
  width: 16px;
  text-align: center;
  color: var(--highlight-color);
  opacity: 0.8;
  font-size: 1rem;
}

/* Mobile CTA Section */
.mobile-cta-section {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(233, 69, 96, 0.2);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-login-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 24px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--text-color);
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.mobile-login-btn:hover {
  border-color: var(--highlight-color);
  background-color: rgba(233, 69, 96, 0.1);
  color: var(--highlight-color);
}

.mobile-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 24px;
  background: linear-gradient(135deg, var(--highlight-color) 0%, #ff5a7c 100%);
  color: white !important;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 20px rgba(233, 69, 96, 0.3);
  transition: all 0.3s ease;
}

.mobile-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(233, 69, 96, 0.5);
}

.mobile-cta-btn i {
  font-size: 1.2rem;
}

/* Enhanced Mobile Menu Close */
.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(233, 69, 96, 0.2);
  border: 2px solid rgba(233, 69, 96, 0.4);
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--highlight-color);
  z-index: 1002;
}

.mobile-menu-close:hover {
  background-color: var(--highlight-color);
  color: white;
  transform: rotate(90deg);
}

/* Mobile Responsive Updates */
@media (max-width: 480px) {
  .mobile-menu-content {
    padding: 15px;
  }

  .mobile-nav-link {
    padding: 16px;
    font-size: 1rem;
  }

  .mobile-dropdown-item {
    padding: 14px 24px;
    font-size: 0.9rem;
  }

  .mobile-cta-section {
    margin-top: 24px;
    padding-top: 24px;
  }

  .mobile-login-btn, .mobile-cta-btn {
    padding: 14px 20px;
    font-size: 0.95rem;
  }
}
  
  /* Footer */
  footer {
    background-color: var(--secondary-color);
    text-align: center;
    padding: 24px 0;
  }
  .footer-grid {
    font-size: 0.8rem;
  }
  
  /* ==========================================================================
     4. Page Sections
     ========================================================================== */
  /* Hero Section */
  .hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin-top: 40px; /* Changed from 128px to 80px (top-bar + header) */
    transition: margin-top 0.3s ease;
  }
  .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('bg.png?v=1') no-repeat center center;
    background-size: cover;
    filter: brightness(0.5);
    z-index: -1;
  }
  .hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .hero-content {
    flex: 1;
  }
  .hero h1 {
    font-size: 3rem;
    margin-top: 25px;
    margin-bottom: 25px;
    line-height: 0.6;
  }
  .hero p {
    font-size: 1.4rem;
    margin-bottom: 35px;
  }
  .hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
  }
  .hero-image img {
    max-width: 100%;
    height: auto;
    transform: scale(0.9);
  }
  .badges-top {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 1rem;
  }
  .badge-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 25px;
  }
  .hero-mobile-cta {
    display: none;
    margin-top: 2rem;
  }
  
  /* Features Section */
  .features {
    padding: 120px 0;
    background-color: var(--secondary-color);
    position: relative;
  }
  .features::before, .pricing::before, .faq::before, .testimonials::before, .use-cases::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 0;
    right: 0;
    height: 120px;
    --mask:
      radial-gradient(108.17px at 50% 150px, #000 99%, #0000 101%) calc(50% - 120px) 0/240px 100%,
      radial-gradient(108.17px at 50% -90px, #0000 99%, #000 101%) 50% 60px/240px 100% repeat-x;
    -webkit-mask: var(--mask);
            mask: var(--mask);
  }
  .pricing::before { background-color: var(--secondary-color); }
  .features::before { background-color: var(--secondary-color); }
  .faq::before { background-color: var(--primary-color); }
  .testimonials::before { background-color: var(--primary-color); }
  .use-cases::before { background-color: var(--secondary-color); }
  
  .feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    margin-bottom: 70px;
  }
  
  .feature-card {
    background-color: var(--accent-color);
    border-radius: 24px;
    padding: 36px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    grid-column: span 1;
    min-height: 280px;
    display: flex;
    flex-direction: column;
  }
  .product-image-card {
    grid-column: span 2;
    background: linear-gradient(135deg, rgba(15, 52, 96, 0.4) 0%, rgba(233, 69, 96, 0.15) 100%);
    border: 2px solid rgba(233, 69, 96, 0.3);
    border-radius: 24px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 280px;
    aspect-ratio: 16/9;
  }
  
  .product-image-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(233, 69, 96, 0.3);
  }
  
  .product-image-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(233, 69, 96, 0.08) 0%, transparent 70%);
    transform: rotate(45deg);
    z-index: 0;
  }
  
  .product-image-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    border-radius: 16px;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3));
    max-height: 240px;
  }
  
  .product-image-card:hover img {
    transform: scale(1.05);
  }
  .feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(233, 69, 96, 0.1) 0%, rgba(233, 69, 96, 0) 70%);
    transform: rotate(45deg);
    z-index: 0;
  }
  .feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 24px 36px rgba(0, 0, 0, 0.2);
  }
  .feature-icon {
    font-size: 3.5rem;
    color: var(--highlight-color);
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
  }
  .feature-card h3 {
    font-size: 1.7rem;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
    line-height: 1.1;
  }
  .feature-card p {
    font-size: 0.9rem;
  }
  .feature-highlight {
    display: flex;
    gap: 48px;
    margin-top: 70px;
  }
  .feature-highlight-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 48px;
  }
  .feature-card.large {
    text-align: left;
    padding: 2rem;
  }
  .feature-card.large .feature-icon {
    font-size: 4.5rem;
    margin-bottom: 36px;
  }
  .feature-card.large h3 {
    font-size: 2.2rem;
    margin-bottom: 24px;
  }
  .feature-card.large p {
    font-size: 0.9rem;
    line-height: 1.7;
  }
  .dashboard-preview {
    flex: 1;
    background-color: var(--accent-color);
    border-radius: 24px;
    padding: 36px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .dashboard-image {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
    margin-bottom: 24px;
  }
  .dashboard-preview p {
    font-size: 1.2rem;
    color: var(--text-color);
  }
  

  /* How It Works Section */
.how-it-works {
  padding: 120px 0;
  background-color: var(--primary-color);
  position: relative;
}

.how-it-works-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 60px;
}

.product-showcase {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

.section-title-left {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 40px;
  color: white;
}

.section-icon-left {
  text-align: center;
  margin-bottom: 24px;
}

.product-image-container {
  position: relative;
  width: 100%;
  max-width: 500px;
  background: linear-gradient(135deg, rgba(15, 52, 96, 0.3) 0%, rgba(233, 69, 96, 0.1) 100%);
  border-radius: 32px;
  border: 2px solid rgba(233, 69, 96, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden; /* This ensures the image doesn't go outside the rounded corners */
}

.product-image-container:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(233, 69, 96, 0.3);
}

.product-image-container::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(233, 69, 96, 0.05) 0%, transparent 70%);
  transform: rotate(45deg);
  z-index: 0;
}

.product-image {
  width: 100%;
  height: auto;
  border-radius: 30px; /* Match the container's border radius */
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
  display: block; /* Removes any default spacing */
}

.product-image:hover {
  transform: scale(1.02);
}

.steps-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 32px;
  background: linear-gradient(135deg, var(--secondary-color) 0%, rgba(15, 52, 96, 0.8) 100%);
  border-radius: 20px;
  border: 1px solid rgba(233, 69, 96, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.step-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--highlight-color);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.step-item:hover {
  transform: translateX(8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  border-color: rgba(233, 69, 96, 0.4);
}

.step-item:hover::before {
  transform: scaleY(1);
}

.step-number-container {
  flex-shrink: 0;
  position: relative;
}

.step-number {
  background: linear-gradient(135deg, var(--highlight-color) 0%, #ff5a7c 100%);
  color: white;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: bold;
  box-shadow: 0 4px 12px rgba(233, 69, 96, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-item:hover .step-number {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(233, 69, 96, 0.4);
}

.step-content {
  flex: 1;
}

.step-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.step-icon {
  font-size: 1.8rem;
  color: var(--highlight-color);
  transition: transform 0.3s ease;
}

.step-item:hover .step-icon {
  transform: scale(1.1);
}

.step-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-color);
  margin: 0;
}

.step-description {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-color);
  opacity: 0.9;
  margin: 0;
}
  
  /* Use Cases Section */
  .use-cases {
    padding: 100px 0;
    background-color: var(--secondary-color);
    position: relative;
    overflow: hidden;
  }
  .use-cases .section-title {
    margin-bottom: 20px;
  }
  .use-cases-carousel-wrapper {
    width: 100%;
    overflow: hidden;
    margin-bottom: 20px;
  }
  .use-cases-carousel {
    display: flex;
    gap: 24px;
    padding: 20px 0;
    transition: transform 0.5s ease-in-out;
  }
  .use-case-card {
    flex: 0 0 calc(33.333% - 16px);
    max-width: calc(33.333% - 16px);
    min-width: 280px;
    background-color: var(--accent-color);
    border-radius: 24px;
    padding: 30px 25px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    height: auto;
  }
  .use-case-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 32px rgba(0,0,0,0.2);
  }
  .use-case-icon {
    font-size: 2.5rem;
    color: var(--highlight-color);
    margin-bottom: 20px;
    background-color: rgba(233, 69, 96, 0.1);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .use-case-card h3 {
    font-size: 1.4rem;
    color: var(--text-color);
    margin-bottom: 15px;
    line-height: 1.3;
  }
  .use-case-card p {
    font-size: 0.95rem;
    color: var(--text-color);
    opacity: 0.85;
    flex-grow: 1;
  }
  .carousel-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    gap: 20px;
  }
  .carousel-navigation button {
    background-color: var(--highlight-color);
    color: white;
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .carousel-navigation button:hover {
    background-color: #ff5a7c;
    transform: scale(1.1);
  }
  .carousel-navigation button:disabled {
    background-color: var(--accent-color);
    opacity: 0.5;
    cursor: not-allowed;
    transform: scale(1);
  }
  .carousel-dots {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    gap: 6px;
  }
  .carousel-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--accent-color);
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
  }
  .carousel-dots .dot:hover {
    transform: scale(1.2);
  }
  .carousel-dots .dot.active {
    background-color: var(--highlight-color);
    transform: scale(1.2);
  }
  
  /* Pricing Section */
  .pricing {
    padding: 120px 0;
    background-color: var(--secondary-color);
    position: relative;
  }
  .pricing-container {
    max-width: 1000px;
    margin: 0 auto;
  }
  .plan-toggle-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
    gap: 20px;
  }
  .plan-toggle {
    position: relative;
    display: flex;
    background: rgba(15,52,96,0.4);
    border-radius: 50px;
    padding: 6px;
    border: 2px solid rgba(233,69,96,0.3);
  }
  .toggle-option {
    padding: 12px 24px;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-color);
    opacity: 0.7;
    z-index: 2;
    position: relative;
    overflow: visible;
  }
  .toggle-option.active {
    opacity: 1;
    color: #fff;
  }
  .toggle-slider {
    position: absolute;
    top: 6px;
    left: 6px;
    width: calc(50% - 6px);
    height: calc(100% - 12px);
    background: var(--highlight-color);
    border-radius: 40px;
    transition: transform 0.3s ease;
    z-index: 1;
  }
  .toggle-slider.three-year {
    transform: translateX(100%);
  }
  .plan-savings-indicator {
    position: absolute;
    top: -10px;
    right: -20px;
    background: var(--highlight-color);
    color: white;
    padding: 4px 8px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    transform-origin: center center;
    transition: all 0.3s ease-in-out;
    animation: gentleWiggle 1.5s infinite ease-in-out;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    z-index: 3;
  }
  .plan-savings-indicator.activated {
    animation: none;
    transform: rotate(0deg) scale(1.05);
    font-size: 0.8rem;
    padding: 5px 10px;
    border: 1px solid white;
    top: -10px;
    right: -20px;
  }
  .pricing-card {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color) 0%, rgba(15,52,96,0.8) 100%);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border: 2px solid rgba(233,69,96,0.3);
  }
  .pricing-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(233,69,96,0.1) 0%, transparent 70%);
    transform: rotate(45deg);
    z-index: 0;
  }
  .pricing-content {
    position: relative;
    z-index: 1;
  }
  .pricing-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
  }
  .product-section {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .product-carousel {
    position: relative;
    width: 100%;
    max-width: 400px;
  }
  .carousel-container {
    border-radius: 16px;
    background: rgba(15,52,96,0.2);
    padding: 20px;
  }
  .carousel-viewport {
    overflow: hidden;
    width: 100%;
    height: 300px;
  }
  .carousel-track {
    display: flex;
    transition: transform 0.4s ease-in-out;
    height: 100%;
  }
  .carousel-slide {
    flex: 0 0 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
  }
  .device-image {
    max-height: 100%;
    width: auto;
    border-radius: 12px;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
  }
  .device-image:hover {
    transform: scale(1.05);
  }
  .device-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--highlight-color);
    filter: blur(15px);
    opacity: 0.7;
    z-index: -1;
    border-radius: inherit;
  }
  .carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(233,69,96,0.9);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    z-index: 10;
    transition: all 0.3s ease;
  }
  .carousel-nav:hover {
    background: var(--highlight-color);
    transform: translateY(-50%) scale(1.1);
  }
  .carousel-nav.prev {
    left: 10px;
  }
  .carousel-nav.next {
    right: 10px;
  }
  .pricing-card .carousel-dots {
    margin-top: 10px;
  }
  .pricing-card .carousel-dots .dot {
    width: 6px;
    height: 6px;
    background: rgba(255,255,255,0.3);
  }
  .info-cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
    background-color: rgba(22, 33, 62, 0.6);
    border: 1px solid rgba(233, 69, 96, 0.2);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
  }
  .pricing-section {
    text-align: center;
    width: 100%;
  }
  .price-display {
    margin-bottom: 20px;
  }
  .price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--cta-color);
    margin: 0;
    line-height: 1;
  }
  .price .period {
    font-size: 1.2rem;
    color: var(--text-color);
    opacity: 0.8;
  }
  .price-label {
    font-size: 1rem;
    color: var(--text-color);
    opacity: 0.9;
    margin-top: 8px;
  }
  .device-price-container {
    background: linear-gradient(135deg, rgba(15,52,96,0.6), rgba(233,69,96,0.1));
    border: 2px solid rgba(233,69,96,0.3);
    border-radius: 16px;
    padding: 16px;
    margin: 20px 0;
  }
  .device-price-label {
    font-size: 0.8rem;
    color: var(--highlight-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
  }
  .device-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }
  .device-price-icon {
    color: var(--highlight-color);
  }
  .discount-badge {
    background: var(--highlight-color);
    color: #fff;
    padding: 0 12px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 0;
    opacity: 0;
    transform: scale(0.8) translateY(-10px);
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease, max-height 0.3s ease-out, margin-bottom 0.3s ease-out, padding-top 0.3s ease-out, padding-bottom 0.3s ease-out;
    padding-top: 0;
    padding-bottom: 0;
  }
  .discount-badge.visible {
    opacity: 1;
    transform: scale(1) translateY(0);
    max-height: 40px;
    margin-bottom: 15px;
    padding-top: 6px;
    padding-bottom: 6px;
  }
  .cta-section {
    text-align: center;
    width: 100%;
  }
  .cta-section .cta-button {
    background: var(--highlight-color);
    color: #fff;
    padding: 16px 32px;
    font-size: 1.1rem;
    box-shadow: 0 8px 20px rgba(233,69,96,0.3);
    margin-top: 0;
    margin-bottom: 20px;
  }
  .cta-section .cta-button:hover {
    background: #ff5a7c;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(233,69,96,0.5);
  }
  .guarantee-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
    opacity: 0.8;
  }
  .guarantee-text i {
    color: var(--highlight-color);
  }
  .features-section {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .feature-group {
    background: rgba(15,52,96,0.3);
    border-radius: 16px;
    padding: 24px;
  }
  .feature-group h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--highlight-color);
    font-size: 1.1rem;
    margin: 0 0 8px 0;
  }
  .feature-group-blurb {
    font-size: 0.85rem;
    color: var(--text-color);
    opacity: 0.75;
    margin: 0 0 16px 0;
    line-height: 1.4;
  }
  .feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 0.9rem;
  }
  .feature-list li i {
    color: var(--highlight-color);
    margin-right: 10px;
    width: 16px;
    text-align: center;
  }
  
  /* Fleet View Enhanced Section */
  .fleet-view-enhanced {
    background-color: var(--accent-color);
    border-radius: 24px;
    padding: 48px;
    margin-top: 70px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid var(--highlight-color);
  }
  .fleet-view-enhanced::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(233, 69, 96, 0.1) 0%, rgba(233, 69, 96, 0) 70%);
    transform: rotate(45deg);
    z-index: 0;
  }
  .fleet-view-enhanced:hover {
    transform: translateY(-12px);
    box-shadow: 0 24px 36px rgba(0, 0, 0, 0.2);
  }
  .fleet-view-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
  }
  .fleet-view-icon {
    font-size: 4rem;
    color: var(--highlight-color);
    margin-bottom: 24px;
    animation: pulse-light 3s infinite;
  }
  .superscript {
    font-size: 0.9rem;
  }
  .fleet-view-enhanced h3 {
    font-size: 2.5rem;
    margin-bottom: 24px;
    color: white;
    text-align: center;
  }
  .fleet-view-image-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin-bottom: 36px;
  }
  .fleet-view-image {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
  }
  .fleet-view-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--highlight-color);
    filter: blur(25px);
    opacity: 0.4;
    z-index: -1;
    border-radius: inherit;
  }
  .fleet-view-image:hover {
    transform: scale(1.02);
  }
  .fleet-view-enhanced p {
    font-size: 0.9rem;
    line-height: 1.7;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-color);
  }
  
  /* Coverage Map Section */
  .coverage-map {
    padding: 120px 0;
    background: url('coverage.jpg') no-repeat center center;
    background-size: cover;
    text-align: center;
    position: relative;
  }
  .coverage-map::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(26, 26, 46, 0.7);
  }
  .coverage-map .container {
    position: relative;
    z-index: 1;
  }
  .coverage-map h2 {
    margin-bottom: 24px;
    color: var(--cta-color);
    font-size: 2.8rem;
  }
  .coverage-map p {
    color: var(--cta-color);
    font-size: 1.4rem;
    margin-bottom: 36px;
  }
  
  /* Supported Networks Section */
  .supported-networks {
    padding: 120px 0;
    background-color: var(--primary-color);
    text-align: center;
    position: relative;
  }
  .supported-networks h2 {
    margin-bottom: 24px;
  }
  .supported-networks > .container > p {
    color: var(--text-color);
    font-size: 0.95rem;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  .country-selector {
    margin: 0 auto 40px;
    max-width: 400px;
  }
  .country-selector label {
    display: block;
    margin-bottom: 10px;
    color: var(--text-color);
    font-size: 1.1rem;
    text-align: left;
  }
  .custom-select {
    position: relative;
  }
  .custom-select select {
    appearance: none;
    -webkit-appearance: none;
    width: 100%;
    padding: 15px 20px;
    font-size: 1.1rem;
    background-color: var(--accent-color);
    color: var(--text-color);
    border: 2px solid var(--highlight-color);
    border-radius: 12px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
  }
  .custom-select select:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(233, 69, 96, 0.3);
  }
  .select-arrow {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--highlight-color);
  }
  .network-card {
    background-color: var(--primary-color);
    border-radius: 24px;
    padding: 40px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid rgba(233, 69, 96, 0.3);
  }
  .network-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  }
  .network-card-layout {
    display: flex;
    align-items: flex-start;
    gap: 40px;
  }
  .country-info {
    flex: 0 0 30%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-right: 30px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
  }
  .network-icon {
    font-size: 3rem;
    color: var(--highlight-color);
    margin-bottom: 20px;
  }
  .network-card h3 {
    font-size: 2rem;
    color: var(--text-color);
    margin-bottom: 15px;
  }
  .technologies {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
  }
  .tech-badge {
    background-color: var(--highlight-color);
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1rem;
  }
  .carriers-info {
    flex: 1;
  }
  .carriers-info h4 {
    margin-top: 0;
    margin-bottom: 20px;
    text-align: left;
    color: var(--highlight-color);
    font-size: 1.2rem;
  }
  .carrier-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: left;
  }
  .carrier-list li {
    margin-bottom: 10px;
    color: var(--text-color);
    font-size: 1rem;
    font-weight: 600;
    list-style-type: none;
    display: flex;
    align-items: center;
  }
  .carrier-list li::before {
    content: "•";
    color: var(--highlight-color);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-right: 0.5em;
  }
  .coverage-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--highlight-color);
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
  }
  .coverage-link:hover {
    background-color: white;
    color: var(--highlight-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(233, 69, 96, 0.3);
  }
  .additional-countries {
    background-color: var(--primary-color);
    border-radius: 24px;
    padding: 40px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(233, 69, 96, 0.3);
  }
  .additional-countries h3 {
    font-size: 2rem;
    color: var(--text-color);
    margin-bottom: 15px;
  }
  .additional-countries > p {
    color: var(--text-color);
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
  }
  .countries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: left;
  }
  .country-item h4 {
    color: var(--highlight-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
    text-align: left;
  }
  .country-item ul {
    padding-left: 20px;
    color: var(--text-color);
  }
  .country-item li {
    margin-bottom: 8px;
    font-size: 0.95rem;
  }
  .compatibility-note {
    margin-top: 40px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background-color: rgba(233, 69, 96, 0.1);
    padding: 20px;
    border-radius: 12px;
    text-align: left;
  }
  .compatibility-note i {
    color: var(--highlight-color);
    font-size: 1.5rem;
    margin-top: 3px;
  }
  .compatibility-note p {
    color: var(--text-color);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
  }
  
  /* Testimonials Section */
  .testimonials {
    padding: 120px 0;
    background-color: var(--primary-color);
    position: relative;
  }
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
  }
  .testimonial-card {
    background-color: var(--secondary-color);
    border-radius: 24px;
    padding: 48px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .testimonial-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 24px 36px rgba(0, 0, 0, 0.2);
  }
  .testimonial-content {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 24px;
    position: relative;
  }
  .testimonial-content::before {
    content: '"';
    font-size: 4rem;
    color: var(--highlight-color);
    position: absolute;
    top: -20px;
    left: -10px;
    opacity: 0.3;
  }
  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
  }
  .testimonial-author h4 {
    white-space: nowrap;
    color: var(--highlight-color);
    font-size: 1.2rem;
    margin-bottom: 4px;
  }
  .author-avatar {
    width: 60px !important;
    height: 60px !important;
    flex-shrink: 0;
    border-radius: 50% !important;
    background-color: var(--highlight-color) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    overflow: hidden;
  }
  .author-avatar i {
      color: var(--primary-color) !important;
  }
  .author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
  }
  .author-info p {
    color: var(--text-color);
    opacity: 0.8;
  }
  .scroll-indicator {
    display: none;
    text-align: center;
    color: var(--highlight-color);
    margin-top: 10px;
    font-size: 0.9rem;
    animation: pulse 1.5s infinite;
  }
  
  /* Photo Gallery */
  .photo-gallery-container {
    margin: 60px 0 2rem;
    text-align: center;
  }
  .photo-gallery {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 0 auto;
    max-width: 1100px;
    flex-wrap: wrap;
  }
  .photo-item {
    background-color: var(--accent-color);
    border-radius: 12px;
    width: 200px;
    height: 200px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    flex-shrink: 0;
  }
  .photo-item:hover {
    transform: translateY(-5px);
  }
  .photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  /* FAQ Section */
  .faq {
    padding: 120px 0;
    background-color: var(--primary-color);
    position: relative;
  }
  .faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 48px;
  }
  .faq-item {
    background-color: var(--secondary-color);
    border-radius: 24px;
    padding: 36px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .faq-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  }
  .faq-item h3 {
    margin-bottom: 18px;
    color: var(--highlight-color);
    display: flex;
    align-items: center;
    line-height: 1.2;
    font-size: 1.2rem;
  }
  .faq-item h3 i {
    margin-right: 16px;
    font-size: 1.6rem;
  }
  .faq-item p {
    font-size: 0.9rem;
    line-height: 1.7;
  }
  .faq-item a {
    color: white;
  }
  .question-container {
    background-color: var(--accent-color);
    border: 2px solid var(--highlight-color);
    border-radius: 24px;
    padding: 36px;
    text-align: center;
    margin: 48px 0;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
  }
  .question-container .question-icon {
    font-size: 2.5rem;
    color: var(--highlight-color);
    margin-bottom: 16px;
  }
  .question-container h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: var(--highlight-color);
  }
  .question-container p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-color);
  }
  .question-container a {
    color: var(--text-color);
  }
  
  /* Footnotes (Collapsible) */
  #footnotes {
    margin-top: 48px;
    border-radius: 24px;
    background-color: var(--accent-color);
    padding: 24px;
  }
  
  /* Feature CTA Section */
  .feature-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    margin-top: -50px;
    z-index: 1;
  }
  .feature-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('bg.png?v=1') no-repeat center center;
    background-size: cover;
    opacity: 0.05;
    z-index: -1;
  }
  .feature-cta__content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 10;
  }
  .feature-cta__icon-container {
    width: 120px;
    height: 120px;
    background: rgba(233, 69, 96, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    position: relative;
    animation: pulse 3s infinite;
  }
  .feature-cta__icon-container::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    border: 2px solid rgba(233, 69, 96, 0.3);
    animation: pulse 3s infinite 0.5s;
  }
  .feature-cta__icon {
    font-size: 4rem;
    color: var(--highlight-color);
  }
  .feature-cta__title {
    font-size: 2.3rem;
    color: var(--cta-color);
    margin-bottom: 20px;
  }
  .feature-cta__description {
    font-size: 0.95rem;
    color: var(--text-color);
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
  .feature-cta__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: var(--highlight-color);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(233, 69, 96, 0.3);
    position: relative;
    overflow: hidden;
  }
  .feature-cta__button:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(233, 69, 96, 0.5);
    background-color: #ff5a7c;
  }
  .feature-cta__button::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(45deg);
    z-index: 0;
    transition: all 0.6s ease;
  }
  .feature-cta__button:hover::after {
    transform: rotate(45deg) translate(10%, 10%);
  }
  .feature-cta__button span, .feature-cta__button i {
    position: relative;
    z-index: 1;
  }
  .feature-cta__benefits {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 30px;
  }
  .feature-cta__benefit {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-color);
  }
  .feature-cta__benefit i {
    color: var(--highlight-color);
    font-size: 1.2rem;
  }
  
  /* Final CTA Section */
  .cp-final-cta {
    background:
      linear-gradient(135deg, rgba(15, 52, 96, 0.85) 0%, rgba(26, 26, 46, 0.9) 100%),
      url('window-sticker.png') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    padding: 96px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .cp-final-cta__container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
  }
  .cp-final-cta__icon {
    font-size: 4.5rem;
    color: var(--highlight-color);
    margin-bottom: 36px;
    animation: good 2s infinite;
  }
  .cp-final-cta__title {
    font-size: 2.5rem;
    color: var(--cta-color);
    margin-bottom: 24px;
  }
  .cp-final-cta__description {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 36px;
    line-height: 1.7;
  }
  .cp-final-cta__buttons {
    display: flex;
    justify-content: center;
    gap: 24px;
  }
  .cp-final-cta__button {
    display: inline-block;
    padding: 18px 36px;
    border-radius: 60px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
  }
  .cp-final-cta__button--primary {
    background-color: var(--highlight-color);
    color: var(--primary-color);
  }
  .cp-final-cta__button--secondary {
    background-color: transparent;
    color: var(--cta-color);
    border: 2px solid var(--cta-color);
  }
  .cp-final-cta__button:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  }
  .cp-final-cta__button--primary:hover {
    background-color: var(--cta-color);
    color: var(--highlight-color);
  }
  .cp-final-cta__button--secondary:hover {
    background-color: var(--cta-color);
    color: var(--accent-color);
  }
  
  
  /* ==========================================================================
     5. Widgets (Chat, Exit Popup)
     ========================================================================== */
  /* Chat Widget */
  .mobile-chat-button {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--highlight-color);
    color: white;
    border: 2px solid white;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    cursor: pointer;
    transition: transform 0.3s ease;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
  }
  .mobile-chat-button:hover {
    transform: scale(1.1);
  }
  .mobile-chat-button .status-dot {
    position: absolute;
    top: 0;
    right: 0;
    width: 12px;
    height: 12px;
    background: #4CAF50;
    border-radius: 50%;
    border: 2px solid white;
  }
  .chat-widget {
    position: fixed;
    bottom: 0px;
    right: 20px;
    width: 360px;
    background: transparent;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    border: 2px solid white;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 460px;
    transform: translateY(400px);
    transition: transform 0.3s ease;
  }
  .chat-widget.open {
    background: #fff;
    transform: translateY(0);
  }
  .chat-header {
    background: var(--primary-color);
    color: white;
    padding: 15px 20px;
    cursor: pointer;
    user-select: none;
    min-height: 60px;
    display: flex;
    align-items: center;
  }
  .chat-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
  .chat-status {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    font-size: 1.1rem;
  }
  .chat-status i {
    font-size: 1.2rem;
    color: var(--highlight-color);
  }
  .online-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85em;
    opacity: 0.8;
  }
  .status-dot {
    width: 8px;
    height: 8px;
    background: #4CAF50;
    border-radius: 50%;
    animation: pulse 2s infinite;
  }
  .chat-body {
    height: 400px;
    display: flex;
    flex-direction: column;
    background: #fff;
  }
  .chat-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
  }
  .message {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
  }
  .message.user {
    align-items: flex-end;
  }
  .message.support .message-content {
    background: var(--primary-color);
    color: white;
  }
  .message.system {
    align-items: center;
    opacity: 0.8;
  }
  .message.system .message-content {
    background: var(--accent-color);
    color: white;
    font-style: italic;
  }
  .message-content {
    max-width: 80%;
    padding: 10px 15px;
    border-radius: 15px;
    background: #f0f0f0;
    color: #333;
    font-size: 0.95em;
  }
  .message.user .message-content {
    background: var(--highlight-color);
    color: white;
  }
  .message-time {
    font-size: 0.75em;
    color: #666;
    margin-top: 5px;
  }
  .chat-input {
    padding: 15px;
    border-top: 1px solid #eee;
    display: flex;
    gap: 10px;
    background: white;
  }
  .chat-input textarea {
    flex: 1;
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 8px 15px;
    resize: none;
    font-family: inherit;
    font-size: 0.95em;
    outline: none;
  }
  .chat-input button {
    background: var(--highlight-color);
    color: white;
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    cursor: pointer;
    transition: transform 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .chat-input button:hover {
    transform: scale(1.1);
  }
  .chat-loader {
    display: flex;
    justify-content: center;
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.05);
  }
  .loader-dots {
    display: flex;
    gap: 0.5rem;
    padding: 0.5rem;
  }
  .loader-dots div {
    width: 8px;
    height: 8px;
    background: var(--highlight-color);
    border-radius: 50%;
    animation: bounce 1.4s infinite ease-in-out both;
  }
  .loader-dots div:nth-child(1) { animation-delay: -0.32s; }
  .loader-dots div:nth-child(2) { animation-delay: -0.16s; }
  .loader-dots div:nth-child(3) { animation-delay: 0s; }
  
  /* Exit-Intent Popup */
  .exit-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 10, 20, 0.85);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .exit-popup.show {
    display: flex;
    opacity: 1;
  }
  .exit-popup-content {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    max-width: 800px;
    width: 90%;
    padding: 3rem;
    border-radius: 24px;
    position: relative;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 2px solid var(--highlight-color);
    animation: popup-in 0.5s forwards;
    max-height: 90vh;
    overflow-y: auto;
  }
  .exit-popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .exit-popup-close:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
  }
  .exit-popup-icon {
    width: 80px;
    height: 80px;
    background: rgba(233, 69, 96, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
  }
  .exit-popup-icon i {
    font-size: 2.5rem;
    color: var(--highlight-color);
  }
  .exit-popup h2 {
    font-size: 2.2rem;
    color: var(--text-color);
    margin-bottom: 10px;
  }
  .exit-popup p {
    font-size: 1.2rem;
    color: var(--text-color);
    opacity: 0.9;
    margin-bottom: 30px;
  }
  .exit-popup-options {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
  }
  .option {
    flex: 1;
    background-color: rgba(15, 52, 96, 0.4);
    padding: 30px;
    border-radius: 16px;
    transition: transform 0.3s ease;
  }
  .option:hover {
    transform: translateY(-5px);
  }
  .option-icon {
    width: 60px;
    height: 60px;
    background: rgba(233, 69, 96, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
  }
  .option-icon i {
    font-size: 1.8rem;
    color: var(--highlight-color);
  }
  .option h3 {
    font-size: 1.5rem;
    color: var(--highlight-color);
    margin-bottom: 15px;
  }
  .option p {
    font-size: 1rem;
    margin-bottom: 20px;
    min-height: 60px;
  }
  .option-divider {
    display: flex;
    align-items: center;
    color: var(--text-color);
    font-weight: bold;
    position: relative;
  }
  .exit-popup-button {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
    cursor: pointer;
    border: none;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
  }
  .exit-popup-button.primary {
    background-color: var(--highlight-color);
    color: white;
  }
  .exit-popup-button.primary:hover {
    background-color: #ff5a7c;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(233, 69, 96, 0.4);
  }
  .exit-popup-button.secondary {
    background-color: transparent;
    color: var(--text-color);
    border: 2px solid var(--highlight-color);
    box-sizing: border-box;
  }
  .exit-popup-button.secondary:hover {
    background-color: var(--highlight-color);
    color: white;
    transform: translateY(-3px);
  }
  .remind-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
  }
  .remind-form input {
    padding: 12px 20px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-color);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
  }
  .remind-form input:focus {
    outline: none;
    border-color: var(--highlight-color);
  }
  .remind-form input.error {
    border-color: #ff4136;
  }
  .remind-form .error-message {
    color: #ff4136;
    font-size: 0.85rem;
    margin-top: -5px;
    padding: 0 20px;
    display: none;
  }
  .remind-form.show-error .error-message {
    display: block;
  }
  .remind-form button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
  }
  .remind-form .spinner {
    animation: spin 1s infinite linear;
  }
  .exit-popup-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: rgba(15, 52, 96, 0.3);
    padding: 15px;
    border-radius: 12px;
    margin-top: 20px;
  }
  .exit-popup-note i {
    color: var(--highlight-color);
  }
  .exit-popup-note p {
    margin: 0;
    font-size: 0.9rem;
  }
  .success-message {
    display: none;
    text-align: center;
    padding: 20px;
    animation: fade-in 0.5s forwards;
  }
  .success-message .success-icon {
    font-size: 3rem;
    color: #4CAF50;
    margin-bottom: 20px;
  }
  .success-message h3 {
    color: var(--text-color);
    margin-bottom: 10px;
  }
  .success-message p {
    color: var(--text-color);
    opacity: 0.8;
  }
  
  /* ==========================================================================
     6. Animations & Keyframes
     ========================================================================== */
  @keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }
  @keyframes good {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
  }
  @keyframes pulse-light {
    0% { opacity: 0.8; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
    100% { opacity: 0.8; transform: scale(1); }
  }
  @keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(76, 175, 80, 0); }
    100% { box-shadow: 0 0 0 0 rgba(76, 175, 80, 0); }
  }
  @keyframes bounce {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1.0); }
  }
  @keyframes popup-in {
    0% { transform: scale(0.9); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
  }
  @keyframes fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  @keyframes gentleWiggle {
    0% { transform: rotate(-6deg) scale(1); }
    50% { transform: rotate(6deg) scale(1.08); }
    100% { transform: rotate(-6deg) scale(1); }
  }

  /* ==========================================================================
   TABBED FEATURES INTERFACE - ADD THIS SECTION
   ========================================================================== */

.tabbed-features {
  background: linear-gradient(135deg, var(--secondary-color) 0%, rgba(15, 52, 96, 0.8) 100%);
  border-radius: 32px;
  padding: 48px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(233, 69, 96, 0.3);
  position: relative;
  overflow: hidden;
  margin-bottom: 70px;
}

.tabbed-features::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(233, 69, 96, 0.08) 0%, transparent 70%);
  transform: rotate(45deg);
  z-index: -1;
  pointer-events: none;
}

.tabbed-content {
  position: relative;
  z-index: 2;
}

/* Tab Navigation */
.tab-navigation {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
  background: rgba(15, 52, 96, 0.4);
  border-radius: 20px;
  padding: 8px;
  border: 1px solid rgba(233, 69, 96, 0.2);
}

.tab-button {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 16px;
  border: none;
  background: transparent;
  color: var(--text-color);
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  opacity: 0.6;
  position: relative;
  overflow: hidden;
}

.tab-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(233, 69, 96, 0.1) 0%, rgba(233, 69, 96, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: inherit;
}

.tab-button:hover::before {
  opacity: 1;
}

.tab-button.active {
  background: linear-gradient(135deg, var(--highlight-color) 0%, #ff5a7c 100%);
  color: white;
  opacity: 1;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(233, 69, 96, 0.4);
}

.tab-button:hover:not(.active) {
  opacity: 0.8;
  transform: translateY(-1px);
}

.tab-icon {
  font-size: 2rem;
  margin-bottom: 4px;
  transition: transform 0.3s ease;
}

.tab-button.active .tab-icon {
  transform: scale(1.1);
}

.tab-label {
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
  text-align: center;
  line-height: 1.2;
}

/* Tab Content */
.tab-content {
  display: none;
  animation: fadeIn 0.5s ease-in-out;
}

.tab-content.active {
  display: block;
}

.content-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.content-text {
  padding: 32px;
}

.content-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--highlight-color);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.content-title i {
  font-size: 2.5rem;
}

.content-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-color);
  margin-bottom: 24px;
  opacity: 0.9;
}

.content-features {
  list-style: none;
  padding: 0;
}

.content-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 1rem;
  color: var(--text-color);
  opacity: 0.8;
}

.content-features li i {
  color: var(--highlight-color);
  font-size: 1.2rem;
  width: 20px;
  text-align: center;
}

.content-image {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.feature-image-container {
  position: relative;
  width: 100%;
  max-width: 500px;
  background: linear-gradient(135deg, rgba(15, 52, 96, 0.3) 0%, rgba(233, 69, 96, 0.1) 100%);
  border-radius: 32px;
  border: 2px solid rgba(233, 69, 96, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.feature-image-container:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(233, 69, 96, 0.3);
}

.feature-image-container::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(233, 69, 96, 0.05) 0%, transparent 70%);
  transform: rotate(45deg);
  z-index: -1;
  pointer-events: none;
}

.feature-image {
  width: 100%;
  height: auto;
  border-radius: 30px;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
  display: block;
}

.feature-image-container:hover .feature-image {
  transform: scale(1.02);
}


/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design for Tabbed Features */
@media (max-width: 900px) {
  
  .tabbed-features {
    padding: 32px 24px;
  }

  /* Keep tabs horizontal but symbols-only on mobile */
  .tab-navigation {
    flex-direction: row; /* Changed from column */
    gap: 4px; /* Reduced gap */
    padding: 8px; /* Reduced padding */
    justify-content: space-between;
  }

  .tab-button {
    flex: 1;
    flex-direction: column; /* Keep icon above text */
    justify-content: center;
    align-items: center;
    padding: 12px 8px; /* Reduced padding */
    gap: 4px; /* Reduced gap */
    min-height: 60px; /* Ensure consistent height */
  }

  .tab-icon {
    font-size: 1.4rem; /* Slightly smaller icon */
    margin-bottom: 0;
  }

  .tab-label {
    font-size: 0.7rem; /* Smaller text */
    line-height: 1.1;
    text-align: center;
    display: none; /* Hide labels on very small screens */
  }

  .content-layout {
    grid-template-columns: 1fr;
    gap: 24px; /* Reduced gap */
  }

  /* Image comes AFTER content on mobile */
  .content-image {
    order: 1; /* Changed from -1 to 1 */
  }

  .content-text {
    order: 0; /* Ensure text comes first */
    padding: 16px;
    text-align: left; /* Changed from center to left for better readability */
  }

  .content-title {
    font-size: 1.6rem; /* Slightly smaller */
    justify-content: flex-start; /* Left align instead of center */
    text-align: left;
  }

  .content-title i {
    font-size: 1.8rem; /* Smaller icon */
  }

  .content-description {
    font-size: 0.95rem; /* Slightly smaller */
    text-align: left;
  }

  .content-features {
    text-align: left;
    display: block; /* Changed from inline-block */
    margin-top: 16px;
  }

  .feature-image-container {
    max-width: unset;
  }
}

@media (max-width: 480px) {
  .tabbed-features {
    padding: 24px 16px;
  }

  .tab-navigation {
    padding: 6px; /* Further reduced padding */
    gap: 2px;
  }

  .tab-button {
    padding: 10px 4px; /* Further reduced padding */
    gap: 2px;
    min-height: 55px;
  }

  .tab-icon {
    font-size: 1.2rem; /* Even smaller icon for very small screens */
  }

  .tab-label {
    display: none;
  }

  .content-layout {
    gap: 20px;
  }

  .content-title {
    font-size: 1.4rem;
    gap: 8px;
  }

  .content-title i {
    font-size: 1.6rem;
  }

  .content-description {
    font-size: 0.9rem;
  }


  .content-features li {
    font-size: 0.9rem;
    margin-bottom: 10px;
  }
}

/* Extra small screens - symbols only */
@media (max-width: 380px) {
  .tab-label {
    display: none; /* Hide text labels completely on very small screens */
  }

  .tab-button {
    min-height: 50px;
    padding: 8px 4px;
  }

  .tab-icon {
    font-size: 1.4rem; /* Slightly larger since no text */
  }
}
  
  /* ==========================================================================
     7. Responsive Styles
     ========================================================================== */
  
  /* Large screens */
  @media screen and (max-width: 1750px) {
    .hero-content {
      transform: scale(0.8);
    }
  }
  
  @media screen and (max-width: 1180px) {
    .hero h1 {
      font-size: 2.3rem;
    }
    .badges-top {
      justify-content: space-between;
    }
  }
  
  /* Tablet and smaller desktops */
  @media (max-width: 1024px) {
    .nav-link {
      padding: 8px 10px;
      font-size: 0.9rem;
    }
    .primary-cta {
      padding: 8px 15px;
    }
    .feature-highlight {
      flex-direction: column;
    }
    .dashboard-preview {
      order: -1;
    }
    .steps-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 36px;
    }
    .step-card {
      padding: 28px;
    }
    .step-card h3 {
      font-size: 1.3rem;
    }
    .step-card p {
      font-size: 1rem;
    }
    .verified-badge {
      margin-left: 0px;
      margin-top: 0.25rem;
    }
    .use-case-card {
      flex: 0 0 calc(50% - 12px);
      max-width: calc(50% - 12px);
    }
    .pricing-main {
      grid-template-columns: 1fr;
      gap: 20px;
    }
    .features-section {
      grid-template-columns: 1fr;
      gap: 20px;
    }
    .info-cta-wrapper {
      margin-top: 40px;
    }
  }
  
  @media (max-width: 992px) {
    .countries-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  /* Mobile devices */
  @media (max-width: 900px) {
    html {
      font-size: 16px;
    }
    .section-title {
      font-size: 2.2rem;
    }
    /* Header & Nav */
    .nav-links {
      display: none;
    }
    .mobile-menu-toggle {
      display: flex;
    }
    .logo-hero {
      display: none;
    }
    .top-bar {
      padding: 6px 0;
    }
    .top-bar-content {
      padding: 0 15px;
    }
    .top-bar-left {
      gap: 16px;
    }
    .top-bar-link {
      font-size: 0.7rem;
      padding: 3px 6px;
    }
    .language-toggle {
      padding: 3px;
    }
    .lang-option {
      padding: 3px 8px;
      font-size: 0.65rem;
    }
  
    /* Promo Banner */
    .promo-banner {
      padding: 0.5rem 2rem 0.5rem 0.5rem;
    }
    .promo-banner-content {
      flex-direction: column;
      align-items: center;
      gap: 0.3rem;
      font-size: 0.8rem;
    }
    .promo-code {
      font-size: 1rem;
      padding: 0.2rem 0.5rem;
    }
    .close-banner {
      right: 0.5rem;
      width: 24px;
      height: 24px;
    }
  
    /* Hero */
    .hero {
      margin-top: 68px;
    }
    .hero h1 {
      font-size: 2rem;
    }
    .hero p {
      font-size: 1.1rem;
    }
    .hero-container {
      flex-direction: column;
    }
    .hero-content {
      text-align: center;
      margin-top: 5rem !important;
    }
    .hero-image {
      margin-top: 4rem;
      margin-bottom: 2rem;
      display: flex;
      justify-content: center;
      transform: scale(0.9);
    }
    .hero-image img {
      width: 90%;
    }
    .badges-top, .badge-container {
      justify-content: center;
    }
    .badge.canada, .badge.wifi {
      width: 100%;
    }
    .hero-mobile-cta {
      display: inline-block;
      width: 100%;
      max-width: 300px;
      text-align: center;
    }
  
    /* Features */
    .feature-grid {
      grid-template-columns: 1fr;
    }
    .feature-card.large {
      text-align: center;
    }
    .feature-highlight-text {
      gap: 36px;
    }
    .dashboard-preview {
      padding: 24px;
    }
    .dashboard-image {
      max-width: 100%;
      height: auto;
    }
  
    /* How It Works */
.how-it-works {
  padding: 80px 0;
}

.how-it-works-layout {
  grid-template-columns: 1fr;
  gap: 50px;
}

.product-showcase {
  order: -1;
  flex-direction: column;
}

.section-title-left {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 30px;
}

.product-image-container {
  max-width: 400px;
}

.step-item {
  padding: 24px;
  gap: 20px;
}

.step-number {
  width: 48px;
  height: 48px;
  font-size: 1.2rem;
}

.step-title {
  font-size: 1.3rem;
}

.step-description {
  font-size: 0.95rem;
}

.steps-container {
  gap: 30px;
}
  
    /* Use Cases */
    .use-cases {
      padding: 80px 0;
    }
    .use-cases-carousel {
      gap: 0;
    }
    .use-cases-carousel-wrapper {
      padding: 0;
    }
    .use-case-card {
      flex: 0 0 calc(100% - 40px);
      max-width: calc(100% - 40px);
      margin: 0 20px;
      min-width: 0;
    }
  
    /* Pricing */
    .pricing-card {
      padding: 30px 20px;
    }
    .plan-toggle-container {
      flex-direction: column;
      gap: 15px;
    }
    .product-carousel {
      max-width: 320px;
    }
    .carousel-viewport {
      height: 250px;
    }
    .info-cta-wrapper {
      padding: 20px;
      margin-top: 10px;
    }
    .pricing-main {
      gap: 15px;
    }
    .features-section {
      grid-template-columns: 1fr;
      gap: 15px;
      margin-top: 30px;
      padding-top: 30px;
    }
    .feature-group {
      padding: 20px;
    }
  
    /* Testimonials */
    .testimonials-grid {
      display: flex;
      flex-wrap: nowrap;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      gap: 16px;
      padding: 0 10%; /* (100% - card_width)/2 */
      margin-bottom: 10px;
    }
    .testimonials-grid .testimonial-card {
      flex: 0 0 80%;
      scroll-snap-align: center;
      margin: 0;
    }
    .testimonials-grid::-webkit-scrollbar {
      height: 6px;
    }
    .testimonials-grid::-webkit-scrollbar-track {
      background: rgba(255, 255, 255, 0.1);
      border-radius: 10px;
    }
    .testimonials-grid::-webkit-scrollbar-thumb {
      background: var(--highlight-color);
      border-radius: 10px;
    }
    .testimonials .scroll-indicator {
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .verified-badge {
      padding: 3px 8px;
      font-size: 0.7rem;
      margin-left: 0px;
      margin-top: 1rem;
    }
  
    /* Photo Gallery */
    .photo-gallery {
      justify-content: flex-start;
      flex-wrap: nowrap;
      overflow-x: auto;
      overflow-y: hidden;
      -webkit-overflow-scrolling: touch;
      scroll-behavior: smooth;
      scroll-snap-type: x mandatory;
      padding: 10px 0 20px;
    }
    .photo-gallery::-webkit-scrollbar {
      height: 6px;
    }
    .photo-gallery::-webkit-scrollbar-track {
      background: rgba(255, 255, 255, 0.1);
      border-radius: 10px;
    }
    .photo-gallery::-webkit-scrollbar-thumb {
      background: var(--highlight-color);
      border-radius: 10px;
    }
    .photo-item {
      width: 180px;
      height: 180px;
      scroll-snap-align: center;
    }
    .photo-gallery-container .scroll-indicator {
      display: block;
    }
  
    /* Supported Networks */
    .supported-networks {
      padding: 80px 0;
    }
    .supported-networks > .container > p {
      font-size: 0.95rem;
    }
    .network-card {
      padding: 30px 20px;
    }
    .network-card-layout {
      flex-direction: column;
      gap: 20px;
    }
    .country-info {
      padding-right: 0;
      padding-bottom: 20px;
      border-right: none;
      border-bottom: 1px solid rgba(255, 255, 255, 0.2);
      width: 100%;
    }
    .carriers-info {
      width: 100%;
    }
    .countries-grid {
      grid-template-columns: 1fr;
      gap: 20px;
    }
    .compatibility-note {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    /* FAQ & Footnotes */
    .question-container {
      padding: 24px;
      margin: 32px 0;
    }
    .question-container h3 {
      font-size: 1.5rem;
    }
    .question-container p {
      font-size: 0.95rem;
    }
    #footnotes:not([open]) .footnotes-content {
      display: none;
    }
    #footnotes summary {
      cursor: pointer;
      font-size: 1rem;
      font-weight: 600;
      color: white;
      list-style: none;
      outline: none;
    }
    #footnotes summary::-webkit-details-marker {
      display: none;
    }
    #footnotes summary::after {
      content: '▸';
      float: right;
      transition: transform 0.2s ease;
    }
    #footnotes[open] summary::after {
      transform: rotate(90deg);
    }
    #footnotes[open] .footnotes-content {
      display: block;
    }
    #footnotes summary {
      display: list-item; /* show toggle */
    }
  
    /* CTAs */
    .cp-final-cta {
      background-attachment: scroll;
    }
    .cp-final-cta__title {
      font-size: 2rem;
    }
    .cp-final-cta__description {
      font-size: 1rem;
    }
    .cp-final-cta__buttons {
      flex-direction: column;
      align-items: center;
    }
    .cp-final-cta__button {
      width: 100%;
      max-width: 275px;
    }
    .feature-cta {
      padding: 80px 0;
      margin-top: -30px;
    }
    .feature-cta__icon-container {
      width: 100px;
      height: 100px;
      margin-bottom: 25px;
    }
    .feature-cta__icon {
      font-size: 3rem;
    }
    .feature-cta__title {
      font-size: 1.5rem;
      margin-bottom: 15px;
    }
    .feature-cta__description {
      font-size: 0.95rem;
      margin-bottom: 30px;
    }
    .feature-cta__button {
      width: 100%;
      max-width: 300px;
      padding: 15px 30px;
      font-size: 1.2rem;
    }
    .feature-cta__benefits {
      flex-direction: column;
      gap: 15px;
      align-items: center;
    }
    .fleet-view-enhanced {
      padding: 36px 24px;
    }
    .fleet-view-icon {
      font-size: 3rem;
    }
    .fleet-view-enhanced h3 {
      font-size: 1.8rem;
    }
    .fleet-view-enhanced p {
      font-size: 0.9rem;
    }
    
    /* Footer */
    .footer-grid {
      grid-template-columns: 1fr !important;
      gap: 32px !important;
      text-align: center !important;
    }
    .footer-grid .logo-container {
      justify-content: center !important;
    }
    .footer-grid > div:first-child div:last-child {
      justify-content: center;
    }
    .footer-grid a {
      display: inline-flex !important;
      justify-content: center;
    }
  
    /* Exit Popup */
    .exit-popup-content {
      padding: 2rem 1.5rem;
      width: 95%;
      max-height: 85vh;
      overflow-y: auto;
    }
    .exit-popup-icon { width: 60px; height: 60px; margin-bottom: 15px; }
    .exit-popup-icon i { font-size: 2rem; }
    .exit-popup-options { flex-direction: column; gap: 20px; }
    .option { padding: 20px 15px; }
    .option-icon { width: 50px; height: 50px; margin-bottom: 15px; }
    .option-icon i { font-size: 1.5rem; }
    .exit-popup h2 { font-size: 1.8rem; margin-bottom: 5px; }
    .exit-popup p { font-size: 1rem; margin-bottom: 20px; }
    .option h3 { font-size: 1.3rem; margin-bottom: 10px; }
    .option p { font-size: 0.9rem; min-height: auto; margin-bottom: 15px; }
    .exit-popup-button { padding: 10px 20px; font-size: 0.9rem; }
    .remind-form input { padding: 10px 15px; font-size: 0.9rem; }
    .exit-popup-note { padding: 12px; flex-direction: column; gap: 5px; }
    .exit-popup-note p { font-size: 0.8rem; margin: 0; }
    .exit-popup-close { top: 10px; right: 10px; width: 44px; height: 44px; }
    .exit-popup-content::-webkit-scrollbar { width: 8px; }
    .exit-popup-content::-webkit-scrollbar-track { background: rgba(255, 255, 255, 0.05); border-radius: 10px; }
    .exit-popup-content::-webkit-scrollbar-thumb { background: var(--highlight-color); border-radius: 10px; }
  }
  
  /* Small mobile devices */
  @media (max-width: 480px) {
    /* Chat Widget */
    .mobile-chat-button {
      display: flex;
    }
    .chat-widget {
      position: fixed;
      top: 0; left: 0; right: 0; bottom: 0;
      width: 100%; height: 100%;
      border-radius: 0;
      transform: translateY(100%);
    }
    .chat-widget.open {
      transform: translateY(0);
    }
    .chat-widget.open .mobile-chat-button {
      display: none;
    }
    .chat-header {
      padding-right: 50px;
      position: relative;
    }
    .chat-header .close-chat {
      display: block;
      position: absolute;
      right: 15px;
      top: 50%;
      transform: translateY(-50%);
      font-size: 1.5rem;
      color: white;
      cursor: pointer;
    }
    .chat-status { font-size: 1rem; }
    .chat-status i { font-size: 1.1rem; }
    
    /* Pricing */
    .carousel-viewport { height: 200px; }
    .product-carousel { max-width: 280px; }
    .features-section { gap: 12px; margin-top: 20px; padding-top: 20px; }
    .feature-group { padding: 16px; }
  }
  

  /* Trust Header */
.trust-header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.trust-score {
  text-align: center;
  background: linear-gradient(135deg, rgba(15, 52, 96, 0.6) 0%, rgba(233, 69, 96, 0.1) 100%);
  border: 2px solid rgba(233, 69, 96, 0.3);
  border-radius: 24px;
  padding: 32px;
  min-width: 280px;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  color: #000;
  padding: 8px 16px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.trust-badge i {
  margin-right: 8px;
  font-size: 1.1rem;
}

.rating-display {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.rating-stars {
  display: flex;
  color: #FFD700;
  font-size: 2rem;
}

.rating-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--highlight-color);
}

.rating-subtitle {
  font-size: 1rem;
  opacity: 0.8;
  font-weight: 500;
}

.customer-count {
  text-align: center;
}

.count-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--highlight-color);
  display: block;
  line-height: 1;
}

.count-label {
  font-size: 1.1rem;
  opacity: 0.9;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.location-badges {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.location-badge {
  background: rgba(15, 52, 96, 0.4);
  border: 1px solid rgba(233, 69, 96, 0.3);
  border-radius: 20px;
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-color);
  display: flex;
  align-items: center;
  gap: 8px;
}

.location-badge i {
  color: var(--highlight-color);
}

/* Featured Reviews - Updated for Consistency */
.featured-reviews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.featured-reviews.fading {
  opacity: 0;
}

.featured-reviews.expanded {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Keep same grid */
  gap: 24px; /* Keep same gap */
}

/* Base Review Card Styles - Applied to both compact and expanded */
.review-card {
  background: linear-gradient(135deg, var(--secondary-color) 0%, rgba(15, 52, 96, 0.8) 100%);
  border-radius: 20px;
  padding: 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(233, 69, 96, 0.2);
  position: relative;
  overflow: hidden;
}

.review-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(233, 69, 96, 0.05) 0%, transparent 70%);
  transform: rotate(45deg);
  z-index: 0;
  pointer-events: none;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

/* Compact Review Card Header */
.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.review-stars {
  display: flex;
  color: #FFD700;
  font-size: 1.1rem;
}

.review-location {
  font-size: 0.8rem;
  color: var(--highlight-color);
  font-weight: 600;
}

/* Review Images */
.review-image {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  margin: 8px 0 0 0;
  border: 2px solid rgba(233, 69, 96, 0.2);
  float: right;
  margin-left: 12px;
}

/* Review Text */
.review-text {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
  clear: none;
}

/* Review Author */
.review-author {
  font-size: 0.85rem;
  opacity: 0.8;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

/* Expanded Review Cards - Now inherit base styles */
.full-review-card {
  background: linear-gradient(135deg, var(--secondary-color) 0%, rgba(15, 52, 96, 0.8) 100%);
  border-radius: 20px;
  padding: 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(233, 69, 96, 0.2);
  position: relative;
  overflow: hidden;
}

.full-review-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(233, 69, 96, 0.05) 0%, transparent 70%);
  transform: rotate(45deg);
  z-index: 0;
  pointer-events: none;
}

.full-review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

/* Full Review Stars - Match compact style */
.full-review-stars {
  color: #FFD700;
  margin-bottom: 16px;
  font-size: 1.1rem;
  position: relative;
  z-index: 1;
}

/* Full Review Content - Match compact style */
.full-review-content {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
  clear: none;
}

/* Full Review Images - Match compact style */
.full-review-image {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  margin: 8px 0 0 12px;
  border: 2px solid rgba(233, 69, 96, 0.2);
  float: right;
}

/* Full Review Author Section - Simplified to match compact */
.full-review-author {
  font-size: 0.85rem;
  opacity: 0.8;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

/* Simplify author info display */
.full-review-author .author-avatar {
  display: none;
}

.full-review-author .author-info h4 {
  display: inline;
  color: var(--highlight-color);
  font-size: 0.85rem;
  font-weight: 500;
  margin: 0;
}

.full-review-author .author-info p {
  display: inline;
  color: var(--text-color);
  opacity: 0.8;
  margin: 0;
  font-size: 0.85rem;
}

.full-review-author .author-info p::before {
  content: ', ';
}

.full-review-author .verified-badge {
  display: none;
}

/* Expandable Section */
.more-reviews {
  text-align: center;
}

.expand-button {
  background: linear-gradient(135deg, var(--highlight-color) 0%, #ff5a7c 100%);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  box-shadow: 0 4px 12px rgba(233, 69, 96, 0.3);
}

.expand-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(233, 69, 96, 0.4);
}

.expandable-reviews {
  display: none;
}

.more-reviews.hidden {
  display: none;
}

.full-reviews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  background-color: rgba(0, 183, 106, 0.15);
  color: #00b76a;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: bold;
  margin-top: 8px;
}

.verified-badge i {
  margin-right: 4px;
}

/* Mobile Responsive Updates for Testimonials */
@media (max-width: 900px) {
  .trust-header {
    flex-direction: column;
    gap: 30px;
  }

  .trust-score {
    min-width: unset;
    width: 100%;
    padding: 24px;
  }

  .rating-stars {
    font-size: 1.5rem;
  }

  .rating-number {
    font-size: 2rem;
  }

  .count-number {
    font-size: 2.5rem;
  }

  .featured-reviews {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .full-reviews {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .location-badges {
    justify-content: center;
  }

  .review-image {
    width: 60px;
    height: 60px;
    margin-left: 8px;
  }

  .full-review-image {
    width: 60px;
    height: 60px;
    margin-left: 8px;
  }
}


   .coming-soon-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
    box-shadow: 0 4px 12px var(--primary-color);
    animation: glow 2s ease-in-out infinite alternate;
  }
  
  @keyframes glow {
    from {
      box-shadow: 0 4px 12px var(--primary-color);
    }
    to {
      box-shadow: 0 6px 16px var(--secondary-color);
    }
  }
  
  /* Responsive adjustments for the badge */
  @media (max-width: 768px) {
    .coming-soon-badge {
      top: 15px;
      right: 15px;
      font-size: 0.7rem;
      padding: 5px 10px;
    }
  }
  
  @media (max-width: 350px) {
    .faq-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 48px;
    }
    
  }

/* ==========================================================================
   HERO CTA BUTTONS
   ========================================================================== */

/* Simple button container */
.hero-cta {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

/* Primary CTA */
.hero-buy-btn {
  background-color: var(--highlight-color);
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(233, 69, 96, 0.3);
}

.hero-buy-btn:hover {
  background-color: #ff5a7c;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(233, 69, 96, 0.4);
  color: white;
  text-decoration: none;
}

/* Secondary CTA */
.hero-learn-btn {
  background: rgba(15, 52, 96, 0.8);
  backdrop-filter: blur(8px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: var(--text-color);
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-learn-btn:hover {
  border-color: var(--highlight-color);
  background: rgba(233, 69, 96, 0.1);
  color: var(--highlight-color);
  transform: translateY(-2px);
  text-decoration: none;
}

/* Mobile responsiveness */
@media (max-width: 900px) {
  .hero-cta {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }

  .hero {
    height: 110vh; /* Adjust height for mobile */
  }

  .hero-buy-btn,
  .hero-learn-btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .hero-container {
    padding: 1px;
  }
}



@media (max-width: 480px) {
  .hero-buy-btn,
  .hero-learn-btn {
    font-size: 0.9rem;
    padding: 10px 20px;
  }
}

/* Hero Image Visibility Control */
.mobile-hero-image {
  display: none; /* Hidden on desktop */
}

.desktop-hero-image {
  display: flex; /* Visible on desktop */
}

/* Mobile devices */
@media (max-width: 900px) {
  
  .desktop-hero-image {
    display: none;
  }
  
  .mobile-hero-image img {
    width: 90%;
    height: auto;
  }
  
  /* Hero */
  .hero {
    margin-top: 68px;
  }
  
  .hero-container {
    flex-direction: column;
  }
  
  .hero-content {
    text-align: center;
    margin-top: 2rem !important;
  }
  
  .hero h1 {
    font-size: 2rem;
    margin-top: 1rem;
    margin-bottom: 25px;
  }
  
  .hero p {
    font-size: 1.3rem;
  }
  
  .badges-top, .badge-container {
    justify-content: center;
  }
  
  .badge.canada, .badge.wifi {
    width: 100%;
  }
  
  .hero-mobile-cta {
    display: inline-block;
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
}

@media (max-width: 900px) {
  .hero {
    height: 110vh;
    margin-top: 68px;
  }

  .how-it-works {
    padding: 60px 0 120px 0; /* Reduced top padding from 120px to 60px */
    background-color: var(--primary-color);
    position: relative;
  }


}

@media (max-width: 480px) {
  .feature-card.large h3 {
    font-size: 1.8rem;
    margin-bottom: 24px;
  }
}

/* ==========================================================================
   TRUSTED BY BANNER
   ========================================================================== */

.trusted-by {
  padding: 40px 0;
  background: linear-gradient(135deg, var(--secondary-color) 0%, rgba(15, 52, 96, 0.95) 100%);
  position: relative;
  overflow: hidden;
}

/* Add subtle pattern overlay */
.trusted-by::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(233, 69, 96, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(233, 69, 96, 0.08) 0%, transparent 50%);
  z-index: 1;
}

.trusted-by-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.trusted-by-title {
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--highlight-color);
  font-weight: 600;
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
}

/* Add decorative lines on sides of title */
.trusted-by-title::before,
.trusted-by-title::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(233, 69, 96, 0.5));
}

.trusted-by-title::before {
  right: calc(100% + 20px);
  background: linear-gradient(to left, transparent, rgba(233, 69, 96, 0.5));
}

.trusted-by-title::after {
  left: calc(100% + 20px);
}

.logo-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.logo-item {
  position: relative;
  transition: transform 0.3s ease;
}

.logo-item:hover {
  transform: translateY(-5px);
}

.partner-logo {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.7;
  transition: opacity 0.3s ease, filter 0.3s ease;
}

.logo-item:hover .partner-logo {
  opacity: 1;
  filter: brightness(0) invert(1) drop-shadow(0 4px 8px rgba(233, 69, 96, 0.3));
}

/* "Many More" styling */
.more-partners {
  background: rgba(15, 52, 96, 0.4);
  border: 2px dashed rgba(233, 69, 96, 0.3);
  border-radius: 16px;
  padding: 20px 40px;
  transition: all 0.3s ease;
}

.more-partners:hover {
  background: rgba(233, 69, 96, 0.1);
  border-color: var(--highlight-color);
  border-style: solid;
}

.more-text {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-color);
  font-weight: 600;
  font-size: 1.1rem;
}

.plus-icon {
  font-size: 1.8rem;
  color: var(--highlight-color);
  font-weight: 700;
}

/* Responsive Design */
@media (max-width: 900px) {
  .trusted-by {
    padding: 60px 0;
  }

  .trusted-by-title {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .trusted-by-title::before,
  .trusted-by-title::after {
    width: 40px;
  }

  .logo-grid {
    gap: 40px;
  }

  .partner-logo {
    height: 45px;
  }

  .more-partners {
    padding: 15px 30px;
  }

  .more-text {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .trusted-by {
    padding: 40px 0;
  }

  .trusted-by-title::before,
  .trusted-by-title::after {
    display: none;
  }

  .logo-grid {
    gap: 30px;
    flex-direction: column;
  }

  .partner-logo {
    height: 40px;
  }

  .more-partners {
    padding: 12px 25px;
  }

  .more-text {
    font-size: 0.95rem;
  }

  .plus-icon {
    font-size: 1.5rem;
  }
}

/* Hero Headline Animation Styles */
.hero-headline {
  font-size: 3rem;
  margin-top: 25px;
  margin-bottom: 25px;
  line-height: 1.3;
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* Changed from center to flex-start */
  text-align: left; /* Changed from center to left */
}

.headline-line {
  display: block;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

.headline-line:first-child {
  animation-delay: 0.2s;
}

.headline-line:last-child {
  animation-delay: 0.6s;
}

.headline-rotating {
  display: block;
  height: 1.4em;
  line-height: 1.4em;
  position: relative;
  overflow: hidden;
  margin: 0.1em 0;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.4s forwards;
  width: 100%; /* Ensure full width */
}

.rotating-wrapper {
  position: relative; /* Changed from absolute */
  display: block;
  width: 100%;
  height: 5.6em; /* Height for 4 items */
}

.rotating-item {
  display: block;
  height: 1.4em;
  line-height: 1.4em;
  color: var(--highlight-color);
  font-weight: 800;
  text-transform: lowercase;
  position: relative;
  white-space: nowrap;
  text-align: left; /* Ensure left alignment */
  transition: all 0.5s ease;
}

/* Simple animation that moves items up */
.rotating-wrapper {
  animation: rotateWords 12s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  transform: translateY(0);
}

@keyframes rotateWords {
  0%, 22% {
    transform: translateY(0);
  }
  25%, 47% {
    transform: translateY(-1.4em);
  }
  50%, 72% {
    transform: translateY(-2.8em);
  }
  75%, 97% {
    transform: translateY(-4.2em);
  }
  100% {
    transform: translateY(0);
  }
}

/* Fade in animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Add a subtle glow effect to the rotating text */
.rotating-item {
  text-shadow: 0 0 20px rgba(233, 69, 96, 0.3);
}

/* Fade edges for smooth transition */
.headline-rotating::before,
.headline-rotating::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 30%;
  z-index: 2;
  pointer-events: none;
}

.headline-rotating::before {
  top: 0;
}

.headline-rotating::after {
  bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .hero-headline {
    font-size: 2rem;
    align-items: center; /* Center on mobile */
    text-align: center; /* Center on mobile */
  }
  
  .headline-rotating {
    height: 1.3em;
  }
  
  .rotating-wrapper {
    height: 5.2em; /* Adjusted for smaller line height */
  }
  
  .rotating-item {
    height: 1.3em;
    line-height: 1.3em;
    text-align: center; /* Center on mobile */
  }
  
  @keyframes rotateWords {
    0%, 22% {
      transform: translateY(0);
    }
    25%, 47% {
      transform: translateY(-1.3em);
    }
    50%, 72% {
      transform: translateY(-2.6em);
    }
    75%, 97% {
      transform: translateY(-3.9em);
    }
    100% {
      transform: translateY(0);
    }
  }
}

@media (max-width: 480px) {
  .hero-headline {
    font-size: 1.6rem;
  }
}

/* Optional: Pause on hover */
.headline-rotating:hover .rotating-wrapper {
  animation-play-state: paused;
}

/* Hero Image Fade In Animation */
.hero-image {
  opacity: 0;
  animation: fadeInUp 0.1s ease 0.1s forwards;
}

/* Optional: Add a subtle scale effect for extra polish */
@keyframes fadeInUpScale {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Use the enhanced animation if you prefer the scale effect */
.hero-image img {
  opacity: 0;
  animation: fadeInUpScale 0.1s ease 0.1s forwards;
}

/* Ensure both mobile and desktop images animate */
.mobile-hero-image,
.desktop-hero-image {
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.8s forwards;
}

/* Adjust the existing transform on mobile to work with animation */
@media (max-width: 900px) {
  .mobile-hero-image {
    display: flex;
    max-width: 700px;
    justify-content: center;
    margin: auto;
    margin-top: -200px;
    margin-bottom: 0px;
    opacity: 0;
    animation: fadeInUp 0.1s ease 0.1s forwards;
    /* Remove the transform: scale(0.8) from here as it conflicts with animation */
  }
  
  /* Apply the scale separately to the image inside */
  .mobile-hero-image img {
    width: 90%;
    height: auto;
    transform: scale(0.9);
  }
    .hero h1 {
    font-size: 3rem;
    }
}

@media (max-width: 600px) {
  .mobile-hero-image {
    display: flex;
    max-width: 700px;
    justify-content: center;
    margin: auto;
    margin-top: -300px;
    margin-bottom: 0px;
    opacity: 0;
    animation: fadeInUp 0.1s ease 0.1s forwards;
    /* Remove the transform: scale(0.8) from here as it conflicts with animation */
  }
  
  /* Apply the scale separately to the image inside */
  .mobile-hero-image img {
    width: 90%;
    height: auto;
    transform: scale(0.9);
  }

    .hero h1 {
    font-size: 2.5rem;
    }

}

/* Expandable Add-Ons Badge - No animations */
.badge.expandable {
  background: linear-gradient(135deg, rgba(233, 69, 96, 0.15) 0%, rgba(15, 52, 96, 0.8) 100%);
  border: 2px solid var(--highlight-color);
  font-weight: 700;
  position: relative;
  box-shadow: 0 4px 12px rgba(233, 69, 96, 0.2);
  box-sizing: border-box;
}

.badge.expandable i {
  color: var(--highlight-color);
  font-weight: 900;
}


/* Alternative style option - more subtle */
.badge.expandable-subtle {
  background: rgba(15, 52, 96, 0.9);
  border: 1px dashed rgba(233, 69, 96, 0.6);
  box-shadow: inset 0 0 10px rgba(233, 69, 96, 0.1);
}

/* Responsive */
@media (max-width: 900px) {
  .badge.expandable {
    width: 100%;
    margin-top: 8px;
  }
}

@media screen and (max-width: 480px) {

  
}

/* Replace the existing mobile hero image styles with these */
@media (max-width: 900px) {
  .mobile-hero-image {
    display: flex;
    max-width: 700px;
    justify-content: center;
    margin: auto;
    /* Use viewport height instead of fixed pixels */
    margin-top: max(-25vh, -150px); /* Adjusts based on viewport height, with a minimum */
    margin-bottom: 0px;
    opacity: 0;
    animation: fadeInUp 0.1s ease 0.1s forwards;
  }
  
  .mobile-hero-image img {
    width: 90%;
    height: auto;
    transform: scale(0.9);
  }
}

/* Target smaller screens with height consideration */
@media (max-width: 600px) and (max-height: 700px) {
  /* Shorter devices like iPhone SE */
  .mobile-hero-image {
    margin-top: max(-20vh, -120px); /* Less negative margin for shorter screens */
  }
  
  .hero {
    height: auto;
    min-height: 100vh;
  }
  
  .hero h1 {
    font-size: 2.2rem;
    margin-top: 0.5rem;
  }
}

@media (max-width: 600px) and (min-height: 700px) {
  /* Taller devices like iPhone 13 Pro */
  .mobile-hero-image {
    margin-top: max(-30vh, -200px); /* More negative margin for taller screens */
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
}

/* Extra small screens with very limited height */
@media (max-width: 380px) and (max-height: 600px) {
  .mobile-hero-image {
    margin-top: max(-15vh, -100px);
  }
  
  .hero {
    height: auto;
    min-height: calc(100vh - 68px); /* Account for header */
    padding-top: 1rem;
  }
  
  .hero-content {
    margin-top: 1rem !important;
  }
}

.faq-expand-container {
  display: flex;
  align-items: center;
  margin-top: 2rem;
  justify-content: center;
}

.faq-expand-container {
  text-align: center;
  margin: 40px 0;
}

.faq-expand-button {
  background: linear-gradient(135deg, var(--highlight-color) 0%, #ff5a7c 100%);
  color: white;
  border: none;
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(233, 69, 96, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.faq-expand-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(233, 69, 96, 0.4);
}

.faq-expand-button i {
  transition: transform 0.3s ease;
  font-size: 1rem;
}

.faq-expand-button.expanded i {
  transform: rotate(180deg);
}

/* FAQ Categories */
.faq-categories {
  margin-top: 60px;
  animation: fadeIn 0.5s ease-in-out;
}

.faq-category {
  margin-bottom: 60px;
}

.faq-category-title {
  font-size: 1.8rem;
  color: var(--highlight-color);
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 2px solid rgba(233, 69, 96, 0.2);
  display: flex;
  align-items: center;
  gap: 15px;
}

.faq-category-title i {
  font-size: 2rem;
  opacity: 0.8;
}

/* Fade In Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Responsive */
@media (max-width: 900px) {
  .faq-category-title {
    font-size: 1.4rem;
  }
  
  .faq-category-title i {
    font-size: 1.6rem;
  }
  
  .faq-expand-button {
    font-size: 0.95rem;
    padding: 12px 24px;
  }
}

@media (max-width: 480px) {
  .faq-category-title {
    font-size: 1.2rem;
    gap: 10px;
  }
  
  .faq-expand-button {
    font-size: 0.9rem;
    padding: 10px 20px;
  }
}

/* ==========================================================================
   ADD-ONS TAB CUSTOM LAYOUT CSS
   ========================================================================== */

/* Override default content-layout for Add-Ons tab */
#addons .content-layout {
  display: none; /* Hide if accidentally using old structure */
}

/* Add-Ons specific layout */
.addons-layout {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Top section with description and image side-by-side */
.addons-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.addons-main-text {
  padding-right: 20px;
}

.addons-main-text .content-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--highlight-color);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.addons-main-text .content-title i {
  font-size: 2.5rem;
}

.addons-main-text .content-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-color);
  opacity: 0.9;
}

.addons-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.addons-image .feature-image-container {
  position: relative;
  width: 100%;
  max-width: 500px;
  background: linear-gradient(135deg, rgba(15, 52, 96, 0.3) 0%, rgba(233, 69, 96, 0.1) 100%);
  border-radius: 32px;
  border: 2px solid rgba(233, 69, 96, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.addons-image .feature-image-container:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(233, 69, 96, 0.3);
}

.addons-image .feature-image-container::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(233, 69, 96, 0.05) 0%, transparent 70%);
  transform: rotate(45deg);
  z-index: -1;
  pointer-events: none;
}

.addons-image .feature-image {
  width: 100%;
  height: auto;
  border-radius: 30px;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
  display: block;
}

.addons-image .feature-image-container:hover .feature-image {
  transform: scale(1.02);
}

/* Bottom grid for types and features side-by-side */
.addons-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  background: rgba(15, 52, 96, 0.3);
  border-radius: 20px;
  padding: 32px;
  border: 1px solid rgba(233, 69, 96, 0.2);
}

.addons-types, .addons-features {
  padding: 0;
}

/* Add-Ons subsection styling */
#addons h4 {
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(233, 69, 96, 0.2);
  color: var(--highlight-color);
  font-size: 1.1rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

#addons .content-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

#addons .content-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 1rem;
  color: var(--text-color);
  opacity: 0.9;
}

#addons .content-features li strong {
  color: var(--text-color);
  font-weight: 600;
}

/* Different icons for sensor types vs features */
#addons .content-features li i {
  width: 20px;
  text-align: center;
  font-size: 1.2rem;
}

/* Sensor list specific icons */
.addons-types .content-features li i {
  color: #ff5a7c;
  opacity: 0.9;
}

/* Features list icons */
.addons-features .content-features li i {
  color: var(--highlight-color);
  opacity: 0.9;
}

/* Add-Ons "Coming Soon" badge animation */
#addons .content-title span {
  animation: pulse-light 3s infinite;
}

@keyframes pulse-light {
  0%, 100% {
    opacity: 0.9;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

/* ==========================================================================
   RESPONSIVE DESIGN FOR ADD-ONS TAB
   ========================================================================== */

/* Tablet adjustments */
@media (max-width: 900px) {
  .addons-header {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .addons-main-text {
    padding-right: 0;
    text-align: center;
  }
  
  .addons-main-text .content-title {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .addons-image {
    order: -1; /* Image first on tablet/mobile */
  }
  
  .addons-details-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 24px;
  }
}

/* Mobile adjustments */
@media (max-width: 600px) {
  .addons-layout {
    gap: 30px;
  }
  
  .addons-header {
    gap: 20px;
  }
  
  .addons-main-text .content-title {
    font-size: 1.6rem;
    gap: 8px;
  }
  
  .addons-main-text .content-title i {
    font-size: 1.8rem;
  }
  
  .addons-main-text .content-description {
    font-size: 0.95rem;
  }
  
  .addons-details-grid {
    padding: 20px;
    gap: 24px;
  }
  
  #addons h4 {
    font-size: 1rem;
  }
  
  #addons .content-features {
    font-size: 0.9rem;
  }
  
  #addons .content-features li {
    margin-bottom: 10px;
  }
  
  #addons .content-features li i {
    font-size: 1.1rem;
  }
}

/* Very small screens */
@media (max-width: 480px) {
  .addons-main-text .content-title {
    font-size: 1.4rem;
  }
  
  .addons-main-text .content-title span {
    font-size: 0.5rem;
    padding: 3px 8px;
  }
  
  .addons-details-grid {
    padding: 16px;
  }
  
  #addons h4 {
    font-size: 0.95rem;
  }
  
  #addons .content-features {
    font-size: 0.85rem;
  }
}