/* ===================================
   CONSOLIDATED MOBILE STYLES
   Single source of truth for all mobile styles
   Merges all previously separate mobile CSS files
   =================================== */

/* ===================================
   GLOBAL TAP HIGHLIGHT REMOVAL
   Remove blue highlight on tap for ALL elements
   =================================== */
* {
  -webkit-tap-highlight-color: transparent !important;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important;
}

/* Additional specific removals for interactive elements */
a, button, input, select, textarea, 
[role="button"], [role="link"], 
.clickable, [onclick], [href] {
  -webkit-tap-highlight-color: transparent !important;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important;
  -webkit-touch-callout: none !important;
  outline: none !important;
}

/* Remove focus outlines on mobile */
@media (max-width: 1023px) {
  a:focus, button:focus, input:focus, 
  select:focus, textarea:focus,
  [tabindex]:focus {
    outline: none !important;
    box-shadow: none !important;
  }
  
  /* Remove any active/focus backgrounds */
  a:active, button:active,
  a:focus, button:focus {
    background-color: transparent !important;
  }
}

/* ===================================
   DESKTOP PROTECTION - Keep desktop untouched
   =================================== */
@media (min-width: 1024px) {
  .hero-images-container {
    display: none !important;
  }
  
  .background-map.desktop-only,
  .phone-mockup-1.desktop-only,
  .phone-reflection.desktop-only {
    display: block !important;
    position: absolute !important;
  }
  
  /* Hide mobile menu on desktop */
  .hamburger-btn,
  .mobile-menu {
    display: none !important;
  }
}

/* ===================================
   MOBILE BASE OVERRIDES (max-width: 1023px)
   From mobile-overflow-fix.css
   =================================== */
@media (max-width: 1023px) {
  /* Kill 1920px widths */
  html, body {
    width: 100vw !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    position: relative !important;
  }

  .viewport {
    width: 100vw !important;
    max-width: 100vw !important;
    min-width: unset !important;
    overflow-x: hidden !important;  /* Keep to prevent horizontal scroll, but hero will override */
    margin: 0 !important;
    padding: 0 !important;
    position: relative !important;
  }

  /* Override ALL section widths */
  .viewport > *,
  .advantages,
  .info,
  .devices,
  .safety,
  .package-options,
  .faq-1,
  .faq-2,
  section,
  footer,
  header {
    width: 100% !important;
    max-width: 100vw !important;
    min-width: unset !important;
    height: auto !important;
    min-height: auto !important;
    overflow-x: hidden !important;
    overflow-y: visible !important;
    box-sizing: border-box !important;
  }

  /* Info section specific height override - CHANGE THIS VALUE TO CONTROL MOBILE HEIGHT */
  .info {
    height: 500px !important;
  }

  /* Main/Hero section - Allow overflow for map */
  .main,
  main {
    width: 100% !important;
    max-width: 100vw !important;
    min-width: unset !important;
    height: auto !important;
    min-height: auto !important;
    overflow-x: visible !important;  /* Allow map to overflow horizontally */
    overflow-y: visible !important;
    box-sizing: border-box !important;
  }

  /* Kill absolute positioning that causes overflow */
  div[class*="hero"],
  div[class*="feature"],
  div[class*="advantage"],
  div[class*="info"],
  div[class*="device"],
  div[class*="safety"],
  div[class*="package"],
  div[class*="faq"] {
    position: relative !important;
    left: 0 !important;
    right: 0 !important;
    transform: none !important;
  }

  /* All text elements - PREVENT INTERNAL SCROLLING */
  /* EXCLUDING package-card elements which need desktop styles */
  .hero-title,
  .hero-subtitle,
  .hero-description,
  .features:not(.package-card .features),
  .feature:not(.package-card .feature),
  .try-text,
  .cta-buttons,
  .btn:not(.package-card .btn),
  .advantages-content,
  .advantages-left,
  .advantages-right,
  .advantage-item,
  .info-title,
  .info-description,
  .info-cards,
  .info-card,
  .devices-title,
  .devices-description,
  .mockups-container,
  .platform-buttons,
  .platform-group,
  .features-container,
  .feature-item,
  .safety-title,
  .safety-features,
  .package-title,
  .packages-container,
  /* .package-card removed - let desktop styles handle it */
  .faq1-title,
  .faq1-container,
  .faq-item,
  .faq2-container,
  .faq2-item,
  .footer,
  .footer-content {
    width: auto !important;
    max-width: 100vw !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    left: 0 !important;
    right: 0 !important;
    position: relative !important;
    overflow: hidden !important;  /* Changed from overflow-x: hidden to prevent ALL internal scrolling */
    box-sizing: border-box !important;
    -webkit-overflow-scrolling: none !important;  /* Disable iOS momentum scrolling */
  }

  /* Text overflow prevention */
  h1, h2, h3, h4, h5, h6,
  p, span, a, li, div {
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    max-width: 100% !important;
  }

  /* Images must scale */
  img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* Buttons width control */
  button,
  .btn,
  .button,
  [class*="btn"] {
    max-width: calc(100vw - 40px) !important;
    box-sizing: border-box !important;
  }

  /* Hide footer dividers on mobile */
  .footer-divider-1,
  .footer-divider-2,
  .footer-pattern,
  [class*="footer-divider"] {
    display: none !important;
  }
}

/* ===================================
   MOBILE NAVIGATION
   From navigation-mobile.css & mobile-navigation.css
   =================================== */
@media (max-width: 1023px) {
  /* Hide desktop navigation */
  .header-nav {
    display: none !important;
  }
  
  .header-btn--currency,
  .header-btn--lang {
    display: none !important;
  }

  /* Mobile header adjustments */
  .header {
    position: absolute !important;  /* Main header stays absolute */
    height: 60px !important;
    background: transparent !important;
    overflow: hidden !important;  /* Prevent internal scrolling */
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 1000 !important;
  }

  .header-sticky {
    position: fixed !important;  /* Sticky header must be fixed */
    height: 60px !important;
    background: #F3F5F9 !important;
    overflow: hidden !important;  /* Prevent internal scrolling */
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 1001 !important;
  }

  .header-content {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 0 !important;  /* No padding - hamburger button handles its own positioning */
    height: 60px !important;
    position: relative !important;  /* For absolute positioning of hamburger */
    overflow: hidden !important;  /* Also prevent scrolling on content */
  }

  .header-logo {
    font-size: 20px !important;
    width: 177px !important;
    min-width: 177px !important;
    max-width: 177px !important;
    margin-left: 0px !important;  /* Add left margin since we removed header padding */
    white-space: nowrap;
    transform: none !important;
  }

  .header-btn--install {
    display: none !important;
  }

  /* Hamburger button - CONSISTENT positioning on ALL pages */
  .hamburger-btn,
  #hamburgerBtn,
  #hamburgerBtnSticky,
  .mobile-menu-toggle,
  #mobileMenuToggle {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 30px !important;
    height: 30px !important;
    position: absolute !important;
    right: 20px !important;  /* 20px from right edge - consistent with desktop */
    top: 25px !important;  /* Fixed position matching header center */
    transform: none !important;  /* Remove transform for consistent positioning */
    background: transparent !important;
    border: none !important;
    cursor: pointer !important;
    padding: 0 !important;
    margin: 0 !important;
    z-index: 10002 !important;
    -webkit-tap-highlight-color: transparent !important;
    outline: none !important;
  }
  
  /* When hamburger is active (menu open), keep it in the same position */
  .hamburger-btn.active,
  #hamburgerBtn.active,
  #hamburgerBtnSticky.active,
  .mobile-menu-toggle.active,
  #mobileMenuToggle.active {
    /* Keep the EXACT same position as inactive burger button */
    position: absolute !important;
    right: 20px !important;  /* Same 20px from right edge */
    top: 25px !important;  /* Same fixed position as inactive state */
    transform: none !important;  /* No transform needed */
    width: 30px !important;
    height: 30px !important;  /* Fixed height back to 30px */
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 10003 !important;
  }
  
  /* Remove tap highlight on hamburger */
  .hamburger-btn:active,
  .hamburger-btn:focus {
    background: transparent !important;
    outline: none !important;
  }

  .hamburger-btn span,
  #hamburgerBtn span,
  #hamburgerBtnSticky span,
  .mobile-menu-toggle span,
  #mobileMenuToggle span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #000;
    border-radius: 1px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: 0.25s ease-in-out;
  }

  .hamburger-btn span:nth-child(1),
  #hamburgerBtn span:nth-child(1),
  #hamburgerBtnSticky span:nth-child(1),
  .mobile-menu-toggle span:nth-child(1),
  #mobileMenuToggle span:nth-child(1) {
    top: 0px;
  }

  .hamburger-btn span:nth-child(2),
  #hamburgerBtn span:nth-child(2),
  #hamburgerBtnSticky span:nth-child(2),
  .mobile-menu-toggle span:nth-child(2),
  #mobileMenuToggle span:nth-child(2) {
    top: 8px;
  }

  .hamburger-btn span:nth-child(3),
  #hamburgerBtn span:nth-child(3),
  #hamburgerBtnSticky span:nth-child(3),
  .mobile-menu-toggle span:nth-child(3),
  #mobileMenuToggle span:nth-child(3) {
    top: 16px;
  }

  /* Hamburger active state - Cross icon */
  .hamburger-btn.active span:nth-child(1),
  #hamburgerBtn.active span:nth-child(1),
  #hamburgerBtnSticky.active span:nth-child(1),
  .mobile-menu-toggle.active span:nth-child(1),
  #mobileMenuToggle.active span:nth-child(1) {
    top: 8px !important;
    width: 100% !important;
    transform: rotate(45deg) !important;
    -webkit-transform: rotate(45deg) !important;
  }

  .hamburger-btn.active span:nth-child(2),
  #hamburgerBtn.active span:nth-child(2),
  #hamburgerBtnSticky.active span:nth-child(2),
  .mobile-menu-toggle.active span:nth-child(2),
  #mobileMenuToggle.active span:nth-child(2) {
    opacity: 0 !important;
    width: 0 !important;
  }

  .hamburger-btn.active span:nth-child(3),
  #hamburgerBtn.active span:nth-child(3),
  #hamburgerBtnSticky.active span:nth-child(3),
  .mobile-menu-toggle.active span:nth-child(3),
  #mobileMenuToggle.active span:nth-child(3) {
    top: 8px !important;
    width: 100% !important;
    transform: rotate(-45deg) !important;
    -webkit-transform: rotate(-45deg) !important;
  }

  /* Mobile menu overlay */
  .mobile-menu {
    display: block !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #F3F5F9;
    z-index: 10001;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    -webkit-tap-highlight-color: transparent;  /* Remove iOS tap highlight */
  }
  
  /* Close button inside mobile menu - match hamburger's header position */
  .mobile-menu-close {
    position: absolute !important;
    top: 30px !important;  /* Position in header area: (60px header - 30px button) / 2 = 15px */
    right: 30px !important;
    width: 30px !important;
    height: 30px !important;
    background: transparent !important;
    border: none !important;
    cursor: pointer !important;
    padding: 0 !important;
    margin: 0 !important;
    z-index: 10 !important;
    -webkit-tap-highlight-color: transparent !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  
  .mobile-menu-close span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #000;
    border-radius: 1px;
    left: 0;
  }
  
  .mobile-menu-close span:nth-child(1) {
    top: 8px;
    transform: rotate(45deg);
  }
  
  .mobile-menu-close span:nth-child(2) {
    top: 8px;
    transform: rotate(-45deg);
  }
  
  /* Remove all tap highlights in mobile menu */
  .mobile-menu * {
    -webkit-tap-highlight-color: transparent !important;
  }

  .mobile-menu.active {
    transform: translateX(0);
  }

  .mobile-menu-container {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 60px 20px 30px;  /* Unified smaller padding */
    overflow-y: auto;
  }

  .mobile-menu-links {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 40px;
  }

  .mobile-menu-link {
    font-family: 'TT Firs Neue';
    font-size: 20px;  /* Unified smaller size */
    font-weight: 500;
    color: #000;
    text-decoration: none;
    padding: 16px 0;  /* Unified smaller padding */
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: color 0.2s ease;
  }

  /* Remove tap/hover color changes */
  .mobile-menu-link:hover,
  .mobile-menu-link:active,
  .mobile-menu-link:focus {
    color: #000;  /* Keep original color */
    background: transparent;  /* No background change */
    -webkit-tap-highlight-color: transparent;  /* Remove iOS tap highlight */
  }

  .mobile-menu-actions {
    margin-top: auto;
    padding-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  /* Mobile Menu Buttons - Hero Style */
  .mobile-menu-actions .btn.mobile-menu-btn {
    width: 100%;
    cursor: pointer;
  }

  .mobile-menu-actions .btn-primary.mobile-menu-btn {
    height: auto;
    padding: 0;
  }

  .mobile-menu-actions .btn-primary.mobile-menu-btn .btn-primary-inner {
    padding-left: 50px;
    padding-right: 20px;
    height: 55px;
  }

  .mobile-menu-actions .btn-primary.mobile-menu-btn .btn-primary-icon {
    width: 28px;
    height: 28px;
    left: 33px;
    top: 20px;
    object-fit: contain;
    image-rendering: -webkit-optimize-contrast;
    backface-visibility: hidden;
    transform: translateZ(0);
    -webkit-font-smoothing: antialiased;
  }

  .mobile-menu-actions .btn-outline.mobile-menu-btn {
    height: 55px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-menu-button {
    width: 100%;
    padding: 14px 20px;  /* Unified smaller padding */
    background: linear-gradient(180deg, #000000 0%, #FFCC63 218.46%);
    color: #fff;
    border: none;
    border-radius: 25px;
    font-family: 'TT Firs Neue';
    font-size: 14px;  /* Unified smaller size */
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    display: block;
    -webkit-tap-highlight-color: transparent;  /* Remove iOS tap highlight */
  }
  
  /* Keep button gradient on tap */
  .mobile-menu-button:active,
  .mobile-menu-button:focus {
    background: linear-gradient(180deg, #000000 0%, #FFCC63 218.46%);
    color: #fff;  /* Keep original color */
    outline: none;
    opacity: 0.9;
  }

  .mobile-menu-button.outline {
    background: transparent;
    color: #000;
    border: 2px solid #000;
  }

  /* Prevent body scroll when menu open */
  body.mobile-menu-open {
    overflow: hidden !important;
    width: 100% !important;
    /* Removed position: fixed - it was causing page to jump to top */
  }
}

/* ===================================
   HERO SECTION MOBILE
   From mobile-hero.css & mobile-overflow-fix.css
   =================================== */
@media (max-width: 1023px) {
  /* Hide desktop-only elements */
  .desktop-only {
    display: none !important;
  }

  /* Main hero container - Complete reset */
  .main {
    position: static !important;  /* Remove from positioned context */
    width: 100% !important;
    max-width: 100vw !important;
    height: auto !important;
    min-height: auto !important;
    padding: 80px 0 40px !important;
    margin: 0 !important;
    overflow: visible !important;
    display: block !important;
    background: transparent !important;
  }
  
  /* Force all direct children to static positioning */
  .main > * {
    position: static !important;
    width: auto !important;
    height: auto !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;
  }

  /* Hero images container */
  .hero-images-container {
    position: relative !important;
    width: 100vw !important;
    height: 350px !important;
    margin: 0 auto 20px !important;  /* Normal bottom margin */
    overflow: visible !important;
    clip: unset !important;
    clip-path: none !important;
    display: block !important;
  }

  /* Background map mobile - STATIC POSITIONING */
  .background-map-mobile {
    display: block !important;
    position: absolute !important;
    
    /* ============================================
       MAP CONFIGURATION - PIXELS ONLY, NO TRANSFORMS
       ============================================ */
    
    /* SIZE CONFIGURATION - Based on desktop map ratio (1532x808) */
    width: 1032px !important;  /* Map width */
    height: 508px !important;   /* Map height */
    
    /* STATIC PIXEL POSITIONING */
    top: -118px !important;      /* Pixels from top */
    left: -399px !important;    /* Pixels from left (negative = extends left) */
    transform: none !important; /* NO TRANSFORM - completely static */
    
    /* VISUAL CONFIGURATION */
    opacity: 0.7 !important;  /* 0 = transparent, 1 = opaque */
    
    /* Fixed properties */
    z-index: 0 !important;
    pointer-events: none !important;
    object-fit: none !important;  /* Show full image without scaling */
    
    /* Override any max-width constraints */
    max-width: none !important;
    max-height: none !important;
  }

  /* Phone mockup mobile - FIXED SIZE, PERCENTAGE HORIZONTAL POSITION */
  .phone-mockup-mobile {
    display: block !important;
    position: absolute !important;
    width: 650px !important;  /* Fixed pixel width - no zoom */
    max-width: 650px !important;
    height: auto !important;
    top: -108px !important;   /* Fixed pixel top position */
    left: 51% !important;     /* Percentage-based horizontal center */
    transform: translateX(-68%) !important;  /* Center the image */
    z-index: 2 !important;
  }

  /* Phone reflection mobile - FIXED SIZE, CENTERED */
  .phone-reflection-mobile {
    display: block !important;
    position: absolute !important;
    width: 260px !important;  /* Fixed pixel width - no zoom */
    max-width: 310px !important;
    height: auto !important;
    bottom: -190px !important;  /* Fixed pixel bottom position */
    left: 50% !important;       /* Always centered */
    transform: translateX(-39%) !important;  /* Perfect center */
    z-index: 3 !important;  /* Higher than background map (0) and phone mockup (2) */
    opacity: 0.7 !important;
  }

  /* Hero title - MORIVPN */
  .hero-title {
    position: relative !important;
    margin: 90px auto 10px !important;  /* Normal margins */
    width: 90% !important;
    height: auto !important;
    font-size: 40px !important;
    line-height: 48px !important;
    text-align: center !important;
    display: block !important;
    z-index: 10 !important;
  }

  /* Hero subtitle */
  .hero-subtitle {
    position: relative !important;
    margin: 25px auto 10px !important;  /* Normal margins */
    width: 90% !important;
    font-size: 18px !important;
    line-height: 24px !important;
    text-align: center !important;
    color: #000000 !important;
    display: block !important;
    z-index: 10 !important;
  }

  /* Hero description */
  .hero-description {
    position: relative !important;
    margin: 0 auto 20px !important;  /* Normal margins */
    width: 90% !important;
    font-size: 13px !important;
    line-height: 18px !important;
    text-align: center !important;
    color: #7F8082 !important;
    display: block !important;
    z-index: 10 !important;
  }

  /* Features container - Vertical stacking on mobile */
  .features {
    position: relative !important;
    margin: 30px 0 20px 0 !important;
    width: 100% !important;
    padding: 0 20px !important;
    display: block !important;
    z-index: 10 !important;
    box-sizing: border-box !important;
  }

  /* Individual feature items - Simple block layout */
  .feature {
    position: relative !important;
    display: block !important;
    width: 100% !important;
    height: 41px !important;
    margin: 0 0 12px 40px !important;  /* 40px left margin for icons position */
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
  }
  
  /* Feature icon - Absolute positioning at left */
  .feature-icon {
    box-sizing: border-box !important;
    position: absolute !important;
    width: 37px !important;
    height: 37px !important;
    left: 0px !important;
    top: 0px !important;
    background: #F3F5F9 !important;
    border: 1.35px solid #C6C6C6 !important;
    border-radius: 8.1px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  
  .feature-icon img {
    width: auto !important;  /* Let icon use its natural size */
    height: auto !important;
    max-width: 24px !important;  /* Constrain max size */
    max-height: 24px !important;
    display: block !important;
  }
  
  /* Feature text - Absolute positioning next to icon */
  .feature-text {
    position: absolute !important;
    left: 47px !important;  /* 37px icon + 10px gap */
    top: 0px !important;
    width: auto !important;
    height: 37px !important;
    font-family: 'TT Firs Neue' !important;
    font-style: normal !important;
    font-weight: 500 !important;
    font-size: 16.2px !important;
    line-height: 37px !important;  /* Center text vertically */
    color: #000000 !important;
    white-space: nowrap !important;
    display: block !important;
  }
  
  /* Special styling for the second feature with multi-line text */
  .feature:nth-child(2) .feature-text {
    white-space: normal !important;
    line-height: 16px !important;  /* Reduced line height for tighter spacing */
    height: auto !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: calc(100% - 47px) !important;
    padding-right: 10px !important;
    font-size: 16px !important;  /* Slightly smaller font for better fit */
  }

  /* Try text */
  .try-text {
    position: relative !important;
    margin: 50px auto 15px !important;  /* Normal margins */
    width: 90% !important;
    font-size: 14px !important;
    text-align: center !important;
    color: #000000 !important;
    display: block !important;
    z-index: 10 !important;
  }

  /* CTA buttons */
  .cta-buttons {
    position: relative !important;
    margin: 0 auto 30px !important;  /* Normal margins */
    width: 90% !important;
    height: auto !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 15px !important;
    align-items: stretch !important;
    z-index: 10 !important;
  }

  /* ===================================
     COMPLETE BUTTON STYLES FOR MOBILE
     Matches hero section button styling
     =================================== */

  /* Base button styles */
  .btn {
    width: 100% !important;
    height: 65px !important;
    border-radius: 15px !important;
    font-family: 'TT Firs Neue' !important;
    font-style: normal !important;
    font-weight: 400 !important;
    font-size: 21.6px !important;
    line-height: 28px !important;
    cursor: pointer !important;
    border: none !important;
    margin: 0 !important;
  }

  /* Primary button outer wrapper with border effect */
  .btn-primary {
    position: relative !important;
    width: 100% !important;
    height: 73px !important;
    padding: 4px !important;
    background: rgba(0, 0, 0, 0.15) !important;
    border-radius: 19px !important;
    border: none !important;
    overflow: hidden !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  /* Inner button wrapper with gradient background */
  .btn-primary-inner {
    position: absolute !important;
    width: calc(100% - 8px) !important;
    height: 65px !important;
    left: 4px !important;
    top: 4px !important;
    background: radial-gradient(64% 190.77% at 50% 184.62%, #FFCC63 0%, #000000 100%) !important;
    border-radius: 15px !important;
    overflow: hidden !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding-left: 70px !important;
    padding-right: 20px !important;
    box-sizing: border-box !important;
  }

  /* Mask group gradient overlay */
  .btn-primary-inner::before {
    content: '' !important;
    position: absolute !important;
    width: 117px !important;
    height: 86px !important;
    left: -8px !important;
    top: -9px !important;
    background: linear-gradient(113.05deg, rgba(217, 217, 217, 0.3) 46.4%, rgba(115, 115, 115, 0) 76.82%) !important;
    mix-blend-mode: overlay !important;
    pointer-events: none !important;
  }

  /* Big M background image overlay */
  .btn-primary-inner::after {
    content: '' !important;
    position: absolute !important;
    width: 90px !important;
    height: 128px !important;
    left: -1px !important;
    top: -32px !important;
    background: url('assets/icons/hero-button-bigM.svg') !important;
    background-size: 111px 128px !important;
    background-repeat: no-repeat !important;
    mix-blend-mode: overlay !important;
    opacity: 0.5 !important;
    pointer-events: none !important;
  }

  /* Button text styling */
  .btn-primary span:not(.btn-primary-icon) {
    position: relative !important;
    font-family: 'TT Firs Neue' !important;
    font-style: normal !important;
    font-weight: 400 !important;
    font-size: 18px !important;
    line-height: 23px !important;
    color: #FFCC63 !important;
    z-index: 2 !important;
    margin: 0 !important;
    white-space: nowrap !important;
    text-align: center !important;
    flex: 1 !important;
  }

  /* Button icon positioning */
  .btn-primary-icon {
    position: absolute !important;
    width: 32px !important;
    height: 32px !important;
    left: 32px !important;
    top: 19px !important;
    object-fit: contain !important;
    image-rendering: -webkit-optimize-contrast !important;
    backface-visibility: hidden !important;
    transform: translateZ(0) !important;
    -webkit-font-smoothing: antialiased !important;
    pointer-events: none !important;
    z-index: 3 !important;
  }

  /* Outline button styling */
  .btn-outline {
    box-sizing: border-box !important;
    background: transparent !important;
    border: 2px solid #000000 !important;
    color: #000000 !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    height: 65px !important;
    border-radius: 15px !important;
    font-family: 'TT Firs Neue' !important;
    font-size: 18px !important;
    font-weight: 400 !important;
  }

  /* Hide globe on mobile */
  .globe-hero {
    display: none !important;
  }
}

/* ===================================
   MID-SIZE SCREENS FIX (515px to 767px)
   Fix map clipping on larger phones/small tablets
   =================================== */
@media (min-width: 515px) and (max-width: 767px) {
  /* Background map - Wider to prevent clipping */
  .background-map-mobile {
    width: 1200px !important;  /* Wider map to extend beyond viewport */
    height: 600px !important;   /* Proportional height */
    top: -100px !important;     /* Adjust vertical position */
    left: -200px !important;    /* STATIC PIXELS - shift left to show more map */
    transform: none !important; /* NO TRANSFORM - static positioning */
    opacity: 0.75 !important;
  }
  
  /* Adjust container to allow overflow */
  .hero-images-container {
    overflow: visible !important;
    clip: unset !important;
    clip-path: none !important;
  }
}

/* ===================================
   TABLET-SPECIFIC HERO ADJUSTMENTS
   For screens between 768px and 1023px
   Fix iPhone centering and map clipping
   =================================== */
@media (min-width: 768px) and (max-width: 1023px) {
  /* Hero images container - Larger for tablets */
  .hero-images-container {
    height: 500px !important;
    margin: 0 auto 40px !important;
  }

  /* Background map - Wider and unclipped for tablets */
  .background-map-mobile {
    width: 1400px !important;  /* Much wider to prevent clipping */
    height: 700px !important;   /* Proportional height */
    top: -100px !important;      /* Better positioning */
    left: 50% !important;       /* Center horizontally */
    transform: translateX(-50%) !important;  /* Perfect centering */
    opacity: 0.8 !important;    /* Slightly more visible on tablets */
    overflow: visible !important;
    clip: unset !important;
    clip-path: none !important;
  }

  /* ===================================
     IPHONE MOCKUP POSITIONING FOR TABLETS
     PIXELS ONLY - NO PERCENTAGES, NO TRANSFORMS
     =================================== */
  .phone-mockup-mobile {
    width: 800px !important;
    max-width: 800px !important;
    height: auto !important;
    
    /* STATIC PIXEL POSITIONING */
    top: -152px !important;       /* PIXELS from top - adjust as needed */
    left: -132px !important;      /* PIXELS from left - adjust as needed */
    transform: none !important;  /* NO TRANSFORMS - completely static */
  }

  /* ===================================
     GLOW/REFLECTION POSITIONING FOR TABLETS
     PIXELS ONLY - NO PERCENTAGES, NO TRANSFORMS
     =================================== */
  .phone-reflection-mobile {
    width: 300px !important;
    max-width: 350px !important;
    
    /* STATIC PIXEL POSITIONING */
    bottom: -127px !important;   /* PIXELS from bottom */
    left: 295px !important;      /* PIXELS from left - adjust to align with iPhone */
    transform: none !important;  /* NO TRANSFORMS - completely static */
    
    opacity: 0.85 !important;
  }

  /* Ensure container doesn't clip content */
  .main {
    overflow: visible !important;
  }
}

/* ===================================
   ADVANTAGES SECTION MOBILE
   Single config for ALL mobile devices
   =================================== */
@media (max-width: 1023px) {
  .advantages {
    position: static !important;  /* Remove from positioned context */
    width: 100% !important;
    height: auto !important;
    padding: 60px 30px 40px !important;
    margin: 0 !important;
    overflow: visible !important;
    background: #F3F5F9 !important;
    clear: both !important;
    display: block !important;
  }

  /* Hide desktop-specific advantage elements */
  .advantages-bg-pattern,
  .advantages-bg-pattern-2,
  .advantages-phone-1,
  .advantages-phone-2,
  .advantages-phone-gradient {
    display: none !important;
  }

  /* Advantages content container */
  .advantages-content {
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    left: auto !important;
    top: auto !important;
    padding: 0 !important;  /* Remove padding to prevent clipping */
    box-sizing: border-box !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    z-index: 1 !important;
  }

  .advantages-left,
  .advantages-right {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    position: relative !important;
    left: 0 !important;
    top: 0 !important;
    padding: 0 !important;
  }

  /* Individual advantage items - NO SCROLLING ISSUES */
  .advantage-item {
    width: 100% !important;
    padding: 0 !important;
    margin-bottom: 40px !important;
    position: relative !important;
    left: 0 !important;
    top: 0 !important;
    height: auto !important;
    overflow: visible !important;
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
  }
  
  /* Remove bottom margin from servers paragraph since image follows */
  .advantage-servers {
    margin-bottom: 20px !important; /* Reduced margin before images */
  }

  /* Advantage titles */
  .advantage-title {
    font-family: 'TT Firs Neue', sans-serif !important;
    font-weight: 500 !important;
    font-size: 20px !important;
    line-height: 26px !important;
    color: #000000 !important;
    margin-bottom: 12px !important;
    padding: 0 !important;
  }

  /* Advantage text */
  .advantage-text {
    font-family: 'TT Firs Neue', sans-serif !important;
    font-weight: 400 !important;
    font-size: 14px !important;
    line-height: 20px !important;
    color: #7F8082 !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  /* Keep line breaks for formatting */
  .advantage-text br {
    display: block;
  }

  /* Order advantage items */
  .advantage-zero-logs { 
    order: 1; 
  }
  
  .advantage-servers { 
    order: 2;
    position: relative !important;
  }
  
  .advantage-wireguard { 
    order: 4;  /* Changed from 3 to 4, images take 3 */
  }
  
  .advantage-kill-switch { 
    order: 5;  /* Changed from 4 to 5 */
  }
  
  .advantage-tor { 
    order: 6;  /* Changed from 5 to 6 */
  }

  /* Images Group Container - MOBILE ONLY - flows with content */
  .advantages-images-group {
    position: relative !important;
    width: 100% !important;
    height: 500px !important;  /* Fixed height to contain both images */
    margin: 0 0 40px 0 !important;  /* No top margin, normal bottom margin */
    display: block !important;
    overflow: visible !important;
    order: 3 !important;  /* Position after servers (2) and before wireguard (now 4) */
  }

  /* iPhone positioning - MOBILE OVERRIDE FOR GROUPED VERSION */
  .advantages-images-group .advantages-iphone {
    display: block !important;
    position: absolute !important;  /* Absolute to overlap */
    width: 998px !important;
    max-width: 800% !important;  /* Responsive max width */
    height: auto !important;
    left: 53.2% !important;
    top: -85px !important;
    transform: translateX(-50%) !important;  /* Center horizontally */
    z-index: 10 !important;  /* On top */
    pointer-events: none !important;
  }

  /* iPhone Glow - MOBILE OVERRIDE FOR GROUPED VERSION */
  .advantages-images-group .advantages-iphone-glow {
    display: block !important;
    position: absolute !important;  /* Absolute to overlap */
    width: 238px !important;  /* Visible width */
    height: auto !important;
    left: 50.4% !important;
    top: 490px !important;  /* Same position as iPhone */
    transform: translateX(-50%) !important;  /* Center horizontally */
    z-index: 9 !important;  /* Behind iPhone */
    opacity: 1 !important;
    pointer-events: none !important;
  }
  
  /* Hide the desktop-positioned images on mobile */
  .advantages-iphone.desktop-only,
  .advantages-iphone-glow.desktop-only {
    display: none !important;
  }
  
  /* Show the mobile grouped images */
  .advantages-images-group {
    display: block !important;
  }

  /* Simple fade animation */
  .advantage-item {
    animation: fadeIn 0.8s ease forwards;
  }

  @keyframes fadeIn {
    from { 
      opacity: 0;
      transform: translateY(10px);
    }
    to { 
      opacity: 1;
      transform: translateY(0);
    }
  }

  .advantage-item:nth-child(1) { animation-delay: 0.1s; }
  .advantage-item:nth-child(2) { animation-delay: 0.2s; }
  .advantage-item:nth-child(3) { animation-delay: 0.3s; }
  .advantage-item:nth-child(4) { animation-delay: 0.4s; }
  .advantage-item:nth-child(5) { animation-delay: 0.5s; }
}

/* ===================================
   UNIFIED MOBILE CONFIG - Same for all phones
   All variations removed - single config for all mobile devices
   =================================== */

/* ===================================
   END OF CONSOLIDATED MOBILE STYLES
   =================================== */
/* ===================================
   INFO SECTION MOBILE
   Cards fully visible and adapted for mobile
   =================================== */
@media (max-width: 1023px) {
  .info {
    padding: 60px 0 !important;
    position: relative !important;
    overflow: hidden !important;
    background: #F3F5F9 !important;
  }

  /* Hide desktop decorative elements */
  .map-advantages-info-overlay,
  .info-bg-pattern {
    display: none !important;
  }

  /* Info title */
  .info-title {
    position: relative !important;
    width: 90% !important;
    margin: 0 auto 20px !important;
    padding: 0 20px !important;
    left: auto !important;
    top: auto !important;
    font-family: 'TT Firs Neue', sans-serif !important;
    font-weight: 600 !important;
    font-size: 28px !important;
    line-height: 34px !important;
    text-align: center !important;
    color: #000000 !important;
    height: auto !important;  /* Auto height to prevent scrolling */
    box-sizing: border-box !important;
    overflow: hidden !important;  /* Prevent any internal scrolling */
  }

  /* Info description */
  .info-description {
    position: relative !important;
    width: 90% !important;
    margin: 0 auto 40px !important;
    padding: 0 20px !important;
    left: auto !important;
    top: auto !important;
    font-family: 'TT Firs Neue', sans-serif !important;
    font-weight: 400 !important;
    font-size: 14px !important;
    line-height: 20px !important;
    text-align: center !important;
    color: #7F8082 !important;
    height: auto !important;
    box-sizing: border-box !important;
  }

  /* Info cards container - Stack vertically */
  .info-cards {
    position: relative !important;
    width: 100% !important;
    padding: 0 20px !important;
    left: auto !important;
    top: auto !important;
    height: auto !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
    align-items: center !important;
    box-sizing: border-box !important;
  }

  /* Individual info cards - Full width with visible backgrounds */
  .info-card {
    position: relative !important;
    width: 100% !important;
    max-width: 350px !important;
    height: 420px !important;
    left: auto !important;
    top: auto !important;
    border-radius: 20px !important;
    overflow: hidden !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
  }

  /* Card hover/active effect */
  .info-card:active {
    transform: scale(0.98) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15) !important;
  }

  /* Card images - Full background */
  .card-image {
    position: absolute !important;
    width: 100% !important;
    height: 100% !important;
    top: 0 !important;
    left: 0 !important;
    background-size: cover !important;
    background-position: center !important;
    z-index: 1 !important;
  }

  /* Overlay gradient for better text readability */
  .info-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.7) 0%,
      rgba(0, 0, 0, 0.3) 30%,
      rgba(0, 0, 0, 0.1) 60%,
      rgba(0, 0, 0, 0.4) 100%
    );
    z-index: 2;
  }

  /* Card title - Larger and more prominent */
  .info-card h3.card-title,
  .card-title {
    position: absolute !important;
    width: 90% !important;
    left: 5% !important;
    top: 30px !important;
    margin: 0 !important;
    padding: 0 10px !important;
    font-family: 'TT Firs Neue', sans-serif !important;
    font-weight: 600 !important;
    font-size: 24px !important;
    line-height: 30px !important;
    text-align: center !important;
    color: #FFFFFF !important;
    z-index: 3 !important;
    white-space: normal !important;
    height: auto !important;
  }

  /* Card text - Better positioning */
  .card-text {
    position: absolute !important;
    width: 85% !important;
    left: 7.5% !important;
    top: 90px !important;
    padding: 0 10px !important;
    font-family: 'TT Firs Neue', sans-serif !important;
    font-weight: 400 !important;
    font-size: 14px !important;
    line-height: 20px !important;
    text-align: center !important;
    color: #FFFFFF !important;
    z-index: 3 !important;
    height: auto !important;
    opacity: 0.95 !important;
  }

  /* Numbers removed from cards as requested */

  /* Animation for cards */
  @keyframes slideUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .info-card {
    animation: slideUp 0.6s ease forwards;
    opacity: 0;
  }

  .info-card:nth-child(1) { animation-delay: 0.1s; }
  .info-card:nth-child(2) { animation-delay: 0.2s; }
  .info-card:nth-child(3) { animation-delay: 0.3s; }
  .info-card:nth-child(4) { animation-delay: 0.4s; }

  /* Ensure cards are visible when in view */
  .info-card.in-view {
    opacity: 1 !important;
  }
}

/* ===================================
   DEVICES SECTION MOBILE
   Single config for all mobile devices
   =================================== */
@media (max-width: 1023px) {
  .devices {
    padding: 40px 0 17px !important;  /* Added bottom padding for cards */
    position: relative !important;
    overflow: visible !important;  /* Changed from hidden to visible */
    background: #F3F5F9 !important;
    min-height: auto !important;  /* Allow section to grow */
  }

  /* Hide desktop decorative elements */
  .devices-map-overlay,
  .devices-bg-pattern-1,
  .devices-bg-pattern-2 {
    display: none !important;
  }

  /* Devices title */
  .devices-title {
    position: relative !important;
    width: 90% !important;
    margin: 0 auto 10px !important;  /* Reduced margin */
    padding: 0 20px !important;
    left: auto !important;
    top: auto !important;
    font-family: 'TT Firs Neue', sans-serif !important;
    font-weight: 600 !important;
    font-size: 28px !important;
    line-height: 34px !important;
    text-align: center !important;
    color: #000000 !important;
    height: auto !important;
    box-sizing: border-box !important;
    overflow: hidden !important;  /* Prevent scrolling */
    text-overflow: ellipsis !important;  /* Handle overflow gracefully */
  }

  /* Devices description */
  .devices-description {
    position: relative !important;
    width: 90% !important;
    margin: 0 auto 15px !important;  /* Much closer to image */
    padding: 0 20px !important;
    left: auto !important;
    top: auto !important;
    font-family: 'TT Firs Neue', sans-serif !important;
    font-weight: 400 !important;
    font-size: 14px !important;
    line-height: 20px !important;
    text-align: center !important;
    color: #7F8082 !important;
    height: auto !important;
    box-sizing: border-box !important;
    overflow: hidden !important;  /* Prevent scrolling */
  }

  /* Mockups container - Display devices image */
  .mockups-container {
    position: relative !important;
    width: 100% !important;
    height: 250px !important;  /* Much reduced height */
    margin: 0 auto 20px !important;  /* Closer to buttons below */
    left: auto !important;
    top: auto !important;
    display: block !important;
    overflow: visible !important;
    /* Use direct background image */
    background-image: url('./assets/images/devices-all.png') !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
  }

  /* Also use pseudo-element as primary display method */
  .mockups-container::after {
    content: '' !important;
    position: absolute !important;
    width: 100% !important;
    height: 100% !important;
    top: 0 !important;
    left: 0 !important;
    /* Correct path from CSS file location */
    background-image: url('./assets/images/devices-all.png') !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    z-index: 1 !important;
    display: block !important;
  }

  /* Hide old platform buttons */
  .platform-buttons,
  .platform-group,
  .platform-icons,
  .platform-btn,
  .platform-icon {
    display: none !important;
  }

  /* Platform section with device cards for mobile - FORCE SHOW */
  .devices .platform-section {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    top: auto !important;  /* Reset absolute positioning */
    left: auto !important;  /* Reset absolute positioning */
    width: 100% !important;
    padding: 0 20px !important;
    box-sizing: border-box !important;
    margin-top: 30px !important;
    margin-bottom: 40px !important;
    z-index: 10 !important;
  }

  .platform-section-title {
    font-family: 'TT Firs Neue', sans-serif !important;
    font-weight: 700 !important;
    font-size: 20px !important;
    line-height: 26px !important;
    text-align: center !important;
    color: #000000 !important;
    margin-bottom: 24px !important;
  }

  /* Device cards container - 2x2 grid for mobile */
  .devices .device-cards {
    display: grid !important;
    visibility: visible !important;
    opacity: 1 !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
    width: 100% !important;
  }

  .devices .device-card {
    background: linear-gradient(135deg, #F8F9FA 0%, #E8EAED 100%) !important;
    border-radius: 12px !important;
    padding: 20px 12px !important;
    text-align: center !important;
    transition: all 0.3s ease !important;
    border: 2px solid rgba(0,0,0,0.05) !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06) !important;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 8px !important;
  }

  .device-card:active {
    transform: scale(0.98) !important;
    border-color: #222222 !important;
  }

  .device-card-icon {
    width: 50px !important;
    height: 50px !important;
    background: linear-gradient(179.77deg, #000000 0.2%, #666666 191.74%) !important;
    border-radius: 10px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 4px !important;
  }

  .device-card-icon img {
    width: 26px !important;
    height: 26px !important;
  }

  .device-card-title {
    font-family: 'TT Firs Neue', sans-serif !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    line-height: 20px !important;
    color: #000000 !important;
    margin: 0 !important;
  }

  .device-card-description {
    font-family: 'TT Firs Neue', sans-serif !important;
    font-weight: 400 !important;
    font-size: 12px !important;
    line-height: 16px !important;
    color: #707070 !important;
    margin: 0 !important;
  }

  .device-card-btn {
    width: 100% !important;
    padding: 10px 16px !important;
    margin-top: 8px !important;
    background: #000000 !important;
    border: none !important;
    border-radius: 8px !important;
    font-family: 'TT Firs Neue', sans-serif !important;
    font-weight: 500 !important;
    font-size: 13px !important;
    line-height: 18px !important;
    color: #FFFFFF !important;
    cursor: pointer !important;
  }

  /* Features container - Hide on mobile for simplicity */
  .features-container {
    display: none !important;
  }

  /* Animation for platform groups */
  @keyframes slideInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .platform-group {
    animation: slideInUp 0.6s ease forwards;
    opacity: 0;
  }

  .platform-group:nth-child(1) {
    animation-delay: 0.1s;
  }

  .platform-group:nth-child(2) {
    animation-delay: 0.2s;
  }

  /* Add visual separator between groups */
  .platform-group:not(:last-child)::after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 1px;
  }

  /* Ensure visibility */
  .platform-group.in-view {
    opacity: 1 !important;
  }
  
  /* FORCE DEVICE CARDS TO SHOW ON MOBILE */
  .devices .platform-section {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    min-height: 400px !important;
  }
}

/* ===================================
   SAFETY SECTION MOBILE
   Feature cards with background images
   =================================== */
@media (max-width: 1023px) {
  .safety {
    padding: 40px 0 !important;
    position: relative !important;
    overflow: hidden !important;
    background: #F3F5F9 !important;
    height: auto !important;
  }

  /* Hide desktop decorative elements */
  .safety-bg-pattern-1,
  .safety-bg-pattern-2,
  .map-safety-packages,
  .flags-container {
    display: none !important;
  }

  /* Safety title */
  .safety-title {
    position: relative !important;
    width: 90% !important;
    margin: 0 auto 20px !important;
    padding: 0 20px !important;
    left: auto !important;
    top: auto !important;
    font-family: 'TT Firs Neue', sans-serif !important;
    font-weight: 600 !important;
    font-size: 26px !important;
    line-height: 32px !important;
    text-align: center !important;
    color: #000000 !important;
    height: auto !important;
    box-sizing: border-box !important;
  }

  /* Safety features container */
  .safety-features {
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    left: auto !important;
    top: auto !important;
    padding: 0 20px !important;
    box-sizing: border-box !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
  }

  /* Feature cards with backgrounds */
  .feature-advanced,
  .feature-servers,
  .feature-routing,
  .feature-personal {
    position: relative !important;
    width: 100% !important;
    max-width: 400px !important;
    height: 280px !important;
    margin: 0 auto !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
    background-size: cover !important;
    top: auto !important;
    left: auto !important;
  }

  /* Adjust background positions manually here */
  /* ONLY adjust the background-position values to reposition the images */
  /* X-axis: 0% = left edge, 50% = center, 100% = right edge */
  /* Y-axis: 0% = top edge, 50% = center, 100% = bottom edge */

  .feature-advanced {
    background-position: 80% 50% !important; /* Adjust these values to reposition */
  }

  .feature-servers {
    background-position: 80% 50% !important; /* Adjust these values to reposition */
  }

  .feature-routing {
    height: 320px !important; /* Slightly taller for more items */
    background-position: 67% 32% !important; /* Adjust these values to reposition */
  }

  .feature-personal {
    height: 240px !important; /* Shorter for fewer items */
    background-position: 90% 70% !important; /* Adjust these values to reposition */
  }

  /* Dark overlay for better text readability */
  .feature-advanced::before,
  .feature-servers::before,
  .feature-routing::before,
  .feature-personal::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.8) 0%,
      rgba(0, 0, 0, 0.6) 40%,
      rgba(0, 0, 0, 0.4) 100%
    );
    z-index: 1;
  }

  /* Card titles */
  .feature-advanced h3.card-title,
  .feature-servers h3.card-title,
  .feature-routing h3.card-title,
  .feature-personal h3.card-title {
    position: absolute !important;
    width: calc(100% - 40px) !important;
    height: auto !important;
    left: 20px !important;
    top: 25px !important;
    margin: 0 !important;
    padding: 0 !important;
    font-family: 'TT Firs Neue', sans-serif !important;
    font-weight: 600 !important;
    font-size: 22px !important;
    line-height: 28px !important;
    text-align: left !important;
    color: #FFFFFF !important;
    z-index: 2 !important;
  }
  
  /* Make "Продвинутая безопасность" title smaller to fit on one line */
  .feature-advanced h3.card-title {
    font-size: 20px !important;
    line-height: 24px !important;
  }

  /* Feature lists */
  .feature-list {
    position: absolute !important;
    top: 70px !important;
    left: 20px !important;
    right: 20px !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    z-index: 2 !important;
  }

  /* Feature items */
  .feature-item {
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    left: 0 !important;
    top: 0 !important;
    margin-bottom: 10px !important;
    padding-left: 20px !important;
    font-family: 'TT Firs Neue', sans-serif !important;
    font-weight: 400 !important;
    font-size: 14px !important;
    line-height: 20px !important;
    color: #FFFFFF !important;
    opacity: 0.9 !important;
  }

  /* Add bullet points */
  .feature-item::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #FFFFFF;
    opacity: 0.6;
  }

  /* Animations */
  @keyframes slideInFromLeft {
    from {
      opacity: 0;
      transform: translateX(-30px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  @keyframes slideInFromRight {
    from {
      opacity: 0;
      transform: translateX(30px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  /* Animate cards alternately */
  .feature-advanced,
  .feature-routing {
    animation: slideInFromLeft 0.6s ease forwards;
  }

  .feature-servers,
  .feature-personal {
    animation: slideInFromRight 0.6s ease forwards;
  }

  /* Stagger animations */
  .feature-advanced { animation-delay: 0.1s; }
  .feature-servers { animation-delay: 0.2s; }
  .feature-routing { animation-delay: 0.3s; }
  .feature-personal { animation-delay: 0.4s; }

  /* Initial hidden state */
  .feature-advanced,
  .feature-servers,
  .feature-routing,
  .feature-personal {
    opacity: 0;
  }


/* ===================================
   PACKAGE OPTIONS MOBILE - CUSTOM MOBILE CARDS
   Complete implementation of mobile-specific package cards
   =================================== */
@media (max-width: 1023px) {
  /* Section setup */
  .package-options {
    padding: 40px 0 30px !important;
    position: relative !important;
    overflow: visible !important;
    background: #F3F5F9 !important;
  }

  /* Hide desktop decorative elements */
  .package-bg-pattern,
  .coin-right,
  .coin-left,
  .packages-glow {
    display: none !important;
  }

  /* Title - mobile size */
  .package-title {
    position: relative !important;
    width: 90% !important;
    margin: 0 auto 30px !important;
    left: auto !important;
    top: auto !important;
    font-size: 28px !important;
    line-height: 34px !important;
    text-align: center !important;
  }
  
  /* Container wrapper with V2 scaling */
  .packages-container {
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 31px !important;
    width: 100% !important;
    height: auto !important;
    left: 0 !important;
    top: 0 !important;
    padding: 0 !important;
    margin: 0 auto -300px !important; /* Negative bottom margin to compensate for scale */
    overflow: visible !important;
    align-items: center !important;
    transform: scale(0.9) !important;
    transform-origin: top center !important;
  }

  /* COPY ALL DESKTOP CARD STYLES EXACTLY */
  
  /* Package Card Base - FOR INDEX PAGE PRICING SECTION ONLY */
  .package-options .package-card {
    position: relative !important;
    width: 475px !important;
    border-radius: 20px !important;
    overflow: visible !important;
  }

  /* Basic Package */
  .package-options .package-basic {
    width: 475px !important;
    height: 730px !important;  /* Increased from 662px to 730px to match desktop height */
    background: linear-gradient(180deg, #666666 -26.58%, #000000 45.94%) !important;
    border-radius: 20px !important;
    position: relative !important;
  }

  /* Premium Package */
  .package-options .package-premium {
    width: 475px !important;
    height: 730px !important;  /* Increased from 698px to 730px to match desktop height */
    background: #FFCC63 !important;
    position: relative !important;
    top: 0px !important;
  }

  .package-options .package-premium-inner {
    position: absolute !important;
    width: 100% !important;
    height: 730px !important; /* Increased from 698px to match card height */
    top: 0 !important; /* No yellow border - starts at top */
    background: linear-gradient(180deg, #FFCC63 -26.32%, #000000 30.71%) !important;
    border-radius: 20px !important;
  }

  /* Maximum Package */
  .package-options .package-maximum {
    width: 475px !important;
    height: 730px !important;
    background: linear-gradient(180deg, #CA89FF -64.91%, #000000 45.94%) !important;
  }

  /* Popular Badge */
  .package-options .popular-badge {
    position: absolute !important;
    width: 138px !important;
    height: 19px !important;
    left: calc(50% - 138px/2) !important;
    top: calc(50% - 19px/2 - 329.5px) !important;
    font-family: 'TT Firs Neue' !important;
    font-style: normal !important;
    font-weight: 600 !important;
    font-size: 14.4px !important;
    line-height: 19px !important;
    color: #FFFFFF !important;
    text-align: center !important;
    z-index: 6 !important;
  }

  /* Package Headers */
  .package-options .package-basic .package-header {
    position: absolute !important;
    width: 231px !important;
    height: 33px !important;
    left: 35px !important;
    top: 30px !important;
    z-index: 5 !important;
  }

  .package-options .package-premium .package-header {
    position: absolute !important;
    width: 221px !important;
    height: 33px !important;
    left: 35px !important;
    top: 30px !important;
    z-index: 5 !important;
  }

  .package-options .package-maximum .package-header {
    position: absolute !important;
    width: 271px !important;
    height: 33px !important;
    left: 35px !important;
    top: 30px !important;
    z-index: 5 !important;
  }

  /* Package Names */
  .package-options .package-name {
    font-family: 'TT Firs Neue' !important;
    font-style: normal !important;
    font-size: 25.92px !important;
    line-height: 33px !important;
    margin: 0 !important;
    padding: 0 !important;
    text-align: left !important;
  }

  .package-options .package-basic .name-main {
    font-weight: 500 !important;
    color: #FFFFFF !important;
  }

  .package-options .package-basic .name-sub {
    font-weight: 400 !important;
    color: rgb(239, 239, 239) !important;
    margin-left: 0px !important;
  }

  .package-options .package-premium .name-main {
    font-weight: 500 !important;
    color: #FFCC63 !important;
  }

  .package-options .package-premium .name-sub {
    font-weight: 400 !important;
    color: rgb(242, 242, 242) !important;
    margin-left: 0px !important;
  }

  .package-options .package-maximum .name-main {
    font-weight: 500 !important;
    color: #CA89FF !important;
  }

  .package-options .package-maximum .name-sub {
    font-weight: 400 !important;
    color: rgb(242, 242, 242) !important;
    margin-left: 0px !important;
  }

  /* Price Containers */
  .package-basic .package-price-container {
    position: absolute !important;
    width: 335px !important;
    height: 70px !important;
    left: 35px !important;
    top: 65px !important;
    z-index: 5 !important;
    display: flex !important;
    align-items: baseline !important;
  }

  .package-premium .package-price-container {
    position: absolute !important;
    width: 335px !important;
    height: 70px !important;
    left: 35px !important;
    top: 65px !important;
    z-index: 5 !important;
    display: flex !important;
    align-items: baseline !important;
  }

  .package-maximum .package-price-container {
    position: absolute !important;
    width: 395px !important;
    height: 70px !important;
    left: 35px !important;
    top: 65px !important;
    z-index: 5 !important;
    display: flex !important;
    align-items: baseline !important;
  }

  /* Prices */
  .package-price {
    font-family: 'TT Firs Neue' !important;
    font-style: normal !important;
    font-weight: 500 !important;
    font-size: 47px !important;
    line-height: 70px !important;
    color: #FFFFFF !important;
    margin: 0 0 0 0px !important;
    padding: 0 !important;
    text-align: left !important;
    display: inline-block !important;
  }

  .price-period {
    font-family: 'TT Firs Neue' !important;
    font-style: normal !important;
    font-weight: 500 !important;
    font-size: 16.2px !important;
    line-height: 21px !important;
    color: #7F8082 !important;
    margin-left: 10px !important;
    display: inline-block !important;
    align-self: bottom !important;
  }

  /* Currency */
  .package-basic .price-currency {
    position: absolute !important;
    width: 140px !important;
    height: 23px !important;
    left: 35px !important;
    top: 138px !important;
    font-family: 'TT Firs Neue' !important;
    font-style: normal !important;
    font-weight: 400 !important;
    font-size: 18px !important;
    line-height: 23px !important;
    color: #7F8082 !important;
    text-align: left !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .package-premium .price-currency {
    position: absolute !important;
    width: 130px !important;
    height: 23px !important;
    left: 0px !important;
    top: 78px !important;
    font-family: 'TT Firs Neue' !important;
    font-style: normal !important;
    font-weight: 400 !important;
    font-size: 18px !important;
    line-height: 23px !important;
    color: #7F8082 !important;
    text-align: left !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .package-maximum .price-currency {
    position: absolute !important;
    width: 130px !important;
    height: 23px !important;
    left: 0px !important;
    top: 78px !important;
    font-family: 'TT Firs Neue' !important;
    font-style: normal !important;
    font-weight: 400 !important;
    font-size: 18px !important;
    line-height: 23px !important;
    color: #7F8082 !important;
    text-align: left !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  /* Annual Prices */
  .annual-premium {
    position: absolute !important;
    top: 182px !important;
    left: calc(50% - 275px/2 - 41.5px) !important;
    text-align: left !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    font-family: 'TT Firs Neue' !important;
    font-weight: 500 !important;
    font-size: 13px !important;
    line-height: 18px !important;
    z-index: 5 !important;
  }

  .annual-maximum {
    position: absolute !important;
    top: 180px !important;
    left: calc(50% - 275px/2 - 41.5px) !important;
    text-align: left !important;
    display: flex !important;
    align-items: center !important;
    gap: 5px !important;
    font-family: 'TT Firs Neue' !important;
    font-weight: 500 !important;
    font-size: 13px !important;
    line-height: 18px !important;
    z-index: 5 !important;
  }

  .annual-icon {
    width: 27px !important;
    height: 27px !important;
  }

  .annual-premium .annual-amount {
    color: #FFCC63 !important;
    font-weight: 500 !important;
  }

  .annual-premium .annual-period {
    color: #ffffff !important;
    font-weight: 400 !important;
  }

  .annual-maximum .annual-amount {
    color: #CA89FF !important;
    font-weight: 500 !important;
  }

  .annual-maximum .annual-period {
    color: #ffffff !important;
    font-weight: 400 !important;
  }

  /* Ideal For */
  .package-basic .ideal-for {
    position: absolute !important;
    width: calc(100% - 30px) !important;
    height: auto !important;
    left: 35px !important;
    top: 175px !important;
    font-family: 'TT Firs Neue' !important;
    font-style: normal !important;
    font-size: 14px !important;
    line-height: 21px !important;
    text-align: left !important;
    z-index: 5 !important;
    margin: 0 !important;
    padding: 0 5px !important;
    white-space: normal !important;
  }

  .package-premium .ideal-for {
    position: absolute !important;
    width: calc(100% - 70px) !important;
    height: auto !important;
    top: 236px !important;
    left: 35px !important;
    text-align: center !important;
    font-family: 'TT Firs Neue' !important;
    font-style: normal !important;
    font-weight: 500 !important;
    font-size: 15.2px !important;
    line-height: 21px !important;
    color: #7F8082 !important;
    z-index: 5 !important;
    padding: 0 35px !important;
    white-space: normal !important;
  }

  .package-maximum .ideal-for {
    position: absolute !important;
    width: calc(100% - 70px) !important;
    height: auto !important;
    left: 35px !important;
    top: 235px !important;
    font-family: 'TT Firs Neue' !important;
    font-style: normal !important;
    font-size: 15.2px !important;
    line-height: 21px !important;
    text-align: center !important;
    z-index: 5 !important;
    margin: 0 !important;
    padding: 0 20px !important;
    white-space: normal !important;
  }

  .ideal-for-label {
    font-weight: 400 !important;
    color: #7F8082 !important;
  }

  .package-basic .ideal-for-text {
    font-weight: 400 !important;
    color: #dfdfdf !important;
    margin-left: 5px !important;
  }

  .package-premium .ideal-for-text {
    color: #FFCC63 !important;
    font-weight: 400 !important;
  }

  .package-maximum .ideal-for-text {
    color: #CA89FF !important;
    font-weight: 400 !important;
    margin-left: 5px !important;
  }

  /* Dividers - Dynamic width with padding */
  .package-basic .package-divider {
    position: absolute !important;
    width: calc(100% - 82px) !important;  /* Dynamic width with 41px padding on each side */
    height: 1px !important;
    left: 41px !important;
    right: 41px !important;
    top: 208px !important;
    background: #7F8082 !important;
    opacity: 0.6 !important;
    z-index: 5 !important;
  }

  .package-premium .divider-1 {
    position: absolute !important;
    width: calc(100% - 82px) !important;  /* Dynamic width with 41px padding on each side */
    height: 1px !important;
    left: 41px !important;
    right: 41px !important;
    top: 293px !important;
    background: #7F8082 !important;
    opacity: 0.6 !important;
    z-index: 5 !important;
  }

  .package-premium .divider-2 {
    position: absolute !important;
    width: calc(100% - 82px) !important;  /* Dynamic width with 41px padding on each side */
    height: 1px !important;
    left: 41px !important;
    right: 41px !important;
    top: 218px !important;
    background: #7F8082 !important;
    opacity: 0.6 !important;
    z-index: 5 !important;
  }

  .package-maximum .divider-1 {
    position: absolute !important;
    width: calc(100% - 82px) !important;  /* Dynamic width with 41px padding on each side */
    height: 1px !important;
    left: 41px !important;
    right: 41px !important;
    top: 293px !important;
    background: #7F8082 !important;
    opacity: 0.6 !important;
    z-index: 5 !important;
  }

  .package-maximum .divider-2 {
    position: absolute !important;
    width: calc(100% - 82px) !important;  /* Dynamic width with 41px padding on each side */
    height: 1px !important;
    left: 41px !important;
    right: 41px !important;
    top: 218px !important;
    background: #7F8082 !important;
    opacity: 0.6 !important;
    z-index: 5 !important;
  }

  /* Features Lists */
  .package-basic .package-features {
    position: absolute !important;
    width: 227px !important;
    height: 353px !important;
    left: -11px !important;
    bottom: 70px !important;
    z-index: 5 !important;
  }

  .package-premium .package-features {
    position: absolute !important;
    width: 227px !important;
    height: 294px !important;
    left: 10px !important;
    bottom: 40px !important; /* Moved lower from 60px */
    z-index: 5 !important;
  }

  .package-maximum .package-features {
    position: absolute !important;
    width: 227px !important;
    height: 150px !important;
    left: 10px !important;
    bottom: 180px !important; /* Moved lower from 210px */
    z-index: 5 !important;
  }

  /* Default features list styling */
  .features-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;  /* Default margin */
    position: relative !important;
    height: 100% !important;
  }
  
  /* Basic package specific features list margin */
  .package-basic .features-list {
    margin: -18px 0 0 0 !important;  /* Keep -40px for basic */
  }
  
  /* Premium and Maximum packages features list margin */
  .package-premium .features-list,
  .package-maximum .features-list {
    margin: 5px 0 0 0 !important;  /* Changed from -18px to 5px to add spacing after "Идеально для:" line */
  }

  /* Basic Features */
  .package-basic .feature {
    --feature-spacing: 34px;
    --checkmark-text-gap: 40px;
    position: absolute !important;
    font-family: "TT Firs Neue" !important;
    font-style: normal !important;
    font-weight: 400 !important;
    font-size: 16.2px !important;
    line-height: 21px !important;
    color: #7F8082 !important;
    padding-left: var(--checkmark-text-gap) !important;
    list-style: none !important;
    white-space: nowrap !important;
    height: 37px !important;
    display: flex !important;
    align-items: center !important;
  }

  .package-basic .feature:nth-child(1) {
    width: 156px !important;
    left: 0 !important;
    top: calc(var(--feature-spacing) * 0) !important;
  }

  .package-basic .feature:nth-child(2) {
    width: 161px !important;
    left: 0 !important;
    top: calc(var(--feature-spacing) * 1) !important;
  }

  .package-basic .feature:nth-child(3) {
    width: 227px !important;
    left: 0 !important;
    top: calc(var(--feature-spacing) * 2) !important;
  }

  .package-basic .feature:nth-child(4) {
    width: 197px !important;
    left: 0 !important;
    top: calc(var(--feature-spacing) * 3) !important;
  }

  .package-basic .feature:nth-child(5) {
    width: 166px !important;
    left: 0 !important;
    top: calc(var(--feature-spacing) * 4) !important;
  }

  .package-basic .feature:nth-child(6) {
    width: 195px !important;
    left: 0 !important;
    top: calc(var(--feature-spacing) * 5) !important;
  }

  .package-basic .feature:nth-child(7) {
    width: 208px !important;
    left: 0 !important;
    top: calc(var(--feature-spacing) * 6) !important;
  }

  .package-basic .feature:nth-child(8) {
    width: 216px !important;
    left: 0 !important;
    top: calc(var(--feature-spacing) * 7) !important;
  }

  .package-basic .feature:nth-child(9) {
    width: 216px !important;
    left: 0 !important;
    top: calc(var(--feature-spacing) * 8) !important;
  }

  .package-basic .feature::before {
    content: "" !important;
    position: absolute !important;
    background: url("data:image/svg+xml,%3Csvg width='16' height='12' viewBox='0 0 16 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 6L6 11L15 1' stroke='%237F8082' stroke-width='2'/%3E%3C/svg%3E") no-repeat center !important;
    width: 18px !important;
    height: 14px !important;
    left: 0 !important;
    top: 0 !important;
    bottom: 0 !important;
    margin: auto 0 !important;
  }

  /* Premium Features */
  .package-premium .feature {
    --feature-spacing: 35px; /* Increased spacing from 34px to 42px */
    --checkmark-text-gap: 45px;
    --feature-left-align: -21px;
    position: absolute !important;
    font-family: "TT Firs Neue" !important;
    font-style: normal !important;
    font-weight: 400 !important;
    font-size: 16.2px !important;
    line-height: 21px !important;
    height: 37px !important;
    color: #7F8082 !important;
    padding-left: var(--checkmark-text-gap) !important;
    list-style: none !important;
    white-space: nowrap !important;
  }

  .package-premium .feature-header {
    font-weight: 500 !important;
    color: #FFFFFF !important;
    height: 37px !important;
    line-height: 21px !important;
  }

  .package-premium .feature:nth-child(1) {
    width: 250px !important;
    left: -21px !important;
    top: calc(var(--feature-spacing) * 0) !important;
  }

  .package-premium .feature:nth-child(2) {
    width: 200px !important;
    left: -21px !important;
    top: calc(var(--feature-spacing) * 1) !important;
  }

  .package-premium .feature:nth-child(3) {
    width: 300px !important;
    left: -21px !important;
    top: calc(var(--feature-spacing) * 2) !important;
  }

  .package-premium .feature:nth-child(4) {
    width: 300px !important;
    left: -21px !important;
    top: calc(var(--feature-spacing) * 3) !important;
  }

  .package-premium .feature:nth-child(5) {
    width: 150px !important;
    left: -21px !important;
    top: calc(var(--feature-spacing) * 4) !important;
  }

  .package-premium .feature::before {
    content: "" !important;
    position: absolute !important;
    background: url("data:image/svg+xml,%3Csvg width='16' height='12' viewBox='0 0 16 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 6L6 11L15 1' stroke='%23FFCC63' stroke-width='2'/%3E%3C/svg%3E") no-repeat center !important;
    width: 18px !important;
    height: 14px !important;
    left: 0 !important;
    top: 3px !important; /* Align with text baseline like basic card */
    bottom: auto !important;
    margin: 0 !important;
  }

  /* Maximum Features */
  .package-maximum .feature {
    --feature-spacing: 34px;
    --checkmark-text-gap: 45px;
    --feature-left-align: -11px;
    position: absolute !important;
    font-family: "TT Firs Neue" !important;
    font-style: normal !important;
    font-weight: 400 !important;
    font-size: 16.2px !important;
    line-height: 21px !important;
    height: 37px !important;
    color: #7F8082 !important;
    padding-left: var(--checkmark-text-gap) !important;
    list-style: none !important;
    white-space: nowrap !important;
  }

  .package-maximum .feature-header {
    font-weight: 500 !important;
    color: #FFCC63 !important;
    height: 37px !important;
    line-height: 21px !important;
  }

  .package-maximum .feature:nth-child(1) {
    width: 250px !important;
    left: -11px !important;
    top: calc(var(--feature-spacing) * 0) !important;
  }

  .package-maximum .feature:nth-child(2) {
    width: 280px !important;
    left: -11px !important;
    top: calc(var(--feature-spacing) * 1) !important;
  }

  .package-maximum .feature:nth-child(3) {
    width: 200px !important;
    left: -11px !important;
    top: calc(var(--feature-spacing) * 2) !important;
  }

  .package-maximum .feature::before {
    content: "" !important;
    position: absolute !important;
    background: url("data:image/svg+xml,%3Csvg width='16' height='12' viewBox='0 0 16 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 6L6 11L15 1' stroke='%23CA89FF' stroke-width='2'/%3E%3C/svg%3E") no-repeat center !important;
    width: 18px !important;
    height: 14px !important;
    left: 0 !important;
    top: 3px !important; /* Align with text baseline like basic card */
    bottom: auto !important;
    margin: 0 !important;
  }
  
  /* Crossed features styles removed - reverted to original state */

  /* Connect Buttons */
  .package-basic .connect-button {
    position: absolute !important;
    width: 180px !important;
    height: 52px !important;
    left: calc(50% - 180px/2) !important;
    bottom: 30px !important;
    background: #FFFFFF !important;
    border-radius: 31.5px !important;
    border: none !important;
    font-family: 'TT Firs Neue' !important;
    font-style: normal !important;
    font-weight: 600 !important;
    font-size: 18.9px !important;
    line-height: 24px !important;
    color: #000000 !important;
    cursor: pointer !important;
    transition: transform 0.2s !important;
    z-index: 5 !important;
    text-align: center !important;
  }

  .package-premium .connect-button,
  .package-maximum .connect-button {
    position: absolute !important;
    width: 180px !important;
    height: 52px !important;
    left: calc(50% - 180px/2) !important;
    bottom: 38px !important;
    border-radius: 31.5px !important;
    border: none !important;
    font-family: 'TT Firs Neue' !important;
    font-style: normal !important;
    font-weight: 600 !important;
    font-size: 18.9px !important;
    line-height: 24px !important;
    cursor: pointer !important;
    transition: transform 0.2s !important;
    z-index: 5 !important;
    text-align: center !important;
  }

  /* Trial Period Box - Mobile - Premium Package */
  .package-options .trial-period-box {
    position: absolute !important;
    width: calc(100% - 82px) !important;
    min-height: 64px !important;
    left: 41px !important;
    bottom: 130px !important;  /* Lowered from default to prevent overlap with feature text */
    background: rgba(127, 128, 130, 0.2) !important;
    border-radius: 16px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 12px 20px !important;
    z-index: 6 !important;
    gap: 20px !important;
  }

  .package-options .trial-content-wrapper {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
    flex: 1 !important;
  }

  .package-options .trial-period-text {
    font-family: 'TT Firs Neue' !important;
    font-style: normal !important;
    font-weight: 400 !important;
    font-size: 16px !important;
    line-height: 21px !important;
    color: #7F8082 !important;
    white-space: nowrap !important;
  }

  .package-options .trial-price-container {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
  }

  .package-options .trial-price-old {
    font-family: 'TT Firs Neue' !important;
    font-style: normal !important;
    font-weight: 400 !important;
    font-size: 16px !important;
    line-height: 21px !important;
    color: #FFFFFF !important;
    text-decoration: line-through !important;
    white-space: nowrap !important;
  }

  .package-options .trial-price-new {
    font-family: 'TT Firs Neue' !important;
    font-style: normal !important;
    font-weight: 500 !important;
    font-size: 18px !important;
    line-height: 23px !important;
    color: #FFCC63 !important;
    white-space: nowrap !important;
  }

  /* Toggle Switch - Mobile */
  .package-options .trial-toggle {
    position: relative !important;
    display: inline-block !important;
    width: 44px !important;
    height: 24px !important;
    cursor: pointer !important;
    flex-shrink: 0 !important;
  }

  .package-options .trial-toggle-input {
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
  }

  .package-options .trial-toggle-slider {
    position: absolute !important;
    cursor: pointer !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background-color: #7F8082 !important;
    transition: 0.3s !important;
    border-radius: 24px !important;
  }

  .package-options .trial-toggle-slider:before {
    position: absolute !important;
    content: "" !important;
    height: 18px !important;
    width: 18px !important;
    left: 3px !important;
    bottom: 3px !important;
    background-color: white !important;
    transition: 0.3s !important;
    border-radius: 50% !important;
  }

  .package-options .trial-toggle-input:checked + .trial-toggle-slider {
    background-color: #FFCC63 !important;
  }

  .package-options .trial-toggle-input:checked + .trial-toggle-slider:before {
    transform: translateX(20px) !important;
  }

  /* Small screens - reduce trial period box font sizes */
  @media (max-width: 400px) {
    .package-options .trial-period-box {
      padding: 10px 12px !important;  /* Reduced padding */
      gap: 12px !important;  /* Reduced gap */
      min-height: 56px !important;  /* Reduced height */
    }

    .package-options .trial-content-wrapper {
      gap: 6px !important;  /* Reduced gap */
    }

    .package-options .trial-period-text {
      font-size: 13px !important;  /* Reduced from 16px */
      line-height: 18px !important;  /* Reduced from 21px */
    }

    .package-options .trial-price-container {
      gap: 8px !important;  /* Reduced gap */
    }

    .package-options .trial-price-old {
      font-size: 13px !important;
      line-height: 18px !important;
    }

    .package-options .trial-price-new {
      font-size: 15px !important;  /* Reduced from 18px */
      line-height: 20px !important;  /* Reduced from 23px */
    }

    .package-options .trial-toggle {
      width: 40px !important;  /* Slightly smaller toggle */
      height: 22px !important;
    }

    .package-options .trial-toggle-slider:before {
      height: 16px !important;  /* Slightly smaller toggle handle */
      width: 16px !important;
      left: 3px !important;
      bottom: 3px !important;
    }

    .package-options .trial-toggle-input:checked + .trial-toggle-slider:before {
      transform: translateX(18px) !important;  /* Adjusted for smaller toggle */
    }
  }

  .btn-basic {
    background: #FFFFFF !important;
    color: #000000 !important;
  }

  .btn-premium {
    background: #FFCC63 !important;
    color: #000000 !important;
  }

  .btn-maximum {
    background: #CA89FF !important;
    color: #000000 !important;
  }

}

/* ===================================
   FAQ SECTIONS MOBILE - Clean and organized layout
   Both FAQ-1 and FAQ-2 sections unified styling
   =================================== */
@media (max-width: 1023px) {
  /* FAQ-1 Section */
  .faq-1 {
    padding: 180px 0 20px !important;  /* Increased top padding from 20px to 50px */
    position: relative !important;
    overflow: hidden !important;
    background: #F3F5F9 !important;
    width: 100% !important;
    height: auto !important;
  }
  
  /* FAQ-2 Section */
  .faq-2 {
    padding: 40px 0 !important;
    position: relative !important;
    overflow: hidden !important;
    background: #F3F5F9 !important;
    width: 100% !important;
    height: auto !important;
  }

  /* Hide desktop decorative elements */
  .faq1-map-top-left,
  .faq1-map-bottom-right,
  .faq2-map-top-left-moved,
  .faq2-map-top-left,
  .faq2-map-bottom-right,
  .faq1-bg-pattern-1,
  .faq1-bg-pattern-2,
  .faq2-bg-pattern-1,
  .faq2-bg-pattern-2 {
    display: none !important;
  }
  
/* ===================================
   FAQ SECTIONS MOBILE - Clean and organized layout
   Both FAQ-1 and FAQ-2 sections unified styling
   =================================== */
@media (max-width: 1023px) {
  /* FAQ-1 Section */
  .faq-1 {
    padding: 80px 0 20px !important;  /* Increased top padding from 20px to 50px */
    position: relative !important;
    overflow: hidden !important;
    background: #F3F5F9 !important;
    width: 100% !important;
    height: auto !important;
  }
  
  /* FAQ-2 Section */
  .faq-2 {
    padding: 40px 0 !important;
    position: relative !important;
    overflow: hidden !important;
    background: #F3F5F9 !important;
    width: 100% !important;
    height: auto !important;
  }

  /* Hide desktop decorative elements */
  .faq1-map-top-left,
  .faq1-map-bottom-right,
  .faq2-map-top-left-moved,
  .faq2-map-top-left,
  .faq2-map-bottom-right,
  .faq1-bg-pattern-1,
  .faq1-bg-pattern-2,
  .faq2-bg-pattern-1,
  .faq2-bg-pattern-2 {
    display: none !important;
  }

  /* FAQ-1 Title */
  .faq1-title {
    position: relative !important;
    width: 90% !important;
    margin: 90px auto 40px !important;
    padding: 0 20px !important;
    left: auto !important;
    top: auto !important;
    font-family: 'TT Firs Neue', sans-serif !important;
    font-weight: 600 !important;
    font-size: 28px !important;
    line-height: 34px !important;
    text-align: center !important;
    color: #000000 !important;
    height: auto !important;
    box-sizing: border-box !important;
  }

  /* FAQ Containers */
  .faq1-container,
  .faq2-container {
    position: relative !important;
    width: 100% !important;
    padding: 0 20px !important;
    left: auto !important;
    top: auto !important;
    height: auto !important;
    box-sizing: border-box !important;
  }

  /* Section Headers with Icons */
  .faq-section-header,
  .faq2-section-header {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    width: 100% !important;
    margin: 0 0 20px 0 !important;
    padding: 15px 0 !important;
    left: auto !important;
    top: auto !important;
    font-family: 'TT Firs Neue', sans-serif !important;
    font-weight: 600 !important;
    font-size: 22px !important;
    line-height: 28px !important;
    color: #000000 !important;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1) !important;
  }

  /* Section Icons */
  .section-icon,
  .section2-icon {
    position: relative !important;
    width: 35px !important;
    height: 35px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(255, 255, 255, 0.8) !important;
    border-radius: 8px !important;
    padding: 6px !important;
    left: auto !important;
    top: auto !important;
  }

  .section-icon img,
  .section2-icon img {
    width: 100% !important;
    height: auto !important;
    max-width: 24px !important;
    max-height: 24px !important;
  }

  /* FAQ Items */
  .faq-item,
  .faq2-item {
    position: relative !important;
    width: 100% !important;
    margin: 0 0 30px 0 !important;
    padding: 20px 0 !important;
    left: auto !important;
    top: auto !important;
    height: auto !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
    box-sizing: border-box !important;
  }

  /* Questions */
  .faq-question,
  .faq2-question {
    position: relative !important;
    width: 100% !important;
    margin: 0 0 15px 0 !important;
    left: auto !important;
    top: auto !important;
    font-family: 'TT Firs Neue', sans-serif !important;
    font-weight: 500 !important;
    font-size: 18px !important;
    line-height: 24px !important;
    color: #000000 !important;
  }

  /* Question labels */
  .question-label {
    font-weight: 600 !important;
    color: #000000 !important;
  }

  /* Answers */
  .faq-answer,
  .faq2-answer {
    position: relative !important;
    width: 100% !important;
    margin: 0 !important;
    left: auto !important;
    top: auto !important;
    font-family: 'TT Firs Neue', sans-serif !important;
    font-weight: 400 !important;
    font-size: 16px !important;
    line-height: 22px !important;
    color: #7F8082 !important;
  }

  /* Answer labels */
  .answer-label {
    font-weight: 500 !important;
    color: #7F8082 !important;
  }

  /* Reset all desktop positioning for FAQ items */
  .faq-item-1, .faq-item-2, .faq-item-3, .faq-item-4, .faq-item-5,
  .faq2-item-1, .faq2-item-2, .faq2-item-3, .faq2-item-4 {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    width: 100% !important;
    height: auto !important;
  }

  /* Reset all desktop positioning for questions and answers */
  .question-1, .question-2, .question-3, .question-4, .question-5,
  .question2-1, .question2-2, .question2-3, .question2-4,
  .answer-1, .answer-2, .answer-3, .answer-4, .answer-5,
  .answer2-1, .answer2-2, .answer2-3, .answer2-4 {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    width: 100% !important;
    height: auto !important;
  }

  /* Section organization - stack all sections vertically */
  .section-general,
  .section-security,
  .section-payment,
  .section-support {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    width: 100% !important;
    margin: 40px 0 20px 0 !important;
  }

  /* First section has no top margin */
  .section-general {
    margin-top: 0 !important;
  }

  /* Animation for FAQ items */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .faq-item,
  .faq2-item {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
  }

  .faq-item:nth-child(odd) { animation-delay: 0.1s; }
  .faq-item:nth-child(even) { animation-delay: 0.2s; }
  .faq2-item:nth-child(odd) { animation-delay: 0.1s; }
  .faq2-item:nth-child(even) { animation-delay: 0.2s; }

  /* Ensure visibility when in view */
  .faq-item.in-view,
  .faq2-item.in-view {
    opacity: 1 !important;
  }
}

/* End of FAQ mobile styles */

/* ===================================
   FOOTER SECTION MOBILE
   Clean, organized mobile footer layout
   =================================== */
@media (max-width: 1023px) {
  /* Footer container */
  .footer {
    position: relative !important;
    width: 100% !important;
    min-width: unset !important;
    height: auto !important;
    background: #000000 !important;
    padding: 60px 0 40px !important;
    margin: 0 !important;
    overflow: hidden !important;
  }

  /* Footer content wrapper */
  .footer-content {
    position: relative !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    padding: 0 20px !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 50px !important;
  }

  /* Hide desktop dividers */
  .footer-divider-1,
  .footer-divider-2 {
    display: none !important;
  }
  
  /* Hide the old pattern div */
  .footer-pattern {
    display: none !important;
  }
  
  /* Show the ACTUAL IMAGE */
  .footer-pattern-image {
    display: block !important;
    width: auto !important;
    max-width: 280px !important;
    height: auto !important;
    margin: -85px auto 0 auto !important;  /* Reduced from 20px to move higher */
    position: relative !important;
    z-index: 10 !important;
  }

  /* ===== BRAND SECTION ===== */
  .footer-brand {
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    left: auto !important;
    top: auto !important;
    text-align: center !important;
    padding-bottom: 40px !important;
    border-bottom: 1px solid #373737 !important;
  }

  .footer-logo {
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    left: auto !important;
    top: auto !important;
    font-family: 'Organetto-ExtUltraBold' !important;
    font-style: normal !important;
    font-weight: 800 !important;
    font-size: 38px !important;
    line-height: 51px !important;
    color: #FFFFFF !important;
    margin-bottom: 10px !important;
  }

  .footer-tagline {
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    left: auto !important;
    top: auto !important;
    font-family: 'TT Firs Neue' !important;
    font-style: normal !important;
    font-weight: 400 !important;
    font-size: 16.2px !important;
    line-height: 21px !important;
    color: #7F8082 !important;
    margin-bottom: 20px !important;
  }

  /* HIDE the text - we have the IMAGE */
  .footer-professor {
    display: none !important;
  }

  /* ===== NAVIGATION SECTIONS ===== */
  /* Common styles for all footer sections */
  .footer-product,
  .footer-downloads,
  .footer-support,
  .footer-documents,
  .footer-social {
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    left: auto !important;
    top: auto !important;
    margin: 0 !important;
  }

  /* Section titles - matching desktop style */
  .footer-section-title {
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    left: auto !important;
    top: auto !important;
    font-family: 'TT Firs Neue' !important;
    font-style: normal !important;
    font-weight: 400 !important;
    font-size: 16.2px !important;
    line-height: 21px !important;
    color: #7F8082 !important;
    margin-bottom: 25px !important;
    padding-bottom: 15px !important;
    border-bottom: 1px solid #373737 !important;
    text-transform: none !important;
  }

  /* Footer links - matching desktop style */
  .footer-link {
    position: relative !important;
    display: block !important;
    width: 100% !important;
    height: auto !important;
    left: auto !important;
    top: auto !important;
    font-family: 'TT Firs Neue' !important;
    font-style: normal !important;
    font-weight: 400 !important;
    font-size: 14.4px !important;
    line-height: 19px !important;
    color: #FFFFFF !important;
    text-decoration: none !important;
    padding: 8px 0 !important;
    margin: 0 !important;
    transition: opacity 0.2s !important;
  }

  .footer-link:hover,
  .footer-link:active {
    opacity: 0.8 !important;
    color: #FFFFFF !important;
  }

  /* ===== PRODUCT SECTION ===== */
  .footer-product {
    display: flex !important;
    flex-direction: column !important;
  }

  .product-title,
  .product-download,
  .product-pricing,
  .product-how,
  .product-features,
  .product-subscriptions {
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    left: auto !important;
    top: auto !important;
  }

  /* ===== DOWNLOADS SECTION ===== */
  .footer-downloads {
    display: flex !important;
    flex-direction: column !important;
    gap: 30px !important;
  }

  /* Downloads subsections */
  .downloads-mobile,
  .downloads-desktop,
  .downloads-browser {
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    left: auto !important;
    top: auto !important;
    display: flex !important;
    flex-direction: column !important;
  }

  /* Downloads section titles - same style as main section titles */
  .mobile-title,
  .desktop-title,
  .browser-title {
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    left: auto !important;
    top: auto !important;
    font-family: 'TT Firs Neue' !important;
    font-style: normal !important;
    font-weight: 400 !important;
    font-size: 16.2px !important;
    line-height: 21px !important;
    color: #7F8082 !important;
    margin-bottom: 20px !important;
  }

  /* Download links */
  .download-ios,
  .download-android,
  .download-windows,
  .download-macos,
  .download-chrome,
  .download-firefox,
  .download-safari {
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    left: auto !important;
    top: auto !important;
  }

  /* ===== SUPPORT SECTION ===== */
  .footer-support {
    display: flex !important;
    flex-direction: column !important;
  }

  .support-title,
  .support-faq,
  .support-telegram,
  .support-email {
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    left: auto !important;
    top: auto !important;
  }

  /* ===== DOCUMENTS SECTION ===== */
  .footer-documents {
    display: flex !important;
    flex-direction: column !important;
  }

  .documents-title,
  .document-consent,
  .document-privacy,
  .document-terms {
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    left: auto !important;
    top: auto !important;
  }

  /* ===== SOCIAL SECTION ===== */
  .footer-social {
    display: flex !important;
    flex-direction: column !important;
  }

  .social-title,
  .social-telegram,
  .social-twitter,
  .social-youtube {
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    left: auto !important;
    top: auto !important;
  }

  /* ===== COPYRIGHT & LEGAL (if needed) ===== */
  .footer-copyright {
    position: relative !important;
    width: 100% !important;
    padding-top: 30px !important;
    text-align: center !important;
    font-family: 'TT Firs Neue' !important;
    font-style: normal !important;
    font-weight: 400 !important;
    font-size: 12px !important;
    line-height: 16px !important;
    color: #7F8082 !important;
  }

  /* ===== COMPANY CREDENTIALS ===== */
  .footer-credentials {
    position: relative !important;
    width: 100% !important;
    padding-top: 30px !important;
    margin-top: 20px !important;
    border-top: 1px solid #373737 !important;
    text-align: center !important;
  }

  .credentials-text {
    position: relative !important;
    width: 100% !important;
    font-family: 'TT Firs Neue' !important;
    font-style: normal !important;
    font-weight: 400 !important;
    font-size: 10px !important;
    line-height: 14px !important;
    color: #7F8082 !important;
    margin: 0 !important;
    padding: 0 10px !important;
  }

  /* ===== ACCORDION FUNCTIONALITY (Optional) ===== */
  /* If you want collapsible sections on mobile */
  .footer-section-collapsible {
    cursor: pointer !important;
    position: relative !important;
  }

  .footer-section-collapsible::after {
    content: '+' !important;
    position: absolute !important;
    right: 0 !important;
    top: 0 !important;
    font-size: 24px !important;
    color: #7F8082 !important;
    transition: transform 0.3s ease !important;
  }

  .footer-section-collapsible.active::after {
    transform: rotate(45deg) !important;
  }

  /* Collapsed content */
  .footer-section-content {
    max-height: 0 !important;
    overflow: hidden !important;
    transition: max-height 0.3s ease !important;
  }

  .footer-section-content.active {
    max-height: 500px !important;
  }

  /* ===== RESPONSIVE ADJUSTMENTS ===== */
  /* Extra small screens */
  @media (max-width: 374px) {
    .footer {
      padding: 40px 0 30px !important;
    }

    .footer-content {
      padding: 0 15px !important;
      gap: 35px !important;
    }

    .footer-logo {
      font-size: 32px !important;
      line-height: 42px !important;
    }

    .footer-tagline {
      font-size: 14px !important;
      line-height: 18px !important;
    }

    .footer-section-title {
      font-size: 15px !important;
      line-height: 20px !important;
    }

    .footer-link {
      font-size: 13px !important;
      line-height: 18px !important;
      padding: 7px 0 !important;
    }
  }

  /* Tablet adjustments */
  @media (min-width: 768px) and (max-width: 1023px) {
    .footer-content {
      padding: 0 40px !important;
      max-width: 768px !important;
      margin: 0 auto !important;
    }

    /* Two column layout for tablets */
    .footer-nav-wrapper {
      display: grid !important;
      grid-template-columns: 1fr 1fr !important;
      gap: 40px !important;
    }

    .footer-brand {
      grid-column: 1 / -1 !important;
    }

    .footer-social {
      grid-column: 1 / -1 !important;
    }
  }
}

/* End of Footer mobile styles */
/* Mobile FAQ Layout Fix - Proper Organization */
@media (max-width: 1023px) {
  /* FAQ Containers - Use flexbox for proper ordering */
  .faq1-container,
  .faq2-container {
    display: flex !important;
    flex-direction: column !important;
  }
  
  /* FAQ-1 Container - Proper ordering of headers and questions */
  /* Header 1: General Questions (3 questions) */
  .faq1-container .section-general { order: 1 !important; }
  .faq1-container .faq-item-1 { order: 2 !important; }
  .faq1-container .faq-item-2 { order: 3 !important; }
  .faq1-container .faq-item-3 { order: 4 !important; }
  
  /* Header 2: Security (2 questions) */
  .faq1-container .section-security { order: 5 !important; }
  .faq1-container .faq-item-4 { order: 6 !important; }
  .faq1-container .faq-item-5 { order: 7 !important; }
  
  /* Hide duplicate icon divs */
  .faq1-container .icon-general { display: none !important; }
  .faq1-container .icon-security { display: none !important; }
  
  /* FAQ-2 Container - Proper ordering of headers and questions */
  /* Header 3: Subscription and Payment (2 questions) */
  .faq2-container .section-payment { order: 1 !important; }
  .faq2-container .faq2-item-1 { order: 2 !important; }
  .faq2-container .faq2-item-2 { order: 3 !important; }
  
  /* Header 4: Support (2 questions) */
  .faq2-container .section-support { order: 4 !important; }
  .faq2-container .faq2-item-3 { order: 5 !important; }
  .faq2-container .faq2-item-4 { order: 6 !important; }
  
  /* Hide duplicate icon divs */
  .faq2-container .icon-payment { display: none !important; }
  .faq2-container .icon-support { display: none !important; }

  /* Section Headers - Override to ensure block display and remove border */
  .faq-section-header,
  .faq2-section-header {
    display: flex !important;
    align-items: flex-start !important;
    line-height: 30px !important;
    border-bottom: none !important;
    padding-left: 0 !important;
  }

  /* Hide separate icon elements */
  .section-icon,
  .section2-icon {
    display: none !important;
  }

  /* First sections have no top margin */
  .section-general,
  .section-payment {
    margin-top: 0 !important;
  }
  
  /* Add icons inline with headers using pseudo-elements */
  .faq-section-header.section-general::before {
    content: '' !important;
    display: block !important;
    flex-shrink: 0 !important;
    width: 30px !important;
    height: 30px !important;
    margin-right: 10px !important;
    margin-top: 0px !important;
    background-image: url('assets/icons/faq1.svg') !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: contain !important;
  }

  .faq-section-header.section-security::before {
    content: '' !important;
    display: block !important;
    flex-shrink: 0 !important;
    width: 30px !important;
    height: 30px !important;
    margin-right: 10px !important;
    margin-top: 0px !important;
    background-image: url('assets/icons/faq2.svg') !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: contain !important;
  }

  .faq2-section-header.section-payment::before {
    content: '' !important;
    display: block !important;
    flex-shrink: 0 !important;
    width: 30px !important;
    height: 30px !important;
    margin-right: 10px !important;
    margin-top: 0px !important;
    background-image: url('assets/icons/faq3.svg') !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: contain !important;
  }

  .faq2-section-header.section-support::before {
    content: '' !important;
    display: block !important;
    flex-shrink: 0 !important;
    width: 30px !important;
    height: 30px !important;
    margin-right: 10px !important;
    margin-top: 0px !important;
    background-image: url('assets/icons/faq4.svg') !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: contain !important;
  }
}

/* ===================================
   SECTION DIVIDERS - Mobile Only
   Semi-transparent black lines between sections
   =================================== */
@media (max-width: 1023px) {
  /* Divider after Advantages section (before Info) */
  .advantages::after {
    content: '';
    display: block;
    width: 80%;
    height: 1px;
    background: rgba(0, 0, 0, 0.15);
    margin: 60px auto 0 auto;
  }

  /* Divider after Devices section (before Safety) */
  .devices::after {
    content: '';
    display: block;
    width: 80%;
    height: 1px;
    background: rgba(0, 0, 0, 0.15);
    margin: 60px auto 0 auto;
  }

  /* Divider after Installation Steps section (before FAQ) */
  .installation-steps-section::after {
    content: '';
    display: block;
    width: 80%;
    height: 1px;
    background: rgba(0, 0, 0, 0.15);
    margin: 0 auto;
    position: relative;
    bottom: -79px;
  }
}

/* Footer fix - Remove border after brand section and link selection */
@media (max-width: 1023px) {
  .footer-brand {
    border-bottom: none !important;
  }
  
  /* Remove blue selection/tap highlight on footer links */
  .footer-link,
  .footer-link:active,
  .footer-link:focus {
    -webkit-tap-highlight-color: transparent !important;
    -webkit-touch-callout: none !important;
    -webkit-user-select: none !important;
    -khtml-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
    outline: none !important;
  }

  /* Installation Steps Section Mobile */
  .installation-steps-section {
    padding: 40px 0 !important;
    position: relative !important;
    overflow: visible !important;
    background: #F3F5F9 !important;
    min-height: auto !important;
    height: auto !important;
    width: 100% !important;
  }

  /* Hide decorative images on mobile */
  .guide-topmark,
  .guide-bottommark {
    display: none !important;
  }

  /* Installation Steps title */
  .installation-steps-section .section-title {
    position: relative !important;
    width: 90% !important;
    margin: 0 auto 142px !important;
    padding: 0 20px !important;
    left: auto !important;
    top: auto !important;
    font-size: 28px !important;
    line-height: 34px !important;
    text-align: center !important;
    height: auto !important;
  }

  /* Steps container */
  .steps-container {
    position: relative !important;
    width: 100% !important;
    left: auto !important;
    top: auto !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 130px !important;
    padding: 0 20px !important;
  }

  /* Step cards */
  .step-card {
    position: relative !important;
    width: 100% !important;
    max-width: 384px !important;
    height: 264px !important;
    margin: 0 auto !important;
  }

  /* Step icons - keep desktop size */
  .step-icon {
    width: 132px !important;
    height: 132px !important;
    top: -66px !important;
  }

  /* Front icon images - match desktop size */
  .step-icon .icon-front {
    max-width: 31% !important;
  }

  /* Step number */
  .step-number {
    width: 32px !important;
    height: 32px !important;
    font-size: 16px !important;
    left: -16px !important;
  }

  /* Step title */
  .step-title {
    width: 90% !important;
    font-size: 20px !important;
    line-height: 26px !important;
    top: 90px !important;
  }

  /* Step description */
  .step-description {
    width: 90% !important;
    font-size: 13px !important;
    line-height: 17px !important;
    top: 130px !important;
  }

  /* Hide reflection image on mobile */
  .steps-reflection {
    display: none !important;
  }

  /* Black line dividers */
  .step-card::after {
    bottom: -30px !important;
  }
}
}
}