        /* ========== CUSTOM PROPERTIES ========== */
        :root {
            /* Colors - Based on Tumbas Logo */
            --primary-color: #0039e6;
            --primary-dark: #0028a3;
            --primary-light: #3366ff;
            --secondary-color: #00d4ff;
            --accent-color: #b8e900;
            --success-color: #10b981;
            --danger-color: #ef4444;

            /* Gradients - Matching Tumbas Brand */
            --gradient-primary: linear-gradient(135deg, #0039e6 0%, #0066ff 100%);
            --gradient-secondary: linear-gradient(135deg, #00d4ff 0%, #00a3cc 100%);
            --gradient-success: linear-gradient(135deg, #b8e900 0%, #8bc700 100%);
            --gradient-warm: linear-gradient(135deg, #0039e6 0%, #00d4ff 100%);

            /* Neutrals */
            --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;

            /* Typography */
            --font-primary: 'DM Sans', system-ui, -apple-system, sans-serif;
            --font-heading: 'Outfit', system-ui, -apple-system, sans-serif;

            /* Spacing */
            --section-padding: 50px;
            --container-padding: 24px;

            /* Effects */
            --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
            --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
            --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

            /* Transitions */
            --transition-fast: 150ms ease;
            --transition-base: 300ms ease;
            --transition-slow: 500ms ease;
        }

        /* ========== GLOBAL STYLES ========== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: var(--font-primary);
            color: var(--gray-700);
            line-height: 1.6;
            overflow-x: hidden;
            background: #ffffff;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: var(--font-heading);
            font-weight: 700;
            line-height: 1.2;
            color: var(--gray-900);
        }

        a {
            text-decoration: none;
            transition: var(--transition-base);
        }

        img {
            max-width: 100%;
            height: auto;
        }

        .gradient-text {
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* ========== NAVIGATION ========== */
        .navbar-modern {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
            padding: 12px 0;
            transition: var(--transition-base);
            z-index: 1000;
        }

        .navbar-modern.scrolled {
            padding: 8px 0;
            box-shadow: var(--shadow-lg);
        }

        .navbar-brand-modern {
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 700;
            color: var(--gray-900);
            transition: var(--transition-base);
            text-decoration: none;
        }

        .navbar-brand-modern:hover {
            color: var(--primary-color);
            transform: translateY(-2px);
        }

        .logo-img {
            height: 48px;
            width: auto;
        }

        .logo-text {
            display: flex;
            flex-direction: column;
            line-height: 1.2;
        }

        .logo-primary {
            font-size: 20px;
            font-weight: 800;
            color: var(--gray-900);
        }

        .logo-secondary {
            font-size: 12px;
            font-weight: 500;
            color: var(--gray-500);
            letter-spacing: 0.5px;
        }

        .navbar-toggler-modern {
            border: none;
            background: transparent;
            padding: 8px;
            cursor: pointer;
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .toggler-line {
            width: 24px;
            height: 2px;
            background: var(--gray-700);
            transition: var(--transition-base);
            border-radius: 2px;
        }

        .navbar-toggler-modern:hover .toggler-line {
            background: var(--primary-color);
        }

        /* Navigation Links */
        .nav-link-modern {
            display: flex;
            align-items: center;
            gap: 4px;
            padding: 10px 16px !important;
            color: var(--gray-700) !important;
            font-weight: 500;
            font-size: 15px;
            border-radius: 8px;
            transition: var(--transition-base);
            position: relative;
        }

        .nav-link-modern::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: var(--gradient-primary);
            transition: var(--transition-base);
        }

        .nav-link-modern:hover,
        .nav-link-modern.active {
            color: var(--primary-color) !important;
            background: var(--gray-50);
        }

        .nav-link-modern:hover::after,
        .nav-link-modern.active::after {
            width: 60%;
        }

        /* Dropdown Menu */
        .dropdown-menu-modern {
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            border: 1px solid var(--gray-200);
            border-radius: 16px;
            padding: 8px;
            box-shadow: var(--shadow-2xl);
            min-width: 280px;
            margin-top: 8px;
        }

        .dropdown-item-modern {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 16px;
            color: var(--gray-700);
            border-radius: 12px;
            transition: var(--transition-base);
            margin-bottom: 4px;
            text-decoration: none;
        }

        .dropdown-item-modern:last-child {
            margin-bottom: 0;
        }

        .dropdown-item-modern:hover {
            background: var(--gray-50);
            color: var(--primary-color);
            transform: translateX(4px);
        }

        .dropdown-item-modern.featured {
            background: linear-gradient(135deg, rgba(0, 57, 230, 0.1) 0%, rgba(0, 102, 255, 0.1) 100%);
            border: 1px solid var(--primary-light);
        }

        .dropdown-icon-wrapper {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--gradient-primary);
            border-radius: 10px;
            color: white;
            font-size: 18px;
            flex-shrink: 0;
        }

        .dropdown-item-modern:hover .dropdown-icon-wrapper {
            transform: scale(1.1) rotate(5deg);
        }

        .dropdown-content {
            flex: 1;
        }

        .dropdown-title {
            font-weight: 600;
            color: var(--gray-900);
            font-size: 14px;
            margin-bottom: 2px;
        }

        .dropdown-desc {
            font-size: 12px;
            color: var(--gray-500);
        }

        .dropdown-divider-modern {
            height: 1px;
            background: var(--gray-200);
            margin: 8px 0;
            border: none;
        }

        /* CTA Button */
        .btn-nav-cta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 24px;
            background: var(--gradient-primary);
            color: white !important;
            border-radius: 12px;
            font-weight: 600;
            font-size: 15px;
            transition: var(--transition-base);
            box-shadow: var(--shadow-md);
            text-decoration: none;
            border: none;
        }

        .btn-nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-xl);
            color: white !important;
        }

        /* ========== HERO SECTION ========== */
        .hero-modern {
            position: relative;
            overflow: hidden;
            padding-top: 80px;
        }

        .hero-background {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: -1;
        }

        .hero-gradient {
            position: absolute;
            top: -50%;
            right: -20%;
            width: 80%;
            height: 150%;
            background: radial-gradient(circle, rgba(0, 57, 230, 0.15) 0%, transparent 70%);
            animation: float 20s ease-in-out infinite;
        }

        .hero-pattern {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image:
                radial-gradient(circle at 20% 50%, rgba(0, 212, 255, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(0, 102, 255, 0.08) 0%, transparent 50%);
        }

        @keyframes float {

            0%,
            100% {
                transform: translate(0, 0) rotate(0deg);
            }

            33% {
                transform: translate(30px, -30px) rotate(5deg);
            }

            66% {
                transform: translate(-20px, 20px) rotate(-5deg);
            }
        }

        .hero-content {
            padding: 60px 0;
        }

        .badge-pill {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 20px;
            background: rgba(0, 57, 230, 0.1);
            border: 1px solid rgba(0, 57, 230, 0.2);
            border-radius: 50px;
            color: var(--primary-color);
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 24px;
            animation: slideInLeft 0.8s ease-out;
        }

        .badge-icon {
            font-size: 18px;
        }

        .hero-title {
            font-size: 56px;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 24px;
            animation: slideInLeft 0.8s ease-out 0.2s both;
        }

        .hero-description {
            font-size: 18px;
            color: var(--gray-600);
            margin-bottom: 32px;
            line-height: 1.7;
            animation: slideInLeft 0.8s ease-out 0.4s both;
        }

        .hero-actions {
            display: flex;
            gap: 16px;
            margin-bottom: 48px;
            flex-wrap: wrap;
            animation: slideInLeft 0.8s ease-out 0.6s both;
        }

        .btn-modern-primary {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 16px 32px;
            background: var(--gradient-primary);
            color: white;
            border-radius: 14px;
            font-weight: 600;
            font-size: 16px;
            transition: var(--transition-base);
            box-shadow: var(--shadow-lg);
        }

        .btn-modern-primary:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-2xl);
            color: white;
        }

        .btn-modern-secondary {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 16px 32px;
            background: white;
            color: var(--gray-700);
            border: 2px solid var(--gray-300);
            border-radius: 14px;
            font-weight: 600;
            font-size: 16px;
            transition: var(--transition-base);
        }

        .btn-modern-secondary:hover {
            border-color: var(--primary-color);
            color: var(--primary-color);
            background: var(--gray-50);
        }

        .hero-stats {
            display: flex;
            align-items: center;
            gap: 24px;
            animation: slideInLeft 0.8s ease-out 0.8s both;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 28px;
            font-weight: 800;
            color: var(--gray-900);
            font-family: var(--font-heading);
        }

        .stat-label {
            font-size: 13px;
            color: var(--gray-500);
            font-weight: 500;
        }

        .stat-divider {
            width: 1px;
            height: 40px;
            background: var(--gray-300);
        }

        .hero-image {
            position: relative;
            animation: slideInRight 0.8s ease-out;
        }

        .image-floating {
            position: relative;
            animation: floatImage 6s ease-in-out infinite;
        }

        @keyframes floatImage {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-20px);
            }
        }

        .image-floating img {
            border-radius: 24px;
            box-shadow: var(--shadow-2xl);
        }

        .floating-card {
            position: absolute;
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 16px 20px;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-radius: 16px;
            box-shadow: var(--shadow-xl);
            animation: floatCard 4s ease-in-out infinite;
        }

        .floating-card i {
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--gradient-primary);
            color: white;
            border-radius: 12px;
            font-size: 20px;
        }

        .card-1 {
            top: 10%;
            right: -10%;
            animation-delay: 0s;
        }

        .card-2 {
            bottom: 15%;
            left: -5%;
            animation-delay: 2s;
        }

        @keyframes floatCard {

            0%,
            100% {
                transform: translateY(0) rotate(0deg);
            }

            50% {
                transform: translateY(-15px) rotate(2deg);
            }
        }

        .card-title {
            font-weight: 700;
            font-size: 18px;
            color: var(--gray-900);
        }

        .card-subtitle {
            font-size: 13px;
            color: var(--gray-500);
        }

        /* Animations */
        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* ========== SERVICES SECTION ========== */
        .services-modern {
            padding: var(--section-padding) 0;
            background: var(--gray-50);
        }

        .section-header {
            margin-bottom: 64px;
        }

        .section-title {
            font-size: 48px;
            font-weight: 800;
            margin-bottom: 16px;
        }

        .section-subtitle {
            font-size: 18px;
            color: var(--gray-600);
        }

        .service-card {
            background: white;
            border-radius: 24px;
            padding: 40px 32px;
            transition: var(--transition-base);
            border: 2px solid transparent;
            height: 100%;
            display: flex;
            flex-direction: column;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-primary);
            transform: scaleX(0);
            transition: var(--transition-base);
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-2xl);
            border-color: var(--gray-200);
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-card .card-icon {
            width: 64px;
            height: 64px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 16px;
            font-size: 28px;
            margin-bottom: 24px;
            transition: var(--transition-base);
        }

        .service-card:hover .card-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .card-blue .card-icon {
            background: linear-gradient(135deg, #0039e6 0%, #0066ff 100%);
            color: white;
        }

        .card-purple .card-icon {
            background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
            color: white;
        }

        .card-orange .card-icon {
            background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
            color: white;
        }

        .card-green .card-icon {
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            color: white;
        }

        .card-red .card-icon {
            background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
            color: white;
        }

        .card-teal .card-icon {
            background: linear-gradient(135deg, #00d4ff 0%, #00a3cc 100%);
            color: white;
        }

        .service-card .card-title {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 12px;
            color: var(--gray-900);
        }

        .service-card .card-description {
            color: var(--gray-600);
            margin-bottom: 24px;
            line-height: 1.7;
        }

        .feature-list {
            list-style: none;
            margin-bottom: 24px;
            flex: 1;
        }

        .feature-list li {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 8px 0;
            color: var(--gray-700);
            font-size: 15px;
        }

        .feature-list i {
            color: var(--success-color);
            font-size: 16px;
            flex-shrink: 0;
        }

        .service-card .card-footer {
            padding-top: 5px;
            border-top: 1px solid var(--gray-200);
        }

        .learn-more {
            color: var(--primary-color);
            font-weight: 600;
            font-size: 15px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: var(--transition-base);
        }

        .learn-more:hover {
            gap: 12px;
        }

        /* ========== BENEFITS SECTION ========== */
        .benefits-section {
            padding: var(--section-padding) 0;
            background: white;
        }

        .benefits-image {
            position: relative;
        }

        .benefits-image img {
            width: 100%;
            max-width: 500px;
        }

        .image-badge {
            position: absolute;
            bottom: 20px;
            left: 20px;
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 16px 24px;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-radius: 16px;
            box-shadow: var(--shadow-xl);
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.05);
            }
        }

        .image-badge i {
            font-size: 24px;
            color: var(--accent-color);
        }

        .image-badge span {
            font-weight: 700;
            color: var(--gray-900);
        }

        .benefits-content .badge-pill {
            margin-bottom: 20px;
        }

        .benefits-title {
            font-size: 42px;
            font-weight: 800;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .benefits-description {
            font-size: 18px;
            color: var(--gray-600);
            margin-bottom: 40px;
            line-height: 1.7;
        }

        .benefits-list {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .benefit-item {
            display: flex;
            gap: 20px;
            padding: 24px;
            background: var(--gray-50);
            border-radius: 16px;
            transition: var(--transition-base);
        }

        .benefit-item:hover {
            background: white;
            box-shadow: var(--shadow-lg);
            transform: translateX(8px);
        }

        .benefit-icon {
            width: 56px;
            height: 56px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--gradient-primary);
            border-radius: 14px;
            color: white;
            font-size: 24px;
            flex-shrink: 0;
        }

        .benefit-text h5 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--gray-900);
        }

        .benefit-text p {
            color: var(--gray-600);
            margin: 0;
            line-height: 1.6;
        }

        /* ========== BUSINESS TYPES SECTION ========== */
        .business-types {
            padding: var(--section-padding) 0;
            background: var(--gray-50);
        }

        .business-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            transition: var(--transition-base);
            box-shadow: var(--shadow-md);
        }

        .business-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-2xl);
        }

        .business-image {
            position: relative;
            overflow: hidden;
            aspect-ratio: 4/3;
        }

        .business-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition-slow);
        }

        .business-card:hover .business-image img {
            transform: scale(1.1);
        }

        .business-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--gradient-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: var(--transition-base);
        }

        .business-overlay i {
            font-size: 48px;
            color: white;
            transform: scale(0);
            transition: var(--transition-base);
        }

        .business-card:hover .business-overlay {
            opacity: 0.9;
        }

        .business-card:hover .business-overlay i {
            transform: scale(1);
        }

        .business-info {
            padding: 24px;
            text-align: center;
        }

        .business-info h5 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--gray-900);
        }

        .business-info p {
            color: var(--gray-600);
            margin: 0;
            font-size: 14px;
        }

        /* ========== CONTACT & SOCIAL MEDIA SECTION ========== */
        .contact-section {
            position: relative;
            padding: var(--section-padding) 0;
            overflow: hidden;
            background: white;
        }

        .contact-background {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 0;
        }

        .contact-gradient {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(0, 57, 230, 0.03) 0%, rgba(0, 212, 255, 0.03) 100%);
        }

        .contact-pattern {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image:
                radial-gradient(circle at 20% 30%, rgba(0, 57, 230, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(0, 212, 255, 0.05) 0%, transparent 50%);
        }

        .contact-header {
            position: relative;
            z-index: 1;
            margin-bottom: 48px;
        }

        .contact-title {
            font-size: 48px;
            font-weight: 800;
            color: var(--gray-900);
            margin-bottom: 16px;
        }

        .contact-subtitle {
            font-size: 18px;
            color: var(--gray-600);
            max-width: 600px;
            margin: 0 auto;
        }

        /* Contact Cards */
        .contact-card {
            position: relative;
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 32px;
            background: white;
            border-radius: 20px;
            border: 2px solid var(--gray-200);
            transition: var(--transition-base);
            text-decoration: none;
            overflow: hidden;
            z-index: 1;
        }

        .contact-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--gradient-primary);
            opacity: 0;
            transition: var(--transition-base);
            z-index: -1;
        }

        .contact-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-2xl);
            border-color: transparent;
        }

        .contact-card:hover::before {
            opacity: 1;
        }

        .contact-card-icon {
            width: 72px;
            height: 72px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--gray-100);
            border-radius: 16px;
            font-size: 32px;
            color: var(--primary-color);
            transition: var(--transition-base);
            flex-shrink: 0;
        }

        .contact-card:hover .contact-card-icon {
            background: rgba(255, 255, 255, 0.2);
            color: white;
            transform: scale(1.1) rotate(5deg);
        }

        .contact-card-content {
            flex: 1;
        }

        .contact-card-content h5 {
            font-size: 22px;
            font-weight: 700;
            color: var(--gray-900);
            margin-bottom: 4px;
            transition: var(--transition-base);
        }

        .contact-card:hover .contact-card-content h5 {
            color: white;
        }

        .contact-card-content p {
            font-size: 14px;
            color: var(--gray-500);
            margin-bottom: 8px;
            transition: var(--transition-base);
        }

        .contact-card:hover .contact-card-content p {
            color: rgba(255, 255, 255, 0.8);
        }

        .contact-value {
            font-size: 16px;
            font-weight: 600;
            color: var(--primary-color);
            transition: var(--transition-base);
        }

        .contact-card:hover .contact-value {
            color: white;
        }

        .contact-card-arrow {
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--gray-100);
            border-radius: 12px;
            font-size: 20px;
            color: var(--primary-color);
            transition: var(--transition-base);
        }

        .contact-card:hover .contact-card-arrow {
            background: rgba(255, 255, 255, 0.2);
            color: white;
            transform: translateX(4px);
        }

        /* WhatsApp Card Specific */
        .contact-card.whatsapp:hover .contact-card-icon {
            background: rgba(255, 255, 255, 0.2);
        }

        /* Email Card Specific */
        .contact-card.email:hover .contact-card-icon {
            background: rgba(255, 255, 255, 0.2);
        }

        /* Social Media Section */
        .social-media-section {
            position: relative;
            z-index: 1;
            margin-top: 64px;
            padding-top: 48px;
            border-top: 2px solid var(--gray-200);
        }

        .social-title {
            text-align: center;
            font-size: 20px;
            font-weight: 700;
            color: var(--gray-900);
            margin-bottom: 32px;
        }

        .social-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
        }

        .social-card {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 16px;
            padding: 32px 24px;
            background: white;
            border: 2px solid var(--gray-200);
            border-radius: 20px;
            transition: var(--transition-base);
            text-decoration: none;
            position: relative;
            overflow: hidden;
        }

        .social-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-primary);
            transform: scaleX(0);
            transition: var(--transition-base);
        }

        .social-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-xl);
            border-color: transparent;
        }

        .social-card:hover::before {
            transform: scaleX(1);
        }

        .social-icon {
            width: 64px;
            height: 64px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--gray-100);
            border-radius: 16px;
            font-size: 28px;
            transition: var(--transition-base);
        }

        .social-card:hover .social-icon {
            transform: scale(1.1) rotate(-5deg);
        }

        .social-name {
            font-size: 18px;
            font-weight: 600;
            color: var(--gray-900);
            transition: var(--transition-base);
        }

        .social-card:hover .social-name {
            color: var(--primary-color);
        }

        .social-badge {
            padding: 6px 16px;
            background: var(--gray-100);
            border-radius: 20px;
            font-size: 13px;
            font-weight: 600;
            color: var(--gray-600);
            transition: var(--transition-base);
        }

        .social-card:hover .social-badge {
            background: var(--gradient-primary);
            color: white;
        }

        /* Social Platform Specific Colors */
        .social-card.facebook:hover::before {
            background: #1877f2;
        }

        .social-card.facebook:hover .social-icon {
            background: #1877f2;
            color: white;
        }

        .social-card.instagram:hover::before {
            background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
        }

        .social-card.instagram:hover .social-icon {
            background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
            color: white;
        }

        .social-card.tiktok:hover::before {
            background: #000000;
        }

        .social-card.tiktok:hover .social-icon {
            background: #000000;
            color: white;
        }

        .social-card.youtube:hover::before {
            background: #ff0000;
        }

        .social-card.youtube:hover .social-icon {
            background: #ff0000;
            color: white;
        }

        /* Responsive */
        @media (max-width: 767px) {
            .contact-title {
                font-size: 32px;
            }

            .contact-card {
                flex-direction: column;
                text-align: center;
            }

            .social-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* ========== FOOTER ========== */
        .footer-modern {
            position: relative;
            background: var(--gray-900);
            color: var(--gray-300);
            padding: 30px 0 0;
            overflow: hidden;
        }

        .footer-background {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 0;
        }

        .footer-gradient {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(0, 57, 230, 0.1) 0%, rgba(0, 102, 255, 0.1) 100%);
        }

        .footer-pattern {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image:
                radial-gradient(circle at 20% 30%, rgba(0, 212, 255, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(0, 102, 255, 0.05) 0%, transparent 50%);
        }

        .footer-content {
            position: relative;
            z-index: 1;
            padding-bottom: 20px;
        }

        .footer-brand {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .footer-logo {
            width: 60px;
            height: auto;
        }

        .footer-brand-name {
            font-size: 24px;
            font-weight: 800;
            color: white;
            margin: 0;
        }

        .footer-tagline {
            color: var(--gray-400);
            line-height: 1.7;
            margin: 0;
        }

        .footer-badges {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            margin-top: 8px;
        }

        .badge-item {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 6px 12px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            font-size: 12px;
            color: var(--gray-300);
        }

        .badge-item i {
            color: var(--primary-light);
        }

        .footer-column {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .footer-title {
            font-size: 18px;
            font-weight: 700;
            color: white;
            margin-bottom: 4px;
        }

        .footer-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
            padding: 0;
            margin: 0;
        }

        .footer-links a {
            color: var(--gray-400);
            transition: var(--transition-base);
            display: inline-flex;
            align-items: center;
        }

        .footer-links a::before {
            content: '→';
            margin-right: 8px;
            opacity: 0;
            transform: translateX(-10px);
            transition: var(--transition-base);
        }

        .footer-links a:hover {
            color: var(--primary-light);
            transform: translateX(4px);
        }

        .footer-links a:hover::before {
            opacity: 1;
            transform: translateX(0);
        }

        .footer-contact {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .contact-item {
            display: flex;
            gap: 16px;
            align-items: flex-start;
        }

        .contact-item i {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            color: var(--primary-light);
            font-size: 16px;
            flex-shrink: 0;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .contact-label {
            font-size: 12px;
            color: var(--gray-500);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .contact-value {
            color: var(--gray-300);
            font-weight: 500;
            transition: var(--transition-base);
        }

        a.contact-value:hover {
            color: var(--primary-light);
        }

        .footer-bottom {
            position: relative;
            z-index: 1;
            padding: 15px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .copyright-text {
            color: var(--gray-400);
            margin: 0;
            font-size: 14px;
        }

        .copyright-text a {
            color: var(--primary-light);
            font-weight: 600;
            transition: var(--transition-base);
        }

        .copyright-text a:hover {
            color: white;
        }

        .footer-bottom-links {
            display: flex;
            gap: 16px;
            justify-content: flex-end;
            align-items: center;
            flex-wrap: wrap;
        }

        .footer-bottom-links a {
            color: var(--gray-400);
            font-size: 14px;
            transition: var(--transition-base);
        }

        .footer-bottom-links a:hover {
            color: var(--primary-light);
        }

        .footer-bottom-links .divider {
            color: var(--gray-600);
        }

        .footer-decoration {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            pointer-events: none;
            z-index: 0;
        }

        .decoration-circle {
            position: absolute;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
        }

        .circle-1 {
            width: 300px;
            height: 300px;
            top: -100px;
            right: -100px;
        }

        .circle-2 {
            width: 200px;
            height: 200px;
            bottom: -50px;
            left: 10%;
        }

        .circle-3 {
            width: 250px;
            height: 250px;
            top: 50%;
            left: -100px;
        }

        /* ========== BACK TO TOP BUTTON ========== */
        .back-to-top {
            position: fixed;
            bottom: 32px;
            right: 32px;
            width: 56px;
            height: 56px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--gradient-primary);
            color: white;
            border: none;
            border-radius: 16px;
            font-size: 20px;
            cursor: pointer;
            transition: var(--transition-base);
            box-shadow: var(--shadow-xl);
            z-index: 999;
            opacity: 0;
            visibility: hidden;
        }

        .back-to-top.show {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-2xl);
        }

        /* ========== RESPONSIVE DESIGN ========== */
        @media (max-width: 991px) {
            :root {
                --section-padding: 50px;
            }

            .navbar {
                background: rgba(255, 255, 255, 0.98);
                backdrop-filter: blur(20px);
                padding: 24px;
                box-shadow: var(--shadow-xl);
            }

            .navbar-collapse {
                position: fixed;
                top: 0;
                right: 0;
                width: 280px;
                height: 100vh;
                background: rgba(255, 255, 255, 0.98);
                backdrop-filter: blur(20px);
                padding: 24px;
                border-radius: 16px;
                margin-top: 16px;
                box-shadow: var(--shadow-xl);
                transform: translateX(100%);
                opacity: 0;
                transition: transform 0.35s ease,
                    opacity 0.25s ease;
                will-change: transform,
                    opacity;
                z-index: 1050;
            }

            .navbar-collapse.show {
                transform: translateX(0);
                opacity: 1;
            }

            .navbar-nav {
                gap: 8px;
            }

            .nav-item {
                width: 100%;
            }

            .nav-link-modern {
                width: 100%;
                justify-content: flex-start;
            }

            .dropdown-menu-modern {
                border: none;
                box-shadow: none;
                background: var(--gray-50);
                margin-top: 8px;
            }

            .btn-nav-cta {
                width: 100%;
                justify-content: center;
                margin-top: 16px;
            }

            .hero-title {
                font-size: 40px;
            }

            .section-title {
                font-size: 36px;
            }

            .benefits-title,
            .cta-title {
                font-size: 32px;
            }

            .hero-stats {
                flex-wrap: wrap;
                gap: 16px;
            }

            .floating-card {
                display: none;
            }
        }

        @media (max-width: 575px) {
            .hero-title {
                font-size: 32px;
            }

            .section-title {
                font-size: 28px;
            }

            .benefits-title,
            .contact-title {
                font-size: 26px;
            }

            .hero-actions {
                flex-direction: column;
            }

            .btn-modern-primary,
            .btn-modern-secondary {
                width: 100%;
                justify-content: center;
            }

            .footer-bottom-links {
                justify-content: center;
                margin-top: 16px;
            }

            .social-grid {
                grid-template-columns: 1fr;
            }

            .contact-card {
                padding: 24px;
            }
        }

        /* ========== UTILITY CLASSES ========== */
        .text-gradient {
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .shadow-soft {
            box-shadow: var(--shadow-md);
        }

        .shadow-hard {
            box-shadow: var(--shadow-2xl);
        }

        .rounded-lg {
            border-radius: 16px;
        }

        .rounded-xl {
            border-radius: 24px;
        }

        /* ========== PRODUCT PAGES (UNLIMITED, STOCK, CASH) ========== */

        /* Product Hero */
        .product-hero {
            padding-top: 80px;
        }

        .unlimited-hero .hero-gradient {
            background: radial-gradient(circle, rgba(0, 57, 230, 0.12) 0%, transparent 70%);
        }

        /* Features Overview */
        .features-overview {
            padding: var(--section-padding) 0;
            background: white;
        }

        .feature-box {
            padding: 32px;
            background: white;
            border: 2px solid var(--gray-200);
            border-radius: 20px;
            transition: var(--transition-base);
            height: 100%;
        }

        .feature-box:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-xl);
            border-color: var(--primary-color);
        }

        .feature-icon {
            width: 72px;
            height: 72px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--gradient-primary);
            border-radius: 16px;
            color: white;
            font-size: 32px;
            margin-bottom: 24px;
            transition: var(--transition-base);
        }

        .feature-box:hover .feature-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .feature-box h4 {
            font-size: 20px;
            font-weight: 700;
            color: var(--gray-900);
            margin-bottom: 12px;
        }

        .feature-box p {
            color: var(--gray-600);
            margin: 0;
            line-height: 1.7;
        }

        /* Screenshots Section */
        .screenshots-section {
            padding: var(--section-padding) 0;
        }

        .filter-buttons {
            display: flex;
            gap: 12px;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 48px;
        }

        .filter-btn {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 12px 24px;
            background: white;
            border: 2px solid var(--gray-300);
            border-radius: 12px;
            color: var(--gray-700);
            font-weight: 600;
            font-size: 15px;
            cursor: pointer;
            transition: var(--transition-base);
        }

        .filter-btn:hover {
            border-color: var(--primary-color);
            color: var(--primary-color);
            background: var(--gray-50);
        }

        .filter-btn.active {
            background: var(--gradient-primary);
            border-color: var(--primary-color);
            color: white;
        }

        .filter-btn i {
            font-size: 16px;
        }

        .screenshots-grid {
            margin-top: 32px;
        }

        .screenshot-item {
            margin-bottom: 24px;
        }

        .screenshot-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow-md);
            transition: var(--transition-base);
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .screenshot-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-2xl);
        }

        .screenshot-image {
            position: relative;
            overflow: hidden;
            aspect-ratio: 16/10;
        }

        .screenshot-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition-slow);
        }

        .screenshot-card:hover .screenshot-image img {
            transform: scale(1.05);
        }

        .screenshot-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 57, 230, 0.9);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: var(--transition-base);
        }

        .screenshot-card:hover .screenshot-overlay {
            opacity: 1;
        }

        .screenshot-link {
            width: 64px;
            height: 64px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            border-radius: 50%;
            color: var(--primary-color);
            font-size: 24px;
            text-decoration: none;
            transform: scale(0.5);
            transition: var(--transition-base);
        }

        .screenshot-card:hover .screenshot-link {
            transform: scale(1);
        }

        .screenshot-info {
            padding: 24px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .screenshot-info h5 {
            font-size: 18px;
            font-weight: 700;
            color: var(--gray-900);
            margin-bottom: 12px;
        }

        .screenshot-info p {
            color: var(--gray-600);
            margin: 0;
            line-height: 1.6;
            font-size: 14px;
        }

        /* Comparison CTA */
        .comparison-cta {
            padding: 80px 0;
            background: var(--gray-50);
        }

        .cta-box {
            text-align: center;
            padding: 64px 48px;
            background: white;
            border-radius: 24px;
            box-shadow: var(--shadow-lg);
        }

        .cta-box .cta-icon {
            width: 80px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--gradient-primary);
            border-radius: 20px;
            color: white;
            font-size: 36px;
            margin: 0 auto 24px;
        }

        .cta-box h3 {
            font-size: 32px;
            font-weight: 800;
            color: var(--gray-900);
            margin-bottom: 16px;
        }

        .cta-box p {
            font-size: 16px;
            color: var(--gray-600);
            margin-bottom: 32px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .btn-comparison {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 16px 40px;
            background: var(--gradient-primary);
            color: white;
            border-radius: 14px;
            font-weight: 700;
            font-size: 16px;
            text-decoration: none;
            transition: var(--transition-base);
            box-shadow: var(--shadow-lg);
        }

        .btn-comparison:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-2xl);
            color: white;
        }

        /* Download Section */
        .download-section {
            padding: var(--section-padding) 0;
            background: white;
        }

        .download-buttons {
            display: flex;
            gap: 24px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-download {
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 24px 32px;
            background: white;
            border: 2px solid var(--gray-300);
            border-radius: 16px;
            text-decoration: none;
            transition: var(--transition-base);
            min-width: 280px;
        }

        .btn-download i {
            width: 56px;
            height: 56px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--gray-100);
            border-radius: 12px;
            font-size: 24px;
            color: var(--primary-color);
            flex-shrink: 0;
            transition: var(--transition-base);
        }

        .btn-download div {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 4px;
        }

        .btn-title {
            font-size: 16px;
            font-weight: 700;
            color: var(--gray-900);
        }

        .btn-subtitle {
            font-size: 13px;
            color: var(--gray-500);
        }

        .btn-download:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-xl);
            border-color: var(--primary-color);
        }

        .btn-download.primary:hover {
            background: var(--gradient-primary);
            border-color: var(--primary-color);
        }

        .btn-download.primary:hover i {
            background: rgba(255, 255, 255, 0.2);
            color: white;
        }

        .btn-download.primary:hover .btn-title,
        .btn-download.primary:hover .btn-subtitle {
            color: white;
        }

        .btn-download.secondary:hover {
            background: var(--gray-50);
        }

        /* Responsive for Product Pages */
        @media (max-width: 991px) {
            .features-overview {
                padding: 80px 0;
            }

            .screenshots-section {
                padding: 80px 0;
            }

            .filter-buttons {
                gap: 8px;
            }

            .filter-btn {
                padding: 10px 20px;
                font-size: 14px;
            }
        }

        @media (max-width: 767px) {
            .cta-box {
                padding: 48px 24px;
            }

            .cta-box h3 {
                font-size: 24px;
            }

            .download-buttons {
                flex-direction: column;
                align-items: stretch;
            }

            .btn-download {
                min-width: auto;
            }

            .filter-btn span {
                display: none;
            }

            .filter-btn {
                padding: 10px;
                width: 48px;
                height: 48px;
                justify-content: center;
            }
        }

        /* ========== E-TOS MOBILE APP SECTION ========== */
        .etos-mobile-section {
            padding: var(--section-padding) 0;
            background: linear-gradient(180deg, #ffffff 0%, var(--gray-50) 100%);
            position: relative;
            overflow: hidden;
        }

        /* .etos-mobile-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image:
                radial-gradient(circle at 10% 20%, rgba(0, 57, 230, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 90% 80%, rgba(0, 212, 255, 0.05) 0%, transparent 50%);
            pointer-events: none;
        } */

        /* Mobile Mockup */
        .mobile-mockup {
            position: relative;
            text-align: center;
            padding: 40px 20px;
        }

        .mobile-mockup img {
            max-width: 350px;
            width: 100%;
            height: auto;
            position: relative;
            z-index: 2;
            filter: drop-shadow(0 20px 40px rgba(0, 57, 230, 0.3));
            animation: floatPhone 6s ease-in-out infinite;
        }

        @keyframes floatPhone {

            0%,
            100% {
                transform: translateY(0) rotate(0deg);
            }

            25% {
                transform: translateY(-15px) rotate(-2deg);
            }

            50% {
                transform: translateY(-10px) rotate(0deg);
            }

            75% {
                transform: translateY(-15px) rotate(2deg);
            }
        }

        .mobile-glow {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(0, 57, 230, 0.2) 0%, transparent 70%);
            border-radius: 50%;
            z-index: 1;
            animation: pulse 3s ease-in-out infinite;
        }

        @keyframes pulse {

            0%,
            100% {
                transform: translate(-50%, -50%) scale(1);
                opacity: 0.6;
            }

            50% {
                transform: translate(-50%, -50%) scale(1.1);
                opacity: 0.8;
            }
        }

        /* E-TOS Content */
        .etos-content {
            padding: 0 20px;
        }

        .etos-content h3 {
            font-size: 36px;
            font-weight: 800;
            color: var(--gray-900);
            margin-bottom: 16px;
        }

        .etos-content .lead {
            font-size: 18px;
            color: var(--gray-600);
            line-height: 1.7;
        }

        /* Feature Highlight List */
        .feature-highlight-list {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .highlight-item {
            display: flex;
            gap: 20px;
            padding: 24px;
            background: white;
            border-radius: 16px;
            border: 2px solid var(--gray-200);
            transition: var(--transition-base);
        }

        .highlight-item:hover {
            border-color: var(--primary-color);
            box-shadow: var(--shadow-lg);
            transform: translateX(8px);
        }

        .highlight-icon {
            width: 64px;
            height: 64px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--gradient-primary);
            border-radius: 14px;
            color: white;
            font-size: 24px;
            flex-shrink: 0;
            transition: var(--transition-base);
        }

        .highlight-item:hover .highlight-icon {
            transform: scale(1.1) rotate(-5deg);
        }

        .highlight-content h5 {
            font-size: 18px;
            font-weight: 700;
            color: var(--gray-900);
            margin-bottom: 8px;
        }

        .highlight-content p {
            font-size: 15px;
            color: var(--gray-600);
            margin: 0;
            line-height: 1.6;
        }

        /* Mobile Feature Cards */
        .mobile-feature-card {
            text-align: center;
            padding: 32px 24px;
            background: white;
            border: 2px solid var(--gray-200);
            border-radius: 20px;
            transition: var(--transition-base);
            height: 100%;
        }

        .mobile-feature-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-xl);
            border-color: var(--primary-color);
        }

        .mobile-feature-icon {
            width: 72px;
            height: 72px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--gradient-primary);
            border-radius: 16px;
            color: white;
            font-size: 28px;
            margin: 0 auto 20px;
            transition: var(--transition-base);
        }

        .mobile-feature-card:hover .mobile-feature-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .mobile-feature-card h5 {
            font-size: 18px;
            font-weight: 700;
            color: var(--gray-900);
            margin-bottom: 12px;
        }

        .mobile-feature-card p {
            font-size: 14px;
            color: var(--gray-600);
            margin: 0;
            line-height: 1.6;
        }

        /* Mobile Download CTA */
        .mobile-download-cta {
            margin-top: 64px;
            padding: 40px 48px;
            background: var(--gradient-primary);
            border-radius: 24px;
            box-shadow: var(--shadow-2xl);
            position: relative;
            overflow: hidden;
        }

        .mobile-download-cta::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
            border-radius: 50%;
        }

        .mobile-download-cta h4 {
            font-size: 28px;
            font-weight: 800;
            color: white;
            margin-bottom: 8px;
        }

        .mobile-download-cta p {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.9);
            margin: 0;
        }

        .btn-download-app {
            display: inline-flex;
            align-items: center;
            gap: 16px;
            padding: 16px 32px;
            background: white;
            color: var(--gray-900);
            border-radius: 14px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition-base);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

        .btn-download-app:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
            color: var(--gray-900);
        }

        .btn-download-app i {
            font-size: 36px;
            color: var(--primary-color);
        }

        .btn-download-app div {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            line-height: 1.3;
        }

        .btn-download-app .small {
            font-size: 12px;
            color: var(--gray-500);
            font-weight: 500;
        }

        .btn-download-app strong {
            font-size: 18px;
            color: var(--gray-900);
        }

        /* Icon Color Variations */
        .highlight-icon.camera {
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
        }

        .highlight-icon.location {
            background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
        }

        .highlight-icon.attendance {
            background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
        }

        .highlight-icon.sync {
            background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
        }

        /* Responsive Design */
        @media (max-width: 991px) {
            .etos-content h3 {
                font-size: 28px;
            }

            .mobile-mockup {
                margin-bottom: 40px;
            }

            .mobile-mockup img {
                max-width: 280px;
            }

            .mobile-download-cta {
                padding: 32px 24px;
                text-align: center;
            }

            .mobile-download-cta h4 {
                font-size: 24px;
                margin-bottom: 16px;
            }

            .btn-download-app {
                margin-top: 24px;
            }
        }

        @media (max-width: 767px) {
            .etos-mobile-section {
                padding: 80px 0;
            }

            .etos-content h3 {
                font-size: 24px;
            }

            .etos-content .lead {
                font-size: 16px;
            }

            .highlight-item {
                flex-direction: column;
                text-align: center;
                padding: 20px;
            }

            .highlight-icon {
                margin: 0 auto 16px;
            }

            .mobile-feature-card {
                padding: 24px 16px;
            }

            .mobile-download-cta {
                padding: 24px 20px;
            }

            .btn-download-app {
                width: 100%;
                justify-content: center;
            }
        }

        /* Animation for scroll reveal */
        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .etos-mobile-section [data-aos] {
            animation: slideInUp 0.8s ease-out;
        }

        /* Badge pill styling in E-TOS section */
        .etos-mobile-section .badge-pill {
            background: rgba(0, 57, 230, 0.1);
            border: 1px solid rgba(0, 57, 230, 0.2);
            padding: 10px 24px;
            display: inline-flex;
        }