   :root {
            --primary: #0A2647;
            --primary-light: #144272;
            --primary-dark: #051425;
            --primary-50: #E8F0F7;
            --primary-100: #C1D9EA;
            --primary-500: #2A7FB9;
            --accent: #FF6B6B;
            --accent-light: #FF8E8E;
            --success: #10B981;
            --success-light: #34D399;
            --warning: #F59E0B;
            --danger: #EF4444;
            --info: #3B82F6;
            --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;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            color: var(--gray-900);
            line-height: 1.6;
            background: #ffffff;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 12px;
            left: 0;
            right: 0;
            z-index: 1000;
            background: transparent;
            transition: all 0.3s ease;
        }

        .navbar.scrolled {
            top: 0;
            background: white;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        }

        .navbar-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 72px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
        }

        .logo-icon {
            width: 44px;
            height: 44px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .logo-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .navbar.scrolled .logo-icon {
            box-shadow: 0 4px 12px rgba(10, 38, 71, 0.2);
        }

        .logo-icon svg {
            width: 24px;
            height: 24px;
        }

        .logo-text {
            font-size: 1.375rem;
            font-weight: 800;
            color: white;
            letter-spacing: -0.5px;
            transition: color 0.3s ease;
        }

        .navbar.scrolled .logo-text {
            color: var(--primary);
        }

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

        .nav-link {
            text-decoration: none;
            color: rgba(255, 255, 255, 0.9);
            font-weight: 600;
            font-size: 0.9375rem;
            padding: 10px 16px;
            border-radius: 12px;
            transition: all 0.2s ease;
        }

        .navbar.scrolled .nav-link {
            color: var(--gray-600);
        }

        .nav-link:hover {
            color: white;
            background: rgba(255, 255, 255, 0.1);
        }

        .navbar.scrolled .nav-link:hover {
            color: var(--primary);
            background: var(--primary-50);
        }

        .nav-right {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .nav-cta {
            background: white;
            color: var(--primary);
            padding: 12px 24px;
            border-radius: 14px;
            font-weight: 700;
            font-size: 0.9375rem;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
            letter-spacing: -0.3px;
        }

        .navbar.scrolled .nav-cta {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            color: white;
            box-shadow: 0 4px 12px rgba(10, 38, 71, 0.25);
        }

        .nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
        }

        .navbar.scrolled .nav-cta:hover {
            box-shadow: 0 6px 16px rgba(10, 38, 71, 0.35);
        }

        .nav-cta svg {
            width: 18px;
            height: 18px;
        }

        .mobile-menu-btn {
            display: none;
            width: 44px;
            height: 44px;
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.15);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: white;
            cursor: pointer;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
        }

        .navbar.scrolled .mobile-menu-btn {
            background: var(--gray-100);
            border: none;
            color: var(--gray-700);
        }

        .mobile-menu-btn:hover {
            background: rgba(255, 255, 255, 0.25);
        }

        .navbar.scrolled .mobile-menu-btn:hover {
            background: var(--gray-200);
        }

        .mobile-menu-btn svg {
            width: 22px;
            height: 22px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 10px 20px;
            border-radius: 10px;
            font-weight: 600;
            font-size: 0.9375rem;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
        }

        .btn-primary {
            background: var(--primary);
            color: white;
            box-shadow: 0 4px 14px rgba(10, 38, 71, 0.25);
        }

        .btn-primary:hover {
            background: var(--primary-light);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(10, 38, 71, 0.3);
        }

        .btn-outline {
            background: transparent;
            border: 2px solid var(--gray-200);
            color: var(--gray-700);
        }

        .btn-outline:hover {
            border-color: var(--primary);
            color: var(--primary);
            background: var(--primary-50);
        }

        .btn-accent {
            background: var(--accent);
            color: white;
            box-shadow: 0 4px 14px rgba(255, 107, 107, 0.35);
        }

        .btn-accent:hover {
            background: var(--accent-light);
            transform: translateY(-2px);
        }

        .btn-lg {
            padding: 14px 28px;
            font-size: 1rem;
            border-radius: 12px;
        }

        .btn svg {
            width: 18px;
            height: 18px;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            position: relative;
            overflow: hidden;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: -1px;
            left: 0;
            right: 0;
            height: 80px;
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100' preserveAspectRatio='none'%3E%3Cpath fill='%23ffffff' d='M0,50 C360,100 1080,0 1440,50 L1440,100 L0,100 Z'/%3E%3C/svg%3E");
            background-size: cover;
            background-position: center;
            pointer-events: none;
        }

        .hero-content {
            position: relative;
            z-index: 1;
            padding: 140px 0 120px;
        }

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

        .hero-text {
            color: white;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            padding: 8px 16px;
            border-radius: 100px;
            font-size: 0.875rem;
            font-weight: 500;
            margin-bottom: 24px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .hero-badge-dot {
            width: 8px;
            height: 8px;
            background: var(--success);
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

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

        .hero-text h1 {
            font-size: 2.75rem;
            font-weight: 900;
            line-height: 1.15;
            margin-bottom: 24px;
            letter-spacing: -1px;
        }

        .hero-text h1 span {
            color: var(--accent);
        }

        .hero-description {
            font-size: 1.25rem;
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 32px;
            max-width: 480px;
            line-height: 1.7;
        }

        .hero-buttons {
            display: flex;
            gap: 16px;
            margin-bottom: 48px;
        }

        .hero-store-btn {
            display: flex;
            align-items: center;
            gap: 12px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            padding: 12px 20px;
            border-radius: 14px;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .hero-store-btn:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }

        .hero-store-btn svg {
            width: 28px;
            height: 28px;
            flex-shrink: 0;
        }

        .hero-store-text {
            text-align: left;
        }

        .hero-store-text small {
            display: block;
            font-size: 0.6875rem;
            opacity: 0.8;
            font-weight: 500;
        }

        .hero-store-text span {
            font-size: 1.0625rem;
            font-weight: 700;
            letter-spacing: -0.3px;
        }

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

        .btn-white:hover {
            background: var(--gray-100);
            transform: translateY(-2px);
        }

        .btn-ghost {
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(255, 255, 255, 0.3);
            color: white;
        }

        .btn-ghost:hover {
            background: rgba(255, 255, 255, 0.2);
            border-color: rgba(255, 255, 255, 0.5);
        }

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

        .hero-stat {
            text-align: left;
        }

        .hero-stat-value {
            font-size: 2.5rem;
            font-weight: 800;
            color: white;
            line-height: 1;
        }

        .hero-stat-label {
            font-size: 0.875rem;
            color: rgba(255, 255, 255, 0.7);
            margin-top: 4px;
        }

        /* Phone Mockup */
        .hero-visual {
            display: flex;
            justify-content: center;
            position: relative;
        }

        .phone-wrapper {
            position: relative;
        }

        .phone {
            width: 280px;
            background: #000;
            border-radius: 40px;
            padding: 12px;
            box-shadow: 0 50px 100px rgba(0, 0, 0, 0.3);
            transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
            transition: transform 0.5s ease;
        }

        .phone:hover {
            transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
        }

        .phone-screen {
            background: #ffffff;
            border-radius: 30px;
            overflow: hidden;
            aspect-ratio: 9/19;
        }

        .phone-content {
            padding: 16px 12px;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .phone-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 12px;
        }

        .phone-title {
            font-size: 0.875rem;
            font-weight: 700;
            color: var(--gray-900);
        }

        .phone-avatar {
            width: 28px;
            height: 28px;
            background: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .phone-avatar svg {
            width: 14px;
            height: 14px;
            color: white;
        }

        .phone-map {
            flex: 1;
            background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
            border-radius: 12px;
            position: relative;
            margin-bottom: 12px;
            overflow: hidden;
        }

        .map-roads {
            position: absolute;
            inset: 0;
            opacity: 0.3;
            background-image:
                linear-gradient(90deg, var(--gray-300) 1px, transparent 1px),
                linear-gradient(var(--gray-300) 1px, transparent 1px);
            background-size: 30px 30px;
        }

        .map-marker {
            position: absolute;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
            z-index: 2;
        }

        .map-marker svg {
            width: 18px;
            height: 18px;
            color: white;
        }

        .map-marker-car {
            background: var(--success);
            top: 30%;
            left: 20%;
            animation: carMove 3s ease-in-out infinite;
        }

        .map-marker-school {
            background: var(--primary);
            bottom: 20%;
            right: 20%;
        }

        .map-marker-pulse {
            position: absolute;
            width: 60px;
            height: 60px;
            background: rgba(16, 185, 129, 0.3);
            border-radius: 50%;
            top: 30%;
            left: 20%;
            transform: translate(-12px, -12px);
            animation: markerPulse 2s ease-out infinite;
        }

        @keyframes carMove {
            0%, 100% { transform: translate(0, 0); }
            50% { transform: translate(20px, -15px); }
        }

        @keyframes markerPulse {
            0% { transform: translate(-12px, -12px) scale(0.5); opacity: 1; }
            100% { transform: translate(-12px, -12px) scale(1.5); opacity: 0; }
        }

        .phone-card {
            background: var(--gray-50);
            border-radius: 12px;
            padding: 12px;
        }

        .phone-card-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 8px;
        }

        .phone-card-label {
            font-size: 0.625rem;
            color: var(--gray-500);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-weight: 600;
        }

        .phone-card-badge {
            background: rgba(16, 185, 129, 0.1);
            color: var(--success);
            padding: 2px 8px;
            border-radius: 100px;
            font-size: 0.5rem;
            font-weight: 700;
        }

        .phone-card-stats {
            display: flex;
            justify-content: space-between;
        }

        .phone-card-stat-value {
            font-size: 0.9375rem;
            font-weight: 700;
            color: var(--gray-900);
        }

        .phone-card-stat-label {
            font-size: 0.5rem;
            color: var(--gray-500);
        }

        /* Floating Cards */
        .floating-card {
            position: absolute;
            background: white;
            border-radius: 16px;
            padding: 14px 18px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
            display: flex;
            align-items: center;
            gap: 12px;
            animation: float 4s ease-in-out infinite;
        }

        .floating-card-1 {
            top: 5%;
            right: -30px;
            animation-delay: 0s;
        }

        .floating-card-2 {
            bottom: 20%;
            left: -40px;
            animation-delay: -2s;
        }

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

        .floating-card-icon {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .floating-card-icon svg {
            width: 20px;
            height: 20px;
            color: white;
        }

        .floating-card-icon.green { background: var(--success); }
        .floating-card-icon.blue { background: var(--primary); }

        .floating-card-text {
            font-size: 0.8125rem;
            font-weight: 600;
            color: var(--gray-900);
        }

        .floating-card-sub {
            font-size: 0.6875rem;
            color: var(--gray-500);
        }

        /* Trust Section - Logo Slider */
        .trust-section {
            padding: 50px 0;
            background: white;
            border-bottom: 1px solid var(--gray-100);
            overflow: hidden;
        }

        .trust-header {
            text-align: center;
            margin-bottom: 32px;
        }

        .trust-label {
            font-size: 0.875rem;
            color: var(--gray-400);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
        }

        .trust-slider {
            position: relative;
            width: 100%;
            overflow: hidden;
            mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
            -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
        }

        .trust-track {
            display: flex;
            gap: 60px;
            animation: scroll 30s linear infinite;
            width: max-content;
        }

        .trust-track:hover {
            animation-play-state: paused;
        }

        @keyframes scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        .trust-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 24px;
            background: var(--gray-50);
            border-radius: 12px;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }

        .trust-logo:hover {
            background: var(--gray-100);
            transform: translateY(-2px);
        }

        .trust-logo-icon {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            font-weight: 700;
            color: white;
            flex-shrink: 0;
        }

        .trust-logo-text {
            display: flex;
            flex-direction: column;
        }

        .trust-logo-name {
            font-size: 0.9375rem;
            font-weight: 700;
            color: var(--gray-800);
            white-space: nowrap;
        }

        .trust-logo-type {
            font-size: 0.75rem;
            color: var(--gray-400);
            font-weight: 500;
        }

        /* Features Section */
        .features {
            padding: 100px 0;
            background: var(--gray-50);
        }

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

        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: var(--primary-50);
            color: var(--primary);
            padding: 8px 16px;
            border-radius: 100px;
            font-size: 0.8125rem;
            font-weight: 600;
            margin-bottom: 16px;
        }

        .section-label svg {
            width: 14px;
            height: 14px;
        }

        .section-title {
            font-size: 2.75rem;
            font-weight: 800;
            color: var(--gray-900);
            margin-bottom: 16px;
            letter-spacing: -1px;
            line-height: 1.15;
        }

        .section-description {
            font-size: 1.125rem;
            color: var(--gray-500);
            line-height: 1.7;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .feature-card {
            background: white;
            border: 1px solid var(--gray-200);
            padding: 32px;
            border-radius: 20px;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--primary);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(10, 38, 71, 0.1);
            border-color: var(--primary-100);
        }

        .feature-card:hover::before {
            transform: scaleX(1);
        }

        .feature-icon {
            width: 56px;
            height: 56px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }

        .feature-icon svg {
            width: 28px;
            height: 28px;
        }

        .feature-icon.blue { background: linear-gradient(135deg, var(--primary-50) 0%, var(--primary-100) 100%); }
        .feature-icon.blue svg { color: var(--primary); }
        .feature-icon.green { background: linear-gradient(135deg, #D1FAE5 0%, #A7F3D0 100%); }
        .feature-icon.green svg { color: var(--success); }
        .feature-icon.orange { background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%); }
        .feature-icon.orange svg { color: var(--warning); }
        .feature-icon.red { background: linear-gradient(135deg, #FEE2E2 0%, #FECACA 100%); }
        .feature-icon.red svg { color: var(--danger); }
        .feature-icon.purple { background: linear-gradient(135deg, #EDE9FE 0%, #DDD6FE 100%); }
        .feature-icon.purple svg { color: #8B5CF6; }
        .feature-icon.cyan { background: linear-gradient(135deg, #CFFAFE 0%, #A5F3FC 100%); }
        .feature-icon.cyan svg { color: #06B6D4; }

        .feature-title {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--gray-900);
            margin-bottom: 10px;
        }

        .feature-desc {
            font-size: 0.9375rem;
            color: var(--gray-500);
            line-height: 1.7;
        }

        /* Stats Section */
        .stats-section {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            position: relative;
            overflow: hidden;
        }

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

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

        .stat-icon {
            width: 64px;
            height: 64px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
        }

        .stat-icon svg {
            width: 28px;
            height: 28px;
            color: var(--accent);
        }

        .stat-value {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 4px;
        }

        .stat-label {
            font-size: 0.9375rem;
            color: rgba(255, 255, 255, 0.7);
        }

        /* How It Works */
        .how-it-works {
            padding: 100px 0;
            background: white;
        }

        .steps-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            position: relative;
        }

        .steps-grid::before {
            content: '';
            position: absolute;
            top: 48px;
            left: 15%;
            right: 15%;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--primary-light), var(--success));
            border-radius: 3px;
            z-index: 0;
        }

        .step-card {
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .step-number {
            width: 96px;
            height: 96px;
            background: white;
            border: 3px solid var(--gray-200);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
            transition: all 0.4s ease;
            position: relative;
        }

        .step-number::before {
            content: '';
            position: absolute;
            inset: -6px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: -1;
        }

        .step-card:hover .step-number {
            border-color: transparent;
            transform: scale(1.05);
        }

        .step-card:hover .step-number::before {
            opacity: 1;
        }

        .step-number-inner {
            width: 72px;
            height: 72px;
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .step-number-inner svg {
            width: 32px;
            height: 32px;
            color: white;
        }

        .step-title {
            font-size: 1.125rem;
            font-weight: 700;
            color: var(--gray-900);
            margin-bottom: 8px;
        }

        .step-desc {
            font-size: 0.9375rem;
            color: var(--gray-500);
            max-width: 200px;
            margin: 0 auto;
        }

        /* Testimonials */
        .testimonials {
            padding: 100px 0;
            background: var(--gray-50);
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .testimonial-card {
            background: white;
            border-radius: 20px;
            padding: 32px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
        }

        .testimonial-card .testimonial-text {
            flex: 1;
        }

        .testimonial-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
        }

        .testimonial-stars {
            display: flex;
            gap: 4px;
            margin-bottom: 16px;
        }

        .testimonial-stars svg {
            width: 18px;
            height: 18px;
            color: #FBBF24;
            fill: #FBBF24;
        }

        .testimonial-text {
            font-size: 1rem;
            color: var(--gray-600);
            line-height: 1.7;
            margin-bottom: 24px;
        }

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

        .testimonial-avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 1.125rem;
        }

        .testimonial-info h4 {
            font-size: 0.9375rem;
            font-weight: 600;
            color: var(--gray-900);
        }

        .testimonial-info p {
            font-size: 0.8125rem;
            color: var(--gray-500);
        }

        /* User Types */
        .user-types {
            padding: 100px 0;
            background: var(--gray-900);
            position: relative;
            overflow: hidden;
        }

        .user-types::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(10, 38, 71, 0.5) 0%, transparent 70%);
            pointer-events: none;
        }

        .user-types .section-label {
            background: rgba(255, 255, 255, 0.1);
            color: white;
        }

        .user-types .section-title {
            color: white;
        }

        .user-types .section-description {
            color: var(--gray-400);
        }

        .user-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            position: relative;
            z-index: 1;
        }

        .user-card {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 20px;
            padding: 36px;
            transition: all 0.4s ease;
        }

        .user-card:hover {
            background: rgba(255, 255, 255, 0.08);
            transform: translateY(-8px);
            border-color: rgba(255, 255, 255, 0.15);
        }

        .user-icon {
            width: 64px;
            height: 64px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
        }

        .user-icon svg {
            width: 32px;
            height: 32px;
            color: white;
        }

        .user-icon.parent { background: linear-gradient(135deg, var(--info), #60A5FA); }
        .user-icon.student { background: linear-gradient(135deg, var(--success), var(--success-light)); }
        .user-icon.staff { background: linear-gradient(135deg, var(--warning), #FCD34D); }

        .user-card h3 {
            font-size: 1.375rem;
            font-weight: 700;
            color: white;
            margin-bottom: 10px;
        }

        .user-card > p {
            color: var(--gray-400);
            margin-bottom: 24px;
            font-size: 0.9375rem;
            line-height: 1.6;
        }

        .user-features {
            list-style: none;
        }

        .user-features li {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 10px 0;
            color: var(--gray-300);
            font-size: 0.9375rem;
        }

        .user-features li svg {
            width: 18px;
            height: 18px;
            color: var(--success);
            flex-shrink: 0;
        }

        /* FAQ Section */
        .faq-section {
            padding: 100px 0;
            background: white;
        }

        .faq-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-item {
            background: var(--gray-50);
            border: 1px solid var(--gray-200);
            border-radius: 16px;
            padding: 24px;
            transition: all 0.3s ease;
        }

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

        .faq-question {
            font-size: 1rem;
            font-weight: 600;
            color: var(--gray-900);
            margin-bottom: 8px;
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }

        .faq-question svg {
            width: 20px;
            height: 20px;
            color: var(--primary);
            flex-shrink: 0;
            margin-top: 2px;
        }

        .faq-answer {
            font-size: 0.9375rem;
            color: var(--gray-500);
            line-height: 1.6;
            padding-left: 32px;
        }

        /* CTA Section */
        .cta {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            position: relative;
            overflow: hidden;
        }

        .cta::before {
            content: '';
            position: absolute;
            top: -1px;
            left: 0;
            right: 0;
            height: 80px;
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100' preserveAspectRatio='none'%3E%3Cpath fill='%23ffffff' d='M0,50 C360,0 1080,100 1440,50 L1440,0 L0,0 Z'/%3E%3C/svg%3E");
            background-size: cover;
            background-position: center;
            pointer-events: none;
        }

        .cta-content {
            text-align: center;
            max-width: 640px;
            margin: 0 auto;
        }

        .cta h2 {
            font-size: 2.75rem;
            font-weight: 800;
            color: white;
            margin-bottom: 16px;
            letter-spacing: -1px;
        }

        .cta p {
            font-size: 1.25rem;
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 36px;
        }

        .store-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
        }

        .store-btn {
            display: flex;
            align-items: center;
            gap: 12px;
            background: rgba(0, 0, 0, 0.2);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            padding: 14px 24px;
            border-radius: 14px;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .store-btn:hover {
            background: rgba(0, 0, 0, 0.4);
            transform: translateY(-3px);
            border-color: rgba(255, 255, 255, 0.4);
        }

        .store-btn svg {
            width: 28px;
            height: 28px;
        }

        .store-btn-text {
            text-align: left;
        }

        .store-btn-text small {
            display: block;
            font-size: 0.6875rem;
            opacity: 0.8;
        }

        .store-btn-text span {
            font-size: 1.0625rem;
            font-weight: 600;
        }

        /* Footer */
        .footer {
            background: var(--gray-900);
            color: white;
            padding: 80px 0 24px;
        }

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

        .footer-brand p {
            color: var(--gray-400);
            margin-top: 16px;
            font-size: 0.9375rem;
            line-height: 1.7;
            max-width: 280px;
        }

        .footer-title {
            font-size: 0.9375rem;
            font-weight: 700;
            margin-bottom: 24px;
            color: white;
        }

        .footer-links {
            list-style: none;
        }

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

        .footer-links a {
            color: var(--gray-400);
            text-decoration: none;
            font-size: 0.9375rem;
            transition: color 0.2s ease;
        }

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

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

        .social-link {
            width: 44px;
            height: 44px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gray-400);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background: var(--primary);
            border-color: var(--primary);
            color: white;
            transform: translateY(-3px);
        }

        .social-link svg {
            width: 20px;
            height: 20px;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--gray-500);
            font-size: 0.875rem;
        }

        /* Animations */
        .fade-up {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .fade-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .nav-center {
                display: none;
            }

            .mobile-menu-btn {
                display: flex;
            }

            .hero-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-text h1 {
                font-size: 2.75rem;
            }

            .hero-description {
                margin: 0 auto 32px;
            }

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

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

            .hero-visual {
                display: none;
            }

            .trust-content {
                flex-direction: column;
                text-align: center;
            }

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

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 32px;
            }

            .steps-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 40px;
            }

            .steps-grid::before {
                display: none;
            }

            .testimonials-grid {
                grid-template-columns: repeat(2, 1fr);
                max-width: 100%;
            }

            .user-cards {
                grid-template-columns: 1fr;
                max-width: 100%;
            }

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

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

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

            .features,
            .how-it-works,
            .testimonials,
            .user-types,
            .faq-section {
                padding: 60px 0;
            }

            .stats-section {
                padding: 50px 0;
            }

            .cta {
                padding: 60px 0;
            }

            .trust-section {
                padding: 30px 0;
            }

            .section-header {
                margin-bottom: 40px;
            }

            .hero-text h1 {
                font-size: 2rem;
            }

            .hero-description {
                font-size: 1rem;
                max-width: 100%;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: stretch;
                width: 100%;
            }

            .hero-store-btn {
                width: 100%;
                max-width: 100%;
                justify-content: center;
            }

            .hero-stats {
                flex-wrap: wrap;
                gap: 24px;
                justify-content: space-around;
            }

            .hero-stat-value {
                font-size: 2rem;
            }

            .section-header {
                padding: 0 10px;
            }

            .section-title {
                font-size: 1.75rem;
            }

            .section-description {
                font-size: 1rem;
            }

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

            .feature-card {
                padding: 24px;
            }

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

            .stat-value {
                font-size: 2rem;
            }

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

            .step-number {
                width: 70px;
                height: 70px;
            }

            .step-number-inner {
                width: 54px;
                height: 54px;
            }

            .step-number-inner svg {
                width: 24px;
                height: 24px;
            }

            .step-desc {
                font-size: 0.8125rem;
            }

            .testimonials-grid {
                grid-template-columns: 1fr;
                max-width: 100%;
                gap: 16px;
            }

            .testimonial-card {
                padding: 24px;
            }

            .user-cards {
                grid-template-columns: 1fr;
                max-width: 100%;
                gap: 16px;
            }

            .user-card {
                padding: 28px;
            }

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

            .cta p {
                font-size: 1rem;
            }

            .store-buttons {
                flex-direction: column;
                align-items: stretch;
                width: 100%;
                max-width: 320px;
                margin: 0 auto;
            }

            .store-btn {
                width: 100%;
                justify-content: center;
            }

            .footer {
                padding: 50px 0 24px;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 32px;
                margin-bottom: 40px;
            }

            .footer-brand {
                margin-bottom: 16px;
            }

            .footer-brand .logo {
                justify-content: center;
            }

            .footer-brand p {
                margin: 16px auto 0;
                max-width: 100%;
            }

            .social-links {
                justify-content: center;
            }

            .footer-title {
                margin-bottom: 16px;
            }

            .footer-links {
                display: flex;
                flex-wrap: wrap;
                justify-content: center;
                gap: 12px 24px;
            }

            .footer-links li {
                margin-bottom: 0;
            }

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

            .nav-cta {
                display: none;
            }

            .faq-grid {
                gap: 16px;
            }
        }

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

            .hero-content {
                padding: 120px 0 80px;
            }

            .hero-text h1 {
                font-size: 1.75rem;
            }

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

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

            .hero-stat {
                text-align: center;
                min-width: 80px;
            }

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

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

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

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

            .stat-icon svg {
                width: 22px;
                height: 22px;
            }

            .steps-grid {
                grid-template-columns: 1fr 1fr;
                gap: 16px;
            }

            .step-card {
                padding: 0 8px;
            }

            .step-number {
                width: 60px;
                height: 60px;
            }

            .step-number-inner {
                width: 46px;
                height: 46px;
            }

            .step-number-inner svg {
                width: 20px;
                height: 20px;
            }

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

            .step-desc {
                font-size: 0.75rem;
                max-width: 100%;
            }

            .user-card {
                padding: 24px;
            }

            .faq-item {
                padding: 16px;
            }

            .faq-question {
                font-size: 0.9375rem;
            }

            .faq-answer {
                font-size: 0.875rem;
                padding-left: 28px;
            }

            .trust-logo {
                padding: 8px 16px;
            }

            .trust-logo-icon {
                width: 32px;
                height: 32px;
                font-size: 0.875rem;
            }

            .trust-logo-name {
                font-size: 0.8125rem;
            }

            .footer-grid {
                gap: 24px;
            }

            .footer-links {
                gap: 10px 20px;
            }

            .footer-links a {
                font-size: 0.875rem;
            }

            .footer-title {
                font-size: 0.875rem;
                margin-bottom: 12px;
            }

            .social-link {
                width: 40px;
                height: 40px;
            }

            .social-link svg {
                width: 18px;
                height: 18px;
            }
        }

        /* Mobile Menu Styles */
        .mobile-menu {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            z-index: 1001;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

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

        .mobile-menu-content {
            position: absolute;
            top: 0;
            right: 0;
            width: 280px;
            max-width: 80%;
            height: 100%;
            background: white;
            padding: 24px;
            transform: translateX(100%);
            transition: transform 0.3s ease;
            overflow-y: auto;
        }

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

        .mobile-menu-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 32px;
            gap: 12px;
        }

        .mobile-menu-header .logo {
            flex: 1;
            min-width: 0;
            overflow: hidden;
        }

        .mobile-menu-header .logo-text {
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .mobile-menu-close {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            background: var(--gray-100);
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gray-700);
            transition: all 0.2s ease;
            position: relative;
            z-index: 10;
            flex-shrink: 0;
        }

        .mobile-menu-close:hover {
            background: var(--gray-200);
        }

        .mobile-menu-close svg,
        .mobile-menu-close i {
            width: 20px;
            height: 20px;
            pointer-events: none;
        }

        .mobile-menu-links {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .mobile-menu-link {
            display: block;
            padding: 14px 16px;
            color: var(--gray-700);
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            border-radius: 12px;
            transition: all 0.2s ease;
        }

        .mobile-menu-link:hover {
            background: var(--primary-50);
            color: var(--primary);
        }

        .mobile-menu-cta {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            margin-top: 24px;
            padding: 14px 24px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            color: white;
            text-decoration: none;
            font-weight: 700;
            font-size: 1rem;
            border-radius: 14px;
            transition: all 0.3s ease;
        }

        .mobile-menu-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(10, 38, 71, 0.35);
        }

        .mobile-menu-cta svg {
            width: 20px;
            height: 20px;
        }

        @media (max-width: 1024px) {
            .mobile-menu {
                display: block;
            }
        }
        @media (max-width: 768px) {
            .contact-grid {
                grid-template-columns: 1fr !important;
            }
        }