/* ========================================
   WIFIZONE MANAGER - Landing Page Styles
   ======================================== */

/* ========== CSS Variables ========== */
:root {
    /* Primary Colors - Blue Theme */
    --primary-color: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #3b82f6;
    --primary-gradient: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);

    /* Blue Theme Variants */
    --blue-50: #eff6ff;
    --blue-100: #dbeafe;
    --blue-200: #bfdbfe;
    --blue-300: #93c5fd;
    --blue-400: #60a5fa;
    --blue-500: #3b82f6;
    --blue-600: #2563eb;
    --blue-700: #1d4ed8;
    --blue-800: #1e40af;
    --blue-900: #1e3a8a;
    --blue-950: #172554;

    /* Button Colors - Blue */
    --btn-primary: #2563eb;
    --btn-primary-hover: #1d4ed8;
    --btn-light: #ffffff;
    --btn-light-hover: #f8fafc;

    /* Secondary Colors */
    --secondary-color: #10b981;
    --secondary-dark: #059669;
    --secondary-light: #34d399;

    /* Accent Colors */
    --accent-red: #ef4444;
    --accent-purple: #8b5cf6;
    --accent-orange: #f59e0b;

    /* Neutral Colors */
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;

    /* WhatsApp Green */
    --whatsapp-green: #25D366;

    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Inter', sans-serif;

    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 20px;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-primary: 0 10px 40px rgba(37, 99, 235, 0.3);
    --shadow-blue: 0 10px 40px rgba(37, 99, 235, 0.4);

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Z-index */
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-modal: 400;
    --z-tooltip: 500;
}

/* ========== Reset & Base ========== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-secondary);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray-700);
    background-color: var(--white);
    overflow-x: hidden;
    width: 100%;
    min-width: 100%;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

input, select, textarea {
    font-family: inherit;
    font-size: inherit;
}

/* ========== Utility Classes ========== */
.container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: var(--container-padding);
}

.highlight {
    color: var(--primary-color);
}

.highlight-gradient {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-success {
    color: var(--secondary-color) !important;
}

.text-danger {
    color: var(--accent-red) !important;
}

/* ========== Buttons ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 28px;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: var(--transition-normal);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn i {
    font-size: 1.1em;
}

.btn-primary {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: var(--white);
    box-shadow: 0 10px 40px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 50px rgba(37, 99, 235, 0.4);
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
}

.btn-outline {
    background: transparent;
    color: #2563eb;
    border-color: #2563eb;
}

.btn-outline:hover {
    background: #2563eb;
    color: var(--white);
}

/* Light blue button variant */
.btn-blue-light {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    color: #1e40af;
    box-shadow: 0 10px 40px rgba(219, 234, 254, 0.3);
}

.btn-blue-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 50px rgba(219, 234, 254, 0.4);
    background: linear-gradient(135deg, #bfdbfe 0%, #93c5fd 100%);
}

/* White button for dark backgrounds (Hero) */
.btn-light {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    color: #1e40af;
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.3);
}

.btn-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 50px rgba(255, 255, 255, 0.5);
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

/* CTA Success Button - Green Emerald (Action/Money) */
.btn-success, .btn-cta {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: var(--white);
    box-shadow: 0 10px 40px rgba(16, 185, 129, 0.4);
    font-weight: 700;
}

.btn-success:hover, .btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(16, 185, 129, 0.5);
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

/* Pulsing effect for main CTA */
.btn-cta-pulse {
    animation: ctaPulse 2s ease-in-out infinite;
}

@keyframes ctaPulse {
    0%, 100% {
        box-shadow: 0 10px 40px rgba(16, 185, 129, 0.4);
    }
    50% {
        box-shadow: 0 10px 60px rgba(16, 185, 129, 0.6), 0 0 30px rgba(16, 185, 129, 0.3);
    }
}

/* Outline light for dark backgrounds */
.btn-outline-light {
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

.btn-outline-light:hover {
    background: #ffffff;
    color: #1e40af;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
}

/* ========== Section Styling ========== */
section {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
}

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

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(29, 78, 216, 0.1) 100%);
    color: #2563eb;
    font-family: var(--font-primary);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--gray-500);
}

/* ========== Navbar ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 500;
    padding: 15px 0;
    transition: var(--transition-normal);
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar.scrolled {
    background: var(--white);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    padding: 10px 0;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.logo-img {
    height: 38px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    font-family: var(--font-primary);
    font-weight: 700;
}

.logo-wifi {
    font-size: 0.85rem;
    color: #2563eb;
    letter-spacing: 1px;
}

.logo-manager {
    font-size: 0.7rem;
    color: #1e40af;
    letter-spacing: 2px;
    font-weight: 600;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-link {
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-700);
    position: relative;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: var(--transition-normal);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.nav-buttons .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
    white-space: nowrap;
}

/* Mobile nav right container */
.mobile-nav-right {
    display: none;
    align-items: center;
    gap: 12px;
}

.mobile-only {
    display: none;
}

.desktop-only {
    display: flex;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    z-index: calc(var(--z-modal) + 10);
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--gray-700);
    border-radius: 2px;
    transition: var(--transition-normal);
}

/* Language Dropdown (in navbar) */
.language-dropdown {
    position: relative;
    z-index: var(--z-dropdown);
}

.language-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-full);
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray-700);
    transition: var(--transition-fast);
    white-space: nowrap;
}

.language-dropdown-toggle:hover {
    background: var(--gray-200);
}

.language-dropdown-toggle .fa-chevron-down {
    font-size: 0.55rem;
    transition: transform var(--transition-fast);
    color: var(--gray-500);
}

.language-dropdown.open .language-dropdown-toggle .fa-chevron-down {
    transform: rotate(180deg);
}

.lang-flag {
    width: 20px;
    height: 14px;
    object-fit: cover;
    border-radius: 2px;
    flex-shrink: 0;
}

.language-dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    min-width: 150px;
    z-index: var(--z-dropdown);
}

.language-dropdown.open .language-dropdown-menu {
    display: block;
}

.language-dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-700);
    cursor: pointer;
    transition: background var(--transition-fast);
    text-decoration: none;
    white-space: nowrap;
}

.language-dropdown-item:hover {
    background: var(--gray-50);
}

.language-dropdown-item.active {
    background: var(--blue-50);
    color: var(--primary-color);
    font-weight: 600;
    cursor: default;
}

/* ========== Hero Section - Dark Blue with White Honeycomb Pattern ========== */
.hero {
    position: relative;
    min-height: 100vh;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #172554 100%);
    overflow: hidden;
    width: 100%;
}

/* Honeycomb/Diamond Pattern - Animated - White translucent on Dark Blue */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='49' viewBox='0 0 28 49'%3E%3Cg fill-rule='evenodd'%3E%3Cg id='hexagons' fill='%23ffffff' fill-opacity='0.08'%3E%3Cpath d='M13.99 9.25l13 7.5v15l-13 7.5L1 31.75v-15l12.99-7.5zM3 17.9v12.7l10.99 6.34 11-6.35V17.9l-11-6.34L3 17.9zM0 15l12.98-7.5V0h-2v6.35L0 12.69v2.3zm0 18.5L12.98 41v8h-2v-6.85L0 35.81v-2.3zM15 0v7.5L27.99 15H28v-2.31h-.01L17 6.35V0h-2zm0 49v-8l12.99-7.5H28v2.31h-.01L17 42.15V49h-2z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 1;
    animation: hexPulse 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes hexPulse {
    0%, 100% {
        opacity: 0.8;
    }
    50% {
        opacity: 1;
    }
}

/* Subtle blue glow effects */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(96, 165, 250, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.hero-bg-shapes .shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.3;
}

.hero-bg-shapes .shape-1 {
    top: 10%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: rgba(59, 130, 246, 0.4);
    animation: float 8s ease-in-out infinite;
}

.hero-bg-shapes .shape-2 {
    top: 50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(96, 165, 250, 0.3);
    animation: float 10s ease-in-out infinite reverse;
}

.hero-bg-shapes .shape-3 {
    bottom: -10%;
    left: 30%;
    width: 350px;
    height: 350px;
    background: rgba(37, 99, 235, 0.35);
    animation: float 7s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-30px) scale(1.05);
    }
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-full);
    margin-bottom: 20px;
    font-size: 0.85rem;
    color: #ffffff;
    max-width: 100%;
    text-align: center;
}

.hero-badge i {
    color: #93c5fd;
    flex-shrink: 0;
}

.hero-badge span {
    white-space: normal;
    line-height: 1.3;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 25px;
    color: #ffffff;
    text-align: left;
}

/* Light blue gradient for highlighted words */
.hero-title .highlight-gradient {
    color: #93c5fd;
    background: linear-gradient(135deg, #93c5fd 0%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    filter: drop-shadow(0 2px 8px rgba(147, 197, 253, 0.4));
}

/* Alternative: white text */
.hero-title .highlight-white {
    color: #ffffff;
}

/* Light blue text for accent words */
.hero-title .text-beige,
.hero-title .text-blue {
    color: #bfdbfe;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
    line-height: 1.7;
}

/* App Names Colors - Blue variants for dark background */
.app-mikmanager {
    color: #fbbf24;
    font-weight: 700;
}

.app-mywifizone {
    color: #93c5fd;
    font-weight: 700;
}

.app-wifipay {
    color: #4ade80;
    font-weight: 700;
}

.app-vpn {
    color: #60a5fa;
    font-weight: 700;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 25px;
    margin-bottom: 35px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    white-space: nowrap;
}

.hero-feature i {
    color: #93c5fd;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
    width: 100%;
}

.hero-cta .btn {
    flex-shrink: 0;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 5px;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

/* ========================================
   DigiConnect-Style Phone Mockup
   ======================================== */

/* Main wrapper for the phone */
.digi-phone-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

/* Glow Effect Background */
.digi-phone-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 500px;
    background:
        radial-gradient(ellipse at center, rgba(59, 130, 246, 0.25) 0%, transparent 60%),
        radial-gradient(ellipse at 30% 30%, rgba(99, 102, 241, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 70%, rgba(139, 92, 246, 0.15) 0%, transparent 50%);
    filter: blur(40px);
    animation: digiGlowPulse 4s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes digiGlowPulse {
    0%, 100% {
        opacity: 0.7;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* Phone Container with Float Animation */
.digi-phone-container {
    position: relative;
    animation: digiFloat 6s ease-in-out infinite;
}

@keyframes digiFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Phone Frame - Outer shell: GRIS MÉTALLIQUE SOMBRE */
.digi-phone-frame {
    position: relative;
    width: 300px;
    padding: 5px;
    background: linear-gradient(145deg, #3a3f47 0%, #2d3139 50%, #23272e 100%);
    border-radius: 50px;
    box-shadow:
        0 25px 80px rgba(0, 0, 0, 0.6),
        0 10px 30px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* Phone Inner - Screen area container: NOIR intérieur */
.digi-phone-inner {
    position: relative;
    background: #000000;
    border-radius: 46px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    /* Bordure noire visible */
    border: 4px solid #000000;
}

/* Notch / Dynamic Island - Plus large, collé au bord */
.digi-phone-notch {
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 28px;
    background: #000000;
    border-radius: 0 0 18px 18px;
    z-index: 20;
}

/* Camera dot inside notch */
.digi-phone-notch::before {
    content: '';
    position: absolute;
    right: 22px;
    top: 10px;
    width: 10px;
    height: 10px;
    background: radial-gradient(circle, #1a1a2e 0%, #0a0a15 100%);
    border-radius: 50%;
    border: 1px solid #222;
}

/* Screen with Carousel - Le contenu commence SOUS le notch */
.digi-phone-screen {
    position: relative;
    width: 100%;
    height: 580px;
    background: #000000;
    overflow: hidden;
    border-radius: 40px;
}

/* Carousel Container */
.digi-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Individual Slides */
.digi-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
}

.digi-slide.active {
    opacity: 1;
    transform: scale(1);
}

/* Fallback placeholder when no images */
.digi-carousel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(135deg, #1e3a8a 0%, #2563eb 50%, #3b82f6 100%);
    z-index: 0;
}

/* Screen Reflection Overlay */
.digi-screen-reflection {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.08) 0%,
        transparent 40%,
        transparent 60%,
        rgba(255, 255, 255, 0.03) 100%
    );
    pointer-events: none;
    z-index: 15;
}

/* Home Indicator - Zone TRANSPARENTE avec trait gris solide */
.digi-home-indicator {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 130px;
    height: 5px;
    background: #6b7280;
    border-radius: 3px;
    z-index: 25;
}

/* Physical Buttons - Left side (gris métallique sombre) */
.digi-btn-silent {
    position: absolute;
    left: -3px;
    top: 100px;
    width: 3px;
    height: 25px;
    background: linear-gradient(180deg, #3a3f47 0%, #2d3139 100%);
    border-radius: 2px 0 0 2px;
}

.digi-btn-volume-up {
    position: absolute;
    left: -3px;
    top: 150px;
    width: 3px;
    height: 50px;
    background: linear-gradient(180deg, #3a3f47 0%, #2d3139 100%);
    border-radius: 2px 0 0 2px;
}

.digi-btn-volume-down {
    position: absolute;
    left: -3px;
    top: 210px;
    width: 3px;
    height: 50px;
    background: linear-gradient(180deg, #3a3f47 0%, #2d3139 100%);
    border-radius: 2px 0 0 2px;
}

/* Physical Button - Right side (Power) */
.digi-btn-power {
    position: absolute;
    right: -3px;
    top: 170px;
    width: 3px;
    height: 70px;
    background: linear-gradient(180deg, #3a3f47 0%, #2d3139 100%);
    border-radius: 0 2px 2px 0;
}

/* Carousel Navigation Dots */
.digi-carousel-nav {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 25px;
}

.digi-carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.digi-carousel-dot.active {
    width: 28px;
    border-radius: 5px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.5);
}

.digi-carousel-dot:hover:not(.active) {
    background: rgba(255, 255, 255, 0.5);
}

/* Slide Label */
.digi-slide-label {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 10px;
    letter-spacing: 0.5px;
}

/* Payment Notification positioned for new mockup */
.digi-phone-wrapper .payment-notification {
    position: absolute;
    top: 12%;
    right: -35%;
    z-index: 30;
}

/* ========================================
   Legacy Phone Mockup (kept for compatibility)
   ======================================== */

/* DigiConnect-style Luminous Animated Smartphone */
.phone-mockup {
    position: relative;
    width: 300px;
    animation: phoneFloat 4s ease-in-out infinite;
    perspective: 1200px;
}

@keyframes phoneFloat {
    0%, 100% {
        transform: translateY(0) rotateY(-3deg) rotateX(2deg);
    }
    50% {
        transform: translateY(-15px) rotateY(3deg) rotateX(-2deg);
    }
}

/* iPhone Frame and Carousel - DigiConnect Realistic Style */
.iphone-frame {
    position: relative;
    width: 100%;
    transform-style: preserve-3d;
}

.iphone-body {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.6))
            drop-shadow(0 10px 25px rgba(59, 130, 246, 0.2));
    transition: all 0.5s ease;
}

.phone-mockup:hover .iphone-body {
    filter: drop-shadow(0 35px 70px rgba(0, 0, 0, 0.7))
            drop-shadow(0 15px 35px rgba(59, 130, 246, 0.35));
}

/* Luminous Glow Effect - Blue style */
.phone-mockup::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -30%;
    width: 160%;
    height: 160%;
    background:
        radial-gradient(ellipse at center, rgba(59, 130, 246, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 30% 20%, rgba(96, 165, 250, 0.15) 0%, transparent 40%),
        radial-gradient(ellipse at 70% 80%, rgba(147, 197, 253, 0.1) 0%, transparent 40%);
    pointer-events: none;
    animation: phoneGlow 3s ease-in-out infinite alternate;
    z-index: -1;
}

@keyframes phoneGlow {
    0% {
        opacity: 0.6;
        transform: scale(0.95);
    }
    100% {
        opacity: 1;
        transform: scale(1.05);
    }
}

/* Secondary glow ring */
.phone-mockup::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, transparent 60%);
    pointer-events: none;
    animation: pulseRing 2s ease-in-out infinite;
    z-index: -1;
}

@keyframes pulseRing {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.8;
    }
}

.phone-carousel {
    position: absolute;
    top: 1.5%;
    left: 3.2%;
    width: 93.6%;
    height: 97%;
    border-radius: 45px;
    overflow: hidden;
    background: linear-gradient(180deg, #1a1a2e 0%, #0f0f1a 100%);
}

.carousel-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
    border-radius: 45px;
    transform: scale(1.02);
}

.carousel-slide.active {
    opacity: 1;
    transform: scale(1);
}

.carousel-dots {
    position: absolute;
    bottom: 8%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 10;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: #3b82f6;
    width: 24px;
    border-radius: 4px;
    box-shadow: 0 0 12px rgba(59, 130, 246, 0.6);
}

.phone-screen {
    width: 100%;
    border-radius: 35px;
    box-shadow: var(--shadow-2xl);
}

.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-700);
    animation: floatCard 3s ease-in-out infinite;
}

.floating-card i {
    font-size: 1.2rem;
}

.floating-card.card-1 {
    top: 10%;
    right: -20%;
    animation-delay: 0s;
}

.floating-card.card-1 i {
    color: #3b82f6;
}

.floating-card.card-2 {
    bottom: 30%;
    left: -25%;
    animation-delay: 1s;
}

.floating-card.card-2 i {
    color: var(--secondary-color);
}

.floating-card.card-3 {
    bottom: 10%;
    right: -15%;
    animation-delay: 2s;
}

.floating-card.card-3 i {
    color: var(--accent-purple);
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.no-tickets-badge {
    position: absolute;
    bottom: -10%;
    left: -10%;
    text-align: center;
}

.tickets-image {
    position: relative;
    width: 150px;
    margin-bottom: 10px;
}

.tickets-image img {
    width: 100%;
    border-radius: var(--radius-md);
    opacity: 0.7;
}

.cross-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: rgba(239, 68, 68, 0.15);
    border: 3px solid var(--accent-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cross-overlay i {
    font-size: 1.2rem;
    color: var(--accent-red);
}

.no-tickets-badge span {
    display: block;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1rem;
    color: var(--accent-red);
}

/* Floating Payment Notification on Phone */
.payment-notification {
    position: absolute;
    top: 15%;
    right: -30%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: var(--radius-lg);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.4), 0 5px 15px rgba(0, 0, 0, 0.2);
    animation: paymentPop 3s ease-in-out infinite;
    z-index: 20;
    min-width: 200px;
}

.payment-notification::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, rgba(255,255,255,0.3), transparent);
    border-radius: inherit;
    z-index: -1;
}

.payment-notification-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.payment-notification-icon i {
    font-size: 1.2rem;
    color: #ffffff;
}

.payment-notification-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.payment-notification-label {
    font-size: 0.7rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.payment-notification-amount {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 800;
    color: #ffffff;
}

.payment-notification-status {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 4px;
}

.payment-notification-status i {
    font-size: 0.7rem;
}

@keyframes paymentPop {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
    10% {
        transform: translateY(-5px) scale(1.02);
    }
    50% {
        transform: translateY(-8px) scale(1);
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
}

/* Trust Stats Bar - After Hero */
.trust-stats-bar {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    padding: 30px 0;
    position: relative;
    overflow: hidden;
}

.trust-stats-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='49' viewBox='0 0 28 49'%3E%3Cg fill-rule='evenodd'%3E%3Cg id='hexagons' fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M13.99 9.25l13 7.5v15l-13 7.5L1 31.75v-15l12.99-7.5zM3 17.9v12.7l10.99 6.34 11-6.35V17.9l-11-6.34L3 17.9zM0 15l12.98-7.5V0h-2v6.35L0 12.69v2.3zm0 18.5L12.98 41v8h-2v-6.85L0 35.81v-2.3zM15 0v7.5L27.99 15H28v-2.31h-.01L17 6.35V0h-2zm0 49v-8l12.99-7.5H28v2.31h-.01L17 42.15V49h-2z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.trust-stats-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.trust-stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 0;
}

.trust-stat-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trust-stat-icon i {
    font-size: 1.3rem;
    color: #60a5fa;
}

.trust-stat-content {
    display: flex;
    flex-direction: column;
}

.trust-stat-number {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
}

.trust-stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.trust-stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: 120px;
}

.hero-wave path {
    fill: var(--white);
}

/* ========== Problem Section - Light Blue ========== */
.problem-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, #eff6ff 0%, #dbeafe 100%);
}

.problem-section .section-header h2 {
    color: #1e3a8a;
}

.problem-section .section-badge {
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.problem-card {
    padding: 35px 25px;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition-normal);
    border: 2px solid transparent;
}

.problem-card:hover {
    background: var(--white);
    border-color: var(--accent-red);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.problem-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(239, 68, 68, 0.2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.problem-icon i {
    font-size: 1.8rem;
    color: var(--accent-red);
}

.problem-card h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--gray-800);
}

.problem-card p {
    font-size: 0.95rem;
    color: var(--gray-500);
    line-height: 1.6;
}

/* ========== Solution Section - Blue Medium ========== */
.solution-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
}

.solution-section .section-badge {
    background: rgba(37, 99, 235, 0.15);
    color: #1d4ed8;
}

.solution-section h2 {
    color: #1a1a1a;
}

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

.solution-text .lead {
    font-size: 1.15rem;
    color: var(--gray-600);
    margin-bottom: 35px;
}

.solution-points {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.solution-point {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.solution-point:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.point-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.point-icon i {
    font-size: 1.3rem;
    color: var(--white);
}

.point-content h4 {
    font-size: 1.05rem;
    margin-bottom: 8px;
    color: var(--gray-800);
}

.point-content p {
    font-size: 0.95rem;
    color: var(--gray-500);
    line-height: 1.5;
}

/* Comparison Box */
.comparison-box {
    display: flex;
    gap: 0;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.comparison-before,
.comparison-after {
    flex: 1;
    padding: 35px 30px;
}

.comparison-before {
    background: var(--gray-100);
}

.comparison-before h4 {
    color: var(--accent-red);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.comparison-before h4 i {
    margin-right: 8px;
}

.comparison-after {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(16, 185, 129, 0.1) 100%);
}

.comparison-after h4 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.comparison-after h4 i {
    margin-right: 8px;
}

.comparison-before ul li,
.comparison-after ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-size: 0.95rem;
    color: var(--gray-700);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.comparison-before ul li:last-child,
.comparison-after ul li:last-child {
    border-bottom: none;
}

.comparison-before ul li i {
    color: var(--accent-red);
    font-size: 0.9rem;
}

.comparison-after ul li i {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

/* ========== Apps Section ========== */
/* ========== Apps Section - Same as Hero (Dark Blue with White Honeycomb) ========== */
.apps-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #172554 100%);
    position: relative;
    overflow: hidden;
}

/* White Honeycomb Pattern - Same as Hero */
.apps-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='49' viewBox='0 0 28 49'%3E%3Cg fill-rule='evenodd'%3E%3Cg id='hexagons' fill='%23ffffff' fill-opacity='0.08'%3E%3Cpath d='M13.99 9.25l13 7.5v15l-13 7.5L1 31.75v-15l12.99-7.5zM3 17.9v12.7l10.99 6.34 11-6.35V17.9l-11-6.34L3 17.9zM0 15l12.98-7.5V0h-2v6.35L0 12.69v2.3zm0 18.5L12.98 41v8h-2v-6.85L0 35.81v-2.3zM15 0v7.5L27.99 15H28v-2.31h-.01L17 6.35V0h-2zm0 49v-8l12.99-7.5H28v2.31h-.01L17 42.15V49h-2z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 1;
    animation: hexPulse 8s ease-in-out infinite;
    pointer-events: none;
}

.apps-section .section-header {
    position: relative;
    z-index: 1;
}

.apps-section .section-badge {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

.apps-section .section-header h2 {
    color: var(--white);
}

.apps-section .section-header p {
    color: rgba(255, 255, 255, 0.7);
}

.apps-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    position: relative;
    z-index: 1;
}

.app-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.app-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.app-card.featured {
    background: rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.4);
    transform: scale(1.05);
}

.app-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.app-featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 16px;
    background: var(--primary-gradient);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.app-card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.app-mikmanager-card .app-card-icon {
    background: linear-gradient(135deg, rgba(248, 113, 113, 0.2) 0%, rgba(239, 68, 68, 0.3) 100%);
    color: #f87171;
}

.app-mywifizone-card .app-card-icon {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(37, 99, 235, 0.3) 100%);
    color: #60a5fa;
}

.app-wifipay-card .app-card-icon {
    background: linear-gradient(135deg, rgba(74, 222, 128, 0.2) 0%, rgba(34, 197, 94, 0.3) 100%);
    color: #4ade80;
}

.app-vpn-card .app-card-icon {
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.2) 0%, rgba(59, 130, 246, 0.3) 100%);
    color: #60a5fa;
}

.app-wireguard-card .app-card-icon {
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.2) 0%, rgba(139, 92, 246, 0.3) 100%);
    color: #a78bfa;
}

.app-card:hover .app-card-icon {
    transform: scale(1.1);
}

.app-card-content {
    flex: 1;
}

.app-card-content h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.app-card-tagline {
    color: var(--primary-color);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.app-card-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.app-card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    text-align: left;
}

.app-card-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

.app-card-features li i {
    color: var(--secondary-color);
    font-size: 0.7rem;
}

.app-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: auto;
}

.app-card-btn:hover {
    background: var(--primary-gradient);
    border-color: transparent;
}

.apps-cta {
    text-align: center;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.apps-cta p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.apps-cta p i {
    color: var(--primary-color);
}

/* Apps Section Responsive */
@media (max-width: 1400px) {
    .apps-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .app-card.featured {
        transform: none;
    }

    .app-card.featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .apps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .app-card {
        padding: 25px 15px;
    }

    .app-card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .app-card-content h3 {
        font-size: 1.1rem;
    }

    .app-card-desc {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .apps-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin: 0 auto;
    }
}

/* ========== Features Section - Light Blue ========== */
.features-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, #eff6ff 0%, #dbeafe 100%);
}

.features-section .section-badge {
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
}

.features-section .section-header h2 {
    color: #1e3a8a;
}

/* Feature Blocks - New Design */
.feature-block {
    margin-bottom: 60px;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--gray-100);
}

.feature-block:last-child {
    margin-bottom: 0;
}

.feature-block-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 2px solid var(--gray-100);
}

.feature-block-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-block-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.feature-block-icon.icon-green {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
}

.feature-block-icon.icon-orange {
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
}

.feature-block-icon.icon-purple {
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
}

.feature-block-title h3 {
    font-size: 1.5rem;
    color: var(--gray-800);
    margin-bottom: 5px;
}

.feature-block-title p {
    font-size: 1rem;
    color: var(--gray-500);
    margin: 0;
}

.feature-block-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--gray-50);
    border-radius: var(--radius-md);
    padding: 25px;
    transition: var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    background: var(--white);
}

.feature-card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.feature-card-icon i {
    font-size: 1.3rem;
    color: var(--primary-color);
}

.feature-card-icon.icon-green {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(52, 211, 153, 0.1) 100%);
}

.feature-card-icon.icon-green i {
    color: #10b981;
}

.feature-card-icon.icon-orange {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(251, 191, 36, 0.1) 100%);
}

.feature-card-icon.icon-orange i {
    color: #f59e0b;
}

.feature-card-icon.icon-purple {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(167, 139, 250, 0.1) 100%);
}

.feature-card-icon.icon-purple i {
    color: #8b5cf6;
}

.feature-card h4 {
    font-size: 1.05rem;
    margin-bottom: 10px;
    color: var(--gray-800);
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.6;
    margin: 0;
}

/* ========== How It Works - Blue Medium ========== */
.how-it-works {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
}

.how-it-works .section-badge {
    background: rgba(37, 99, 235, 0.15);
    color: #1d4ed8;
}

.how-it-works .section-header h2 {
    color: #1e3a8a;
}

.steps-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.step-card {
    position: relative;
    width: 280px;
    padding: 40px 30px;
    background: var(--white);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 20px auto;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.step-card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    color: var(--gray-800);
}

.step-card p {
    font-size: 0.95rem;
    color: var(--gray-500);
}

.step-connector {
    color: var(--gray-300);
    font-size: 1.5rem;
}

.how-it-works-cta {
    text-align: center;
}

/* ========== Pricing Section - Light Blue ========== */
.pricing-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, #eff6ff 0%, #dbeafe 100%);
}

.pricing-section .section-badge {
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
}

.pricing-section .section-header h2 {
    color: #1e3a8a;
}

/* New Pricing Cards Grid */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1320px;
    margin: 0 auto 40px;
}

/* 4 Cards Grid */
.pricing-cards-4 {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 100%;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px 25px;
    box-shadow: var(--shadow-lg);
    position: relative;
    transition: var(--transition-normal);
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
}

/* Trial Card */
.pricing-card-trial {
    border: 2px solid #10b981;
}

.pricing-card-trial .pricing-card-badge,
.badge-trial {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

/* Featured/Popular Card */
.pricing-card-featured {
    border: 3px solid #2563eb;
    transform: scale(1.02);
    z-index: 2;
}

.pricing-card-featured:hover {
    transform: scale(1.02) translateY(-10px);
}

/* Pro Card */
.pricing-card-pro {
    border: 2px solid #8b5cf6;
}

.pricing-card-pro .pricing-card-badge,
.badge-pro {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

/* Enterprise Card */
.pricing-card-enterprise {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: var(--white);
}

.badge-enterprise {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.pricing-card-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray-100);
}

.pricing-card-enterprise .pricing-card-header {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.pricing-card-badge {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.pricing-card-enterprise .pricing-card-badge {
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
}

.pricing-card-header h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
    color: var(--gray-800);
}

.pricing-card-enterprise .pricing-card-header h3 {
    color: var(--white);
}

.pricing-card-subtitle {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin: 0;
}

.pricing-card-enterprise .pricing-card-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.pricing-card-price {
    text-align: center;
    margin-bottom: 20px;
}

.price-amount {
    display: block;
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 800;
    color: #1e40af;
}

.pricing-card-enterprise .price-amount {
    color: #93c5fd;
}

.price-period {
    display: block;
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-top: 5px;
}

.pricing-card-enterprise .price-period {
    color: rgba(255, 255, 255, 0.6);
}

.pricing-card-desc {
    text-align: center;
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-bottom: 25px;
    line-height: 1.6;
}

.pricing-card-enterprise .pricing-card-desc {
    color: rgba(255, 255, 255, 0.7);
}

.pricing-card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.pricing-card-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    font-size: 0.9rem;
    color: var(--gray-600);
    border-bottom: 1px solid var(--gray-50);
}

.pricing-card-enterprise .pricing-card-features li {
    color: rgba(255, 255, 255, 0.8);
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.pricing-card-features li:last-child {
    border-bottom: none;
}

.pricing-card-features li i {
    color: var(--secondary-color);
    margin-top: 3px;
    flex-shrink: 0;
}

.pricing-card-enterprise .pricing-card-features li i {
    color: #4ade80;
}

/* Pricing Examples */
.pricing-examples {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: var(--gray-50);
    padding: 15px;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    text-align: center;
}

.pricing-examples span {
    font-size: 0.85rem;
    color: var(--gray-600);
    font-weight: 500;
}

/* Pricing Bonus */
.pricing-bonus {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.1) 100%);
    border: 1px dashed #10b981;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
}

.pricing-bonus i {
    color: #10b981;
    font-size: 1rem;
}

.pricing-bonus span {
    font-size: 0.8rem;
    color: #059669;
    font-weight: 600;
}

/* Auto margin-top for buttons in flex cards */
.pricing-card .btn-block {
    margin-top: auto;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

.pricing-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: var(--radius-md);
    max-width: 700px;
    margin: 0 auto;
}

.pricing-note i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.pricing-note p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--gray-600);
}

.pricing-note a {
    color: var(--primary-color);
    font-weight: 600;
}

/* Responsive Pricing Cards */
@media (max-width: 1400px) {
    .pricing-cards-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        max-width: 900px;
    }

    .pricing-card-featured {
        transform: none;
    }

    .pricing-card-featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .pricing-cards,
    .pricing-cards-4 {
        grid-template-columns: 1fr;
        max-width: 450px;
    }

    .pricing-card-trial {
        order: -2;
    }

    .pricing-card-featured {
        order: -1;
    }

    .pricing-card {
        padding: 25px 20px;
    }

    .price-amount {
        font-size: 1.6rem;
    }
}

/* ========== Coverage Map Section - Dark Blue ========== */
.coverage-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, #1e3a8a 0%, #172554 100%);
    position: relative;
    overflow: hidden;
}

.coverage-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='49' viewBox='0 0 28 49'%3E%3Cg fill-rule='evenodd'%3E%3Cg id='hexagons' fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M13.99 9.25l13 7.5v15l-13 7.5L1 31.75v-15l12.99-7.5zM3 17.9v12.7l10.99 6.34 11-6.35V17.9l-11-6.34L3 17.9zM0 15l12.98-7.5V0h-2v6.35L0 12.69v2.3zm0 18.5L12.98 41v8h-2v-6.85L0 35.81v-2.3zM15 0v7.5L27.99 15H28v-2.31h-.01L17 6.35V0h-2zm0 49v-8l12.99-7.5H28v2.31h-.01L17 42.15V49h-2z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.coverage-section .section-badge {
    background: rgba(147, 197, 253, 0.2);
    color: #93c5fd;
}

.coverage-section .section-header h2 {
    color: var(--white);
}

.coverage-section .section-header p {
    color: rgba(255, 255, 255, 0.7);
}

.coverage-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 50px;
}

.coverage-map {
    position: relative;
}

.map-container {
    position: relative;
    max-width: 450px;
    margin: 0 auto;
}

/* World Map Container - wider for world map */
.world-map-container {
    max-width: 100%;
    width: 100%;
}

.world-map {
    width: 100%;
    height: auto;
    max-height: 350px;
}

.world-map .continent {
    stroke: rgba(147, 197, 253, 0.3);
    stroke-width: 1.5;
    filter: drop-shadow(0 0 15px rgba(96, 165, 250, 0.15));
    transition: all 0.3s ease;
}

.world-map .continent:hover {
    fill: rgba(96, 165, 250, 0.2);
}

/* Location Markers */
.world-map .marker {
    cursor: pointer;
    transition: all 0.3s ease;
}

.world-map .marker:hover {
    transform: scale(1.2);
}

.world-map .marker use {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
}

.world-map .marker:hover use {
    filter: drop-shadow(0 4px 8px rgba(96, 165, 250, 0.5));
}

/* Legacy africa map styles */
.africa-map {
    width: 100%;
    height: auto;
}

.africa-map .continent {
    stroke: rgba(147, 197, 253, 0.4);
    stroke-width: 2;
    filter: drop-shadow(0 0 20px rgba(147, 197, 253, 0.2));
}

.africa-map .country-dot {
    fill: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.africa-map .country-dot.active {
    fill: #60a5fa;
    filter: drop-shadow(0 0 8px rgba(96, 165, 250, 0.6));
}

.africa-map .country-dot:hover {
    fill: var(--white);
    transform: scale(1.5);
}

.coverage-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.coverage-stat-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 30px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.coverage-stat-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(147, 197, 253, 0.3);
    transform: translateX(10px);
}

.coverage-stat-card .stat-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.coverage-stat-card .stat-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.coverage-stat-card .stat-content {
    display: flex;
    flex-direction: column;
}

.coverage-stat-card .stat-value {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
}

.coverage-stat-card .stat-name {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.coverage-countries {
    text-align: center;
}

.coverage-countries h4 {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin-bottom: 20px;
}

.country-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.country-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-full);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.country-tag:hover {
    background: rgba(96, 165, 250, 0.2);
    border-color: #60a5fa;
    transform: translateY(-3px);
}

.country-tag img {
    width: 20px;
    height: auto;
    border-radius: 2px;
}

/* Coverage Section Responsive */
@media (max-width: 992px) {
    .coverage-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .coverage-stats {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .coverage-stat-card {
        flex: 1 1 calc(50% - 10px);
        min-width: 200px;
    }

    .coverage-stat-card:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 576px) {
    .coverage-stat-card {
        flex: 1 1 100%;
        padding: 20px;
    }

    .coverage-stat-card .stat-icon {
        width: 50px;
        height: 50px;
    }

    .coverage-stat-card .stat-icon i {
        font-size: 1.2rem;
    }

    .coverage-stat-card .stat-value {
        font-size: 1.5rem;
    }

    .country-tag {
        padding: 8px 14px;
        font-size: 0.8rem;
    }
}

/* ========== Testimonials Section - Blue Light ========== */
.testimonials-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, #eff6ff 0%, #dbeafe 100%);
}

.testimonials-section .section-badge {
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
}

.testimonials-section .section-header h2 {
    color: #1a1a1a;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.trust-indicator {
    text-align: center;
}

.trust-number {
    display: block;
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e40af;
}

.trust-stars {
    margin: 5px 0;
}

.trust-stars i {
    color: #f59e0b;
    font-size: 1rem;
}

.trust-text {
    display: block;
    font-size: 0.9rem;
    color: var(--gray-500);
}

/* Testimonials Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.testimonial-card-new {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-lg);
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.testimonial-card-new:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

.testimonial-card-new.featured {
    border: 2px solid var(--primary-color);
    background: linear-gradient(135deg, #fffbf5 0%, #fff7ed 100%);
}

.featured-label {
    position: absolute;
    top: -12px;
    left: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: var(--primary-gradient);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.testimonial-rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rating-number {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gray-800);
}

.rating-stars i {
    color: #f59e0b;
    font-size: 0.85rem;
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    background: rgba(16, 185, 129, 0.1);
    color: var(--secondary-color);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
}

.verified-badge i {
    font-size: 0.7rem;
}

.testimonial-quote {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 25px;
    flex: 1;
}

.testimonial-quote strong {
    color: var(--primary-color);
    font-weight: 600;
}

.testimonial-footer {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid var(--gray-100);
}

.testimonial-author-new {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.author-avatar {
    position: relative;
    flex-shrink: 0;
}

.author-avatar img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-avatar .country-flag {
    position: absolute;
    bottom: -3px;
    right: -3px;
    font-size: 1.1rem;
    background: var(--white);
    border-radius: 50%;
    padding: 2px;
}

.author-details h4 {
    font-size: 1rem;
    color: var(--gray-800);
    margin-bottom: 2px;
}

.author-role {
    display: block;
    font-size: 0.85rem;
    color: var(--gray-600);
    font-weight: 500;
}

.author-location {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    color: var(--gray-400);
}

.author-location i {
    font-size: 0.7rem;
    color: var(--primary-color);
}

.testimonial-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.testimonial-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: var(--gray-400);
}

.testimonial-meta span i {
    color: var(--primary-color);
    font-size: 0.7rem;
}

/* Testimonials Responsive */
@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-indicators {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }

    .trust-indicators {
        gap: 30px;
    }

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

/* Old testimonial styles (keeping for compatibility) */
.testimonials-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.testimonials-slider::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex: 0 0 380px;
    padding: 35px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    scroll-snap-align: start;
    transition: var(--transition-normal);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.testimonial-stars {
    margin-bottom: 20px;
}

.testimonial-stars i {
    color: #f59e0b;
    font-size: 1.1rem;
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1rem;
    margin-bottom: 3px;
    color: var(--gray-800);
}

.author-info span {
    font-size: 0.85rem;
    color: var(--gray-500);
}

.testimonials-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.nav-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--white);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    transition: var(--transition-normal);
}

.nav-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

.nav-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-300);
    cursor: pointer;
    transition: var(--transition-fast);
}

.dot.active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 5px;
}

/* ========== FAQ Section - Blue Medium ========== */
.faq-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
}

.faq-section .section-badge {
    background: rgba(37, 99, 235, 0.15);
    color: #1e40af;
}

.faq-section .section-header h2 {
    color: #1a1a1a;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-normal);
}

.faq-item:hover {
    border-color: var(--primary-color);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: var(--gray-50);
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-800);
    text-align: left;
    transition: var(--transition-normal);
}

.faq-question:hover {
    background: var(--gray-100);
}

.faq-question i {
    color: var(--primary-color);
    transition: var(--transition-normal);
}

.faq-item.active .faq-question {
    background: var(--primary-color);
    color: var(--white);
}

.faq-item.active .faq-question i {
    color: var(--white);
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 20px 25px;
}

.faq-answer p {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* ========== CTA Section - Dark Blue with Honeycomb ========== */
.cta-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #1e3a8a 0%, #172554 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='49' viewBox='0 0 28 49'%3E%3Cg fill-rule='evenodd'%3E%3Cg id='hexagons' fill='%23ffffff' fill-opacity='0.08'%3E%3Cpath d='M13.99 9.25l13 7.5v15l-13 7.5L1 31.75v-15l12.99-7.5zM3 17.9v12.7l10.99 6.34 11-6.35V17.9l-11-6.34L3 17.9zM0 15l12.98-7.5V0h-2v6.35L0 12.69v2.3zm0 18.5L12.98 41v8h-2v-6.85L0 35.81v-2.3zM15 0v7.5L27.99 15H28v-2.31h-.01L17 6.35V0h-2zm0 49v-8l12.99-7.5H28v2.31h-.01L17 42.15V49h-2z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-content > p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 40px;
}

/* Signup Form */
.signup-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-2xl);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-row.single {
    grid-template-columns: 1fr;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px 20px 15px 50px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: 1rem;
    color: var(--gray-800);
    transition: var(--transition-normal);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.form-group i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-400);
    font-size: 1.1rem;
}

.form-group input::placeholder {
    color: var(--gray-400);
}

.signup-form .btn {
    margin-top: 10px;
}

.cta-trust {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.trust-item i {
    color: var(--secondary-light);
}

/* ========== Footer ========== */
.footer {
    padding: 80px 0 30px;
    background: var(--gray-900);
    color: var(--gray-400);
    width: 100%;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    margin-bottom: 20px;
    display: inline-block;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    border-radius: 10px;
    background: transparent;
}

.footer-brand > p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition-normal);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-links h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 25px;
}

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

.footer-links a {
    font-size: 0.9rem;
    color: var(--gray-400);
}

.footer-links a:hover {
    color: var(--white);
}

/* Visit Counter in Footer */
.footer-visit-counter {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 25px 0;
    margin-bottom: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-visit-counter .visit-counter-label {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
    margin-bottom: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-visit-counter .visit-counter-label i {
    margin-right: 6px;
}

.footer-visit-counter a img {
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: opacity 0.3s ease;
}

.footer-visit-counter a:hover img {
    opacity: 0.85;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
}

.footer-bottom p {
    font-size: 0.9rem;
}

.footer-badges {
    display: flex;
    gap: 15px;
}

.footer-badges img {
    height: 35px;
    opacity: 0.7;
    transition: var(--transition-normal);
}

.footer-badges img:hover {
    opacity: 1;
}

/* ========== Floating Elements ========== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: var(--z-fixed);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--whatsapp-green);
    color: var(--white);
    border-radius: var(--radius-full);
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
    transition: var(--transition-normal);
}

.whatsapp-float i {
    font-size: 1.5rem;
}

.whatsapp-float span {
    font-size: 0.9rem;
    font-weight: 600;
}

.whatsapp-float:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: var(--z-fixed);
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-primary);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
}

/* ========== Responsive Design ========== */
@media (max-width: 1400px) {
    .hero .container {
        gap: 40px;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }

    .footer-grid .footer-brand {
        grid-column: span 4;
    }
}

@media (max-width: 992px) {
    .nav-links,
    .nav-buttons {
        display: none;
    }

    .mobile-nav-right {
        display: flex;
    }

    .mobile-nav-right .mobile-only {
        display: flex;
    }

    .desktop-only {
        display: none !important;
    }

    .hamburger {
        display: flex;
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-content {
        order: 1;
    }

    .hero-visual {
        order: 2;
    }

    .hero-badge {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-features {
        justify-content: center;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .problems-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .solution-content {
        grid-template-columns: 1fr;
    }

    .solution-visual {
        order: -1;
    }

    .feature-block-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-block {
        padding: 30px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid .footer-brand {
        grid-column: span 2;
    }

    /* Trust Stats Bar - Tablet */
    .trust-stats-container {
        gap: 30px;
    }

    .trust-stat-divider {
        display: none;
    }

    /* Payment Notification - Tablet */
    .payment-notification {
        right: -15%;
        min-width: 180px;
        padding: 12px 14px;
    }

    .payment-notification-amount {
        font-size: 1rem;
    }

    /* DigiConnect Phone Mockup - Tablet */
    .digi-phone-frame {
        width: 260px;
    }

    .digi-phone-screen {
        height: 500px;
    }

    .digi-phone-glow {
        width: 300px;
        height: 420px;
    }

    .digi-phone-wrapper .payment-notification {
        right: -20%;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 70px 0;
    }

    .container {
        padding: 0 15px;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    .logo-img {
        height: 30px;
    }

    .logo-text {
        display: flex;
    }

    .logo-wifi {
        font-size: 0.75rem;
    }

    .logo-manager {
        font-size: 0.6rem;
    }

    .hero {
        padding: 80px 0 60px;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 6px 12px;
    }

    .hero-title {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .hero-features {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px 15px;
        text-align: left;
        width: 100%;
    }

    .hero-feature {
        font-size: 0.8rem;
        white-space: normal;
    }

    .hero-feature i {
        font-size: 0.9rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        width: 100%;
    }

    .hero-cta .btn {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
        font-size: 0.95rem;
    }

    .hero-cta .btn-lg {
        padding: 14px 20px;
    }

    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .stat-item {
        min-width: 80px;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .phone-mockup {
        width: 240px;
    }

    .floating-card {
        display: none;
    }

    /* Payment Notification - Mobile */
    .payment-notification {
        position: relative;
        right: auto;
        top: auto;
        margin: 0 auto 20px;
        min-width: auto;
        width: fit-content;
    }

    /* Trust Stats Bar - Mobile */
    .trust-stats-bar {
        padding: 25px 0;
    }

    .trust-stats-container {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .trust-stat-item {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 8px 0;
    }

    .trust-stat-divider {
        display: none;
    }

    .trust-stat-number {
        font-size: 1.5rem;
    }

    .trust-stat-label {
        font-size: 0.8rem;
    }

    .no-tickets-badge {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 30px;
    }

    .problems-grid {
        grid-template-columns: 1fr;
    }

    .steps-container {
        flex-direction: column;
    }

    .step-connector {
        transform: rotate(90deg);
    }

    .comparison-box {
        flex-direction: column;
    }

    .feature-block-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-block {
        padding: 25px 20px;
        margin-bottom: 40px;
    }

    .feature-block-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .feature-block-icon {
        width: 50px;
        height: 50px;
    }

    .feature-block-icon i {
        font-size: 1.3rem;
    }

    .feature-block-title h3 {
        font-size: 1.25rem;
    }

    .feature-card {
        padding: 20px;
    }

    .pricing-features {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .signup-form {
        padding: 25px 15px;
    }

    .cta-content h2 {
        font-size: 1.75rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid .footer-brand {
        grid-column: span 1;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .language-dropdown-toggle {
        padding: 5px 8px;
        font-size: 0.75rem;
    }

    .language-dropdown-toggle span {
        display: none;
    }

    .whatsapp-float span {
        display: none;
    }

    .whatsapp-float {
        padding: 12px;
        border-radius: 50%;
        bottom: 20px;
        left: 15px;
    }

    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 15px;
    }

    /* DigiConnect Phone Mockup - Mobile */
    .digi-phone-frame {
        width: 240px;
        padding: 10px;
        border-radius: 42px;
    }

    .digi-phone-inner {
        border-radius: 36px;
    }

    .digi-phone-screen {
        height: 460px;
    }

    .digi-phone-notch {
        width: 75px;
        height: 20px;
        top: 0;
    }

    .digi-phone-glow {
        width: 280px;
        height: 400px;
    }

    .digi-home-indicator {
        width: 110px;
        height: 4px;
        bottom: 6px;
    }

    .digi-carousel-nav {
        margin-top: 20px;
    }

    .digi-carousel-dot {
        width: 8px;
        height: 8px;
    }

    .digi-carousel-dot.active {
        width: 22px;
    }

    .digi-slide-label {
        font-size: 0.8rem;
    }

    .digi-phone-wrapper .payment-notification {
        position: relative;
        right: auto;
        top: auto;
        margin-top: 20px;
        transform: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    .hero-title {
        font-size: 1.35rem;
    }

    .hero-subtitle {
        font-size: 0.85rem;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
        padding: 0;
    }

    .hero-cta .btn {
        width: 100%;
        box-sizing: border-box;
    }

    .hero-cta .btn-lg {
        padding: 12px 16px;
        font-size: 0.9rem;
    }

    .hero-features {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .logo-img {
        height: 26px;
    }

    .logo-wifi {
        font-size: 0.65rem;
    }

    .logo-manager {
        font-size: 0.5rem;
        letter-spacing: 1.5px;
    }

    .testimonial-card {
        flex: 0 0 280px;
        padding: 25px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 10px 12px;
        font-size: 0.8rem;
    }

    .cta-trust {
        flex-direction: column;
        gap: 12px;
    }

    .section-badge {
        font-size: 0.8rem;
        padding: 6px 16px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .btn-lg {
        padding: 12px 24px;
        font-size: 1rem;
    }
}

/* ========== Mobile Menu (hidden by default) ========== */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: var(--white);
    z-index: 10000;
    flex-direction: column;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
    transition: right 0.3s ease;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--gray-200);
    background: var(--primary-gradient);
}

.mobile-menu-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
}

.mobile-menu-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-links li {
    border-bottom: 1px solid var(--gray-100);
}

.mobile-nav-link {
    display: block;
    padding: 18px 25px;
    font-size: 1.05rem;
    color: var(--gray-700);
    font-weight: 500;
    transition: all 0.2s ease;
}

.mobile-nav-link:hover {
    background: var(--gray-50);
    color: var(--primary-color);
    padding-left: 30px;
}

.mobile-nav-buttons {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-top: 1px solid var(--gray-200);
    background: var(--gray-50);
}

.mobile-nav-buttons .btn {
    width: 100%;
    padding: 14px 20px;
    font-size: 1rem;
    text-align: center;
    justify-content: center;
    border-radius: var(--radius-md);
}

.mobile-nav-buttons .btn-outline {
    background: var(--white);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.mobile-nav-buttons .btn-primary {
    background: var(--primary-gradient);
    color: var(--white);
    border: none;
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
}

.mobile-menu-overlay.active {
    display: block;
}

/* ========== Mobile Navigation ========== */
@media (max-width: 992px) {
    .navbar .container {
        padding: 0 15px;
    }

    /* Show mobile menu structure */
    .mobile-menu {
        display: flex;
    }

    /* Hide desktop nav */
    .nav-links,
    .nav-buttons {
        display: none !important;
    }

    /* Show mobile nav right */
    .mobile-nav-right {
        display: flex;
    }

    /* Hamburger animation */
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
    }
}

/* ========== Animation Classes ========== */
[data-aos] {
    transition-duration: 800ms;
}

/* ========== Print Styles ========== */
@media print {
    .navbar,
    .language-dropdown,
    .whatsapp-float,
    .back-to-top {
        display: none !important;
    }

    .hero {
        min-height: auto;
        padding: 50px 0;
    }

    section {
        page-break-inside: avoid;
    }
}
