
        :root {
            --powder-blue: #B8E0F7;
            --powder-light: #D9EFFC;
            --powder-lighter: #F0F9FF;
            --navy: #1B2A4A;
            --navy-dark: #0D1B3E;
            --navy-medium: #16213E;
            --white: #FFFFFF;
            --accent: #FFD93D;
            --accent-hover: #FFC107;
            --coral: #FF6B6B;
            --text-body: #4A5568;
            --text-muted: #718096;
            --shadow-sm: 0 2px 8px rgba(27, 42, 74, 0.06);
            --shadow-md: 0 8px 30px rgba(27, 42, 74, 0.10);
            --shadow-lg: 0 20px 60px rgba(27, 42, 74, 0.15);
            --shadow-glow: 0 0 40px rgba(184, 224, 247, 0.5);
            --radius-sm: 12px;
            --radius-md: 20px;
            --radius-lg: 32px;
            --radius-xl: 48px;
            --font-heading: 'Outfit', 'Plus Jakarta Sans', sans-serif;
            --font-body: 'Plus Jakarta Sans', 'Outfit', sans-serif;
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            --max-width: 1200px;
        }

        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            scroll-padding-top: 90px;
        }

        body {
            font-family: var(--font-body);
            color: var(--text-body);
            background: var(--white);
            line-height: 1.7;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
         position: relative; }

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 10px;
        }
        ::-webkit-scrollbar-track {
            background: var(--powder-lighter);
        }
        ::-webkit-scrollbar-thumb {
            background: var(--powder-blue);
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: var(--navy);
        }

        /* Scroll Progress Bar */
        .scroll-progress {
            position: fixed;
            top: 0;
            left: 0;
            width: 0%;
            height: 4px;
            background: linear-gradient(90deg, var(--powder-blue), var(--navy), var(--accent));
            z-index: 9999;
            border-radius: 0 4px 4px 0;
            transition: width 0.1s linear;
        }

        /* Selection */
        ::selection {
            background: var(--powder-blue);
            color: var(--navy);
        }

        h1,
        h2,
        h3 {
            font-family: var(--font-heading);
            color: var(--navy);
            font-weight: 800;
            line-height: 1.2;
        }

        h1 {
            font-size: clamp(2.5rem, 5.5vw, 4.2rem);
            letter-spacing: -0.03em;
            font-weight: 900;
            line-height: 1.15;
        }

        h2 {
            font-size: clamp(2rem, 4vw, 3rem);
            letter-spacing: -0.02em;
            margin-bottom: 1rem;
        }

        h3 {
            font-size: clamp(1.2rem, 2vw, 1.6rem);
            letter-spacing: -0.01em;
        }

        p {
            margin-bottom: 1rem;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }

        img {
            max-width: 100%;
            display: block;
        }

        .container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Gradient Text */
        .gradient-text {
            background: linear-gradient(135deg, #4A90D9, #1B2A4A 50%, #7C3AED);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .gradient-text-light {
            background: linear-gradient(135deg, #FFFFFF, #B8E0F7, #7C3AED);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* ============ NAVBAR ============ */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 16px 0;
            transition: var(--transition);
            background: transparent;
        }
        .navbar.scrolled {
            background: rgba(255, 255, 255, 0.88);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            box-shadow: var(--shadow-md);
            padding: 10px 0;
        }
        .navbar .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
        }
        .navbar-logo {
            display: flex;
            align-items: center;
            transition: var(--transition-bounce);
            flex-shrink: 0;
        }
        .navbar-logo:hover {
            transform: scale(1.05) rotate(-2deg);
        }
        .navbar-links {
            display: flex;
            align-items: center;
            gap: 8px;
            list-style: none;
        }
        .navbar-links a {
            padding: 10px 18px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.95rem;
            color: var(--navy);
            position: relative;
            transition: var(--transition-bounce);
        }
        .navbar-links a:hover {
            background: var(--powder-light);
            transform: translateY(-2px);
        }
        .navbar-links a.active {
            background: var(--powder-blue);
            color: var(--navy);
        }
        .navbar-cta {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-shrink: 0;
        }
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 14px 30px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1rem;
            font-family: var(--font-heading);
            cursor: pointer;
            transition: var(--transition-bounce);
            border: none;
            white-space: nowrap;
            letter-spacing: 0.01em;
            text-align: center;
        }
        .btn:active {
            transform: scale(0.95) !important;
        }
        .btn-primary {
            background: var(--navy);
            color: var(--white);
            box-shadow: 0 8px 24px rgba(27, 42, 74, 0.25);
        }
        .btn-primary:hover {
            background: var(--navy-dark);
            transform: translateY(-4px) scale(1.03);
            box-shadow: 0 14px 36px rgba(27, 42, 74, 0.35);
        }
        .btn-secondary {
            background: var(--powder-blue);
            color: var(--navy);
        }
        .btn-secondary:hover {
            background: #a8d0eb;
            transform: translateY(-4px) scale(1.03);
            box-shadow: 0 10px 28px rgba(184, 224, 247, 0.5);
        }
        .btn-accent {
            background: var(--accent);
            color: var(--navy);
            box-shadow: 0 8px 24px rgba(255, 217, 61, 0.35);
        }
        .btn-accent:hover {
            background: var(--accent-hover);
            transform: translateY(-4px) scale(1.03);
            box-shadow: 0 14px 36px rgba(255, 217, 61, 0.5);
        }
        .btn-lg {
            padding: 18px 40px;
            font-size: 1.15rem;
            border-radius: 60px;
        }
        .btn-sm {
            padding: 10px 22px;
            font-size: 0.9rem;
        }
        .btn .icon {
            font-size: 1.2em;
            transition: transform 0.3s ease;
        }
        .btn:hover .icon {
            transform: translateX(4px) rotate(5deg);
        }

        /* Hamburger */
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 8px;
            background: none;
            border: none;
            z-index: 1001;
        }
        .hamburger span {
            width: 28px;
            height: 3px;
            background: var(--navy);
            border-radius: 3px;
            transition: var(--transition-bounce);
            display: block;
        }
        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }
        .hamburger.active span:nth-child(2) {
            opacity: 0;
            transform: scaleX(0);
        }
        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }

        /* Mobile Menu Overlay */
        .mobile-overlay {
            position: fixed;
            inset: 0;
            background: rgba(13, 27, 62, 0.97);
            backdrop-filter: blur(20px);
            z-index: 999;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            opacity: 0;
            pointer-events: none;
            transition: var(--transition);
        }
        .mobile-overlay.active {
            opacity: 1;
            pointer-events: all;
        }
        .mobile-overlay .mobile-links {
            list-style: none;
            text-align: center;
        }
        .mobile-overlay .mobile-links a {
            display: block;
            padding: 16px 32px;
            font-size: 1.5rem;
            font-weight: 700;
            font-family: var(--font-heading);
            color: var(--white);
            transition: var(--transition-bounce);
        }
        .mobile-overlay .mobile-links a:hover {
            color: var(--powder-blue);
            transform: scale(1.05);
        }

        /* ============ HERO ============ */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            overflow: hidden;
            background: linear-gradient(170deg, var(--powder-lighter) 0%, var(--white) 30%, var(--powder-light) 80%, #d4eaf8 100%);
            padding: 120px 0 80px;
        }
        .hero-bg-shapes {
            position: absolute;
            inset: 0;
            pointer-events: none;
            z-index: 1;
            overflow: hidden;
        }
        .hero-blob {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.6;
            animation: blobFloat 12s ease-in-out infinite;
        }
        .hero-blob-1 {
            width: 500px;
            height: 500px;
            background: var(--powder-blue);
            top: -10%;
            right: -5%;
            animation-delay: 0s;
        }
        .hero-blob-2 {
            width: 400px;
            height: 400px;
            background: #c4b5fd;
            bottom: -15%;
            left: -8%;
            animation-delay: -4s;
            opacity: 0.4;
        }
        .hero-blob-3 {
            width: 300px;
            height: 300px;
            background: #a7d8f0;
            top: 40%;
            left: 30%;
            animation-delay: -8s;
            opacity: 0.5;
        }
        @keyframes blobFloat {
            0%,
            100% {
                transform: translate(0, 0) scale(1);
            }
            25% {
                transform: translate(30px, -40px) scale(1.1);
            }
            50% {
                transform: translate(-20px, 25px) scale(0.9);
            }
            75% {
                transform: translate(15px, -15px) scale(1.05);
            }
        }

        /* Floating Game Elements */
        .floating-element {
            position: absolute;
            z-index: 2;
            pointer-events: none;
            animation: floatBounce 6s ease-in-out infinite;
        }
        .floating-dice {
            width: 50px;
            height: 50px;
            background: var(--white);
            border-radius: 12px;
            box-shadow: var(--shadow-md);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.6rem;
            animation: diceFloat 5s ease-in-out infinite;
            transform: rotate(-10deg);
        }
        .floating-dice::after {
            content: '';
            width: 10px;
            height: 10px;
            background: var(--navy);
            border-radius: 50%;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            box-shadow: -14px -14px 0 var(--navy), 14px 14px 0 var(--navy), -14px 14px 0 var(--navy), 14px -14px 0 var(--navy);
        }
        @keyframes diceFloat {
            0%,
            100% {
                transform: translateY(0) rotate(-10deg);
            }
            25% {
                transform: translateY(-15px) rotate(10deg);
            }
            50% {
                transform: translateY(-25px) rotate(-5deg);
            }
            75% {
                transform: translateY(-10px) rotate(5deg);
            }
        }
        .floating-coin {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #FFD93D, #FFB300);
            border-radius: 50%;
            box-shadow: 0 4px 12px rgba(255, 179, 0, 0.4);
            animation: coinFloat 4.5s ease-in-out infinite;
            position: relative;
        }
        .floating-coin::after {
            content: '★';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: var(--white);
            font-size: 1.1rem;
            font-weight: bold;
        }
        @keyframes coinFloat {
            0%,
            100% {
                transform: translateY(0) rotate(0deg);
            }
            30% {
                transform: translateY(-20px) rotate(180deg);
            }
            60% {
                transform: translateY(-8px) rotate(360deg);
            }
        }
        .floating-card {
            width: 45px;
            height: 65px;
            background: var(--white);
            border-radius: 8px;
            box-shadow: var(--shadow-md);
            animation: cardFloat 5.5s ease-in-out infinite;
            position: relative;
            transform: rotate(8deg);
            overflow: hidden;
        }
        .floating-card::before {
            content: '♠';
            position: absolute;
            top: 5px;
            left: 5px;
            font-size: 1.2rem;
            color: #4A90D9;
        }
        .floating-card::after {
            content: '♥';
            position: absolute;
            bottom: 5px;
            right: 5px;
            font-size: 1.2rem;
            color: var(--coral);
        }
        @keyframes cardFloat {
            0%,
            100% {
                transform: translateY(0) rotate(8deg);
            }
            30% {
                transform: translateY(-18px) rotate(-8deg);
            }
            60% {
                transform: translateY(-5px) rotate(12deg);
            }
        }

        .hero-content {
            position: relative;
            z-index: 5;
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 24px;
            background: rgba(255, 255, 255, 0.8);
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.9rem;
            color: var(--navy);
            box-shadow: var(--shadow-sm);
            margin-bottom: 28px;
            animation: fadeInUp 0.8s ease-out 0.2s both;
            border: 2px solid var(--powder-blue);
        }
        .hero-badge .pulse-dot {
            width: 10px;
            height: 10px;
            background: #4CAF50;
            border-radius: 50%;
            animation: pulseDot 2s ease-in-out infinite;
        }
        @keyframes pulseDot {
            0%,
            100% {
                transform: scale(1);
                opacity: 1;
            }
            50% {
                transform: scale(1.5);
                opacity: 0.5;
            }
        }
        .hero h1 {
            margin-bottom: 24px;
            animation: fadeInUp 0.8s ease-out 0.4s both;
        }
        .hero-description {
            font-size: 1.2rem;
            color: var(--text-body);
            max-width: 600px;
            margin: 0 auto 36px;
            animation: fadeInUp 0.8s ease-out 0.6s both;
            line-height: 1.8;
        }
        .hero-buttons {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
            animation: fadeInUp 0.8s ease-out 0.8s both;
        }
        .hero-image-wrapper {
            position: relative;
            margin-top: 50px;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            animation: fadeInUp 1s ease-out 1s both;
            border: 4px solid var(--white);
            outline: 3px solid var(--powder-blue);
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }
        .hero-image-wrapper::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(184, 224, 247, 0.2), transparent 50%);
            pointer-events: none;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        @keyframes floatBounce {
            0%,
            100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-18px);
            }
        }

        /* ============ STATS BAR ============ */
        .stats-section {
            background: var(--navy);
            padding: 48px 0;
            position: relative;
            overflow: hidden;
        }
        .stats-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -20%;
            width: 400px;
            height: 200%;
            background: linear-gradient(90deg, transparent, rgba(184, 224, 247, 0.08), transparent);
            transform: rotate(20deg);
            animation: shimmer 6s ease-in-out infinite;
            pointer-events: none;
        }
        @keyframes shimmer {
            0%,
            100% {
                transform: translateX(-100%) rotate(20deg);
            }
            50% {
                transform: translateX(200%) rotate(20deg);
            }
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 32px;
            text-align: center;
            position: relative;
            z-index: 2;
        }
        .stat-item {
            animation: fadeInUp 0.8s ease-out both;
        }
        .stat-number {
            font-family: var(--font-heading);
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 900;
            color: var(--powder-blue);
            line-height: 1.2;
            display: block;
        }
        .stat-number .plus {
            color: var(--accent);
        }
        .stat-label {
            color: rgba(255, 255, 255, 0.7);
            font-weight: 600;
            font-size: 1rem;
            margin-top: 4px;
        }

        /* ============ FEATURES SECTION ============ */
        .features-section {
            padding: 100px 0;
            background: var(--white);
            position: relative;
        }
        .section-header {
            text-align: center;
            max-width: 640px;
            margin: 0 auto 60px;
        }
        .section-header .section-tag {
            display: inline-block;
            padding: 8px 20px;
            background: var(--powder-light);
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.85rem;
            color: var(--navy);
            margin-bottom: 16px;
            letter-spacing: 0.05em;
            text-transform: uppercase;
        }
        .section-header p {
            color: var(--text-muted);
            font-size: 1.1rem;
        }
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
        }
        .feature-card {
            padding: 36px 28px;
            border-radius: var(--radius-md);
            background: var(--powder-lighter);
            border: 2px solid var(--powder-blue);
            transition: var(--transition-bounce);
            text-align: center;
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }
        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--powder-blue), var(--navy));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }
        .feature-card:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: var(--shadow-lg);
            border-color: #a8d0eb;
        }
        .feature-card:hover::before {
            transform: scaleX(1);
        }
        .feature-icon {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: var(--white);
            box-shadow: var(--shadow-md);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin: 0 auto 20px;
            transition: var(--transition-bounce);
        }
        .feature-card:hover .feature-icon {
            transform: scale(1.15) rotate(8deg);
            background: var(--powder-blue);
        }
        .feature-card h3 {
            margin-bottom: 12px;
            font-size: 1.25rem;
        }
        .feature-card p {
            font-size: 0.95rem;
            color: var(--text-muted);
            margin-bottom: 0;
        }

        /* ============ ALTERNATING SECTIONS ============ */
        .alternating-section {
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }
        .alternating-section:nth-child(odd) {
            background: var(--powder-lighter);
        }
        .alternating-section:nth-child(even) {
            background: var(--white);
        }
        .alt-row {
            display: flex;
            align-items: center;
            gap: 60px;
        }
        .alt-row.reverse {
            flex-direction: row-reverse;
        }
        .alt-image {
            flex: 1;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            position: relative;
            transition: var(--transition-bounce);
            border: 4px solid var(--white);
            outline: 3px solid var(--powder-blue);
        }
        .alt-image:hover {
            transform: scale(1.03) rotate(-1deg);
            box-shadow: var(--shadow-glow);
        }
        .alt-image::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(184, 224, 247, 0.25), transparent 60%);
            z-index: 1;
            pointer-events: none;
            border-radius: inherit;
        }
        .alt-text {
            flex: 1;
        }
        .alt-text .feature-tag {
            display: inline-block;
            padding: 6px 16px;
            background: var(--powder-blue);
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.8rem;
            color: var(--navy);
            margin-bottom: 16px;
            letter-spacing: 0.05em;
            text-transform: uppercase;
        }
        .alt-text h3 {
            font-size: clamp(1.6rem, 3vw, 2.2rem);
            margin-bottom: 16px;
        }
        .alt-text p {
            color: var(--text-body);
            font-size: 1.05rem;
            margin-bottom: 20px;
        }
        .alt-list {
            list-style: none;
            margin-bottom: 24px;
        }
        .alt-list li {
            padding: 8px 0;
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 600;
            color: var(--navy);
            transition: var(--transition);
        }
        .alt-list li:hover {
            transform: translateX(8px);
        }
        .alt-list li .check-icon {
            width: 26px;
            height: 26px;
            border-radius: 50%;
            background: var(--powder-blue);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            color: var(--navy);
            flex-shrink: 0;
            transition: var(--transition-bounce);
        }
        .alt-list li:hover .check-icon {
            background: var(--accent);
            transform: scale(1.2) rotate(10deg);
        }

        /* ============ TESTIMONIALS ============ */
        .testimonials-section {
            padding: 100px 0;
            background: var(--navy);
            position: relative;
            overflow: hidden;
        }
        .testimonials-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 6px;
            background: linear-gradient(90deg, var(--powder-blue), var(--accent), var(--coral), var(--powder-blue));
        }
        .testimonials-section .section-header h2 {
            color: var(--white);
        }
        .testimonials-section .section-header p {
            color: rgba(255, 255, 255, 0.6);
        }
        .testimonials-section .section-tag {
            background: rgba(184, 224, 247, 0.15);
            color: var(--powder-blue);
        }
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
        }
        .testimonial-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: var(--radius-md);
            padding: 32px 28px;
            transition: var(--transition-bounce);
            text-align: center;
        }
        .testimonial-card:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-6px) scale(1.02);
            border-color: rgba(184, 224, 247, 0.4);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
        }
        .testimonial-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            overflow: hidden;
            margin: 0 auto 16px;
            border: 3px solid var(--powder-blue);
            box-shadow: 0 0 20px rgba(184, 224, 247, 0.3);
            transition: var(--transition-bounce);
        }
        .testimonial-card:hover .testimonial-avatar {
            transform: scale(1.1) rotate(5deg);
            border-color: var(--accent);
        }
        .testimonial-name {
            font-family: var(--font-heading);
            font-weight: 800;
            color: var(--white);
            font-size: 1.1rem;
            margin-bottom: 2px;
        }
        .testimonial-role {
            font-size: 0.8rem;
            color: var(--powder-blue);
            font-weight: 600;
            margin-bottom: 14px;
            letter-spacing: 0.05em;
            text-transform: uppercase;
        }
        .testimonial-stars {
            color: var(--accent);
            font-size: 1.2rem;
            letter-spacing: 3px;
            margin-bottom: 12px;
        }
        .testimonial-text {
            color: rgba(255, 255, 255, 0.75);
            font-size: 0.95rem;
            font-style: italic;
            line-height: 1.7;
            margin-bottom: 0;
        }

        /* ============ FAQ ============ */
        .faq-section {
            padding: 100px 0;
            background: var(--powder-lighter);
            position: relative;
        }
        .faq-wrapper {
            max-width: 760px;
            margin: 0 auto;
        }
        .faq-item {
            background: var(--white);
            border-radius: var(--radius-md);
            margin-bottom: 16px;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            border: 2px solid transparent;
            cursor: pointer;
        }
        .faq-item:hover {
            box-shadow: var(--shadow-md);
            border-color: var(--powder-blue);
        }
        .faq-item.active {
            border-color: var(--navy);
            box-shadow: var(--shadow-md);
        }
        .faq-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 22px 26px;
            cursor: pointer;
            transition: var(--transition);
            user-select: none;
        }
        .faq-question h3 {
            font-size: 1.05rem;
            font-weight: 700;
            margin: 0;
            transition: var(--transition);
            color: var(--navy);
        }
        .faq-item.active .faq-question h3 {
            color: var(--navy);
        }
        .faq-icon {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: var(--powder-light);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--navy);
            flex-shrink: 0;
            transition: var(--transition-bounce);
            margin-left: 16px;
        }
        .faq-item.active .faq-icon {
            background: var(--navy);
            color: var(--white);
            transform: rotate(180deg);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }
        .faq-answer-inner {
            padding: 0 26px 24px;
            color: var(--text-body);
            font-size: 1rem;
            line-height: 1.8;
        }
        .faq-item.active .faq-answer {
            max-height: 300px;
        }

        /* ============ CTA SECTION ============ */
        .cta-section {
            padding: 120px 0;
            background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 40%, #1e3a6e 100%);
            position: relative;
            overflow: hidden;
            text-align: center;
        }
        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: 50%;
            transform: translateX(-50%);
            width: 800px;
            height: 200%;
            background: radial-gradient(ellipse, rgba(184, 224, 247, 0.15), transparent 60%);
            pointer-events: none;
            animation: ctaGlow 5s ease-in-out infinite;
        }
        @keyframes ctaGlow {
            0%,
            100% {
                opacity: 0.5;
                transform: translateX(-50%) scale(1);
            }
            50% {
                opacity: 1;
                transform: translateX(-50%) scale(1.2);
            }
        }
        .cta-section .container {
            position: relative;
            z-index: 2;
        }
        .cta-section h2 {
            color: var(--white);
            font-size: clamp(2rem, 4.5vw, 3.2rem);
            margin-bottom: 20px;
        }
        .cta-section p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 1.15rem;
            max-width: 560px;
            margin: 0 auto 36px;
        }
        .cta-section .btn-accent {
            font-size: 1.2rem;
            padding: 20px 48px;
            animation: ctaBounce 2.5s ease-in-out infinite;
        }
        @keyframes ctaBounce {
            0%,
            100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-8px);
            }
        }
        .cta-trust-icons {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 28px;
            margin-top: 40px;
            flex-wrap: wrap;
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.5);
            font-weight: 600;
        }
        .cta-trust-icons span {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        /* ============ FOOTER ============ */
        .footer {
            background: var(--navy-dark);
            padding: 60px 0 30px;
            color: rgba(255, 255, 255, 0.6);
            position: relative;
        }
        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(184, 224, 247, 0.3), transparent);
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-brand .navbar-logo {
            margin-bottom: 16px;
        }
        .footer-brand p {
            font-size: 0.9rem;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.5);
            max-width: 300px;
        }
        .footer h4 {
            font-family: var(--font-heading);
            font-weight: 700;
            color: var(--white);
            font-size: 1rem;
            margin-bottom: 18px;
            letter-spacing: 0.03em;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 10px;
        }
        .footer-links a {
            color: rgba(255, 255, 255, 0.55);
            font-size: 0.9rem;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .footer-links a:hover {
            color: var(--powder-blue);
            transform: translateX(6px);
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding-top: 24px;
            text-align: center;
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.4);
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .footer-bottom .footer-legal {
            display: flex;
            gap: 20px;
            list-style: none;
        }
        .footer-bottom .footer-legal a {
            color: rgba(255, 255, 255, 0.4);
            font-size: 0.8rem;
            transition: var(--transition);
        }
        .footer-bottom .footer-legal a:hover {
            color: var(--powder-blue);
        }

        /* ============ BACK TO TOP ============ */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--navy);
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            cursor: pointer;
            opacity: 0;
            pointer-events: none;
            transition: var(--transition-bounce);
            z-index: 998;
            box-shadow: 0 8px 24px rgba(27, 42, 74, 0.3);
            border: 2px solid var(--powder-blue);
        }
        .back-to-top.visible {
            opacity: 1;
            pointer-events: all;
        }
        .back-to-top:hover {
            transform: translateY(-6px) scale(1.1);
            background: var(--navy-dark);
        }

        /* ============ RESPONSIVE ============ */
        @media (max-width: 1024px) {
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 24px;
            }
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .testimonials-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 768px) {
            .navbar-links {
                display: none;
            }
            .navbar-cta .btn:not(.btn-sm) {
                display: none;
            }
            .hamburger {
                display: flex;
            }
            .hero {
                padding: 100px 0 60px;
                min-height: auto;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
            .hero-description {
                font-size: 1rem;
                padding: 0 12px;
            }
            .hero-buttons {
                flex-direction: column;
                gap: 12px;
            }
            .hero-buttons .btn {
                width: 100%;
                max-width: 320px;
            }
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
            .features-grid {
                grid-template-columns: 1fr;
            }
            .alt-row,
            .alt-row.reverse {
                flex-direction: column;
                gap: 30px;
            }
            .testimonials-grid {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 28px;
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
            .cta-section {
                padding: 80px 0;
            }
            .cta-section h2 {
                font-size: 1.8rem;
            }
            .floating-element {
                display: none;
            }
            .back-to-top {
                bottom: 16px;
                right: 16px;
                width: 44px;
                height: 44px;
                font-size: 1rem;
            }
            .faq-question {
                padding: 16px 18px;
            }
            .faq-question h3 {
                font-size: 0.95rem;
            }
            .faq-answer-inner {
                padding: 0 18px 18px;
                font-size: 0.9rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 16px;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .stat-number {
                font-size: 1.8rem;
            }
            .section-header {
                margin-bottom: 40px;
            }
            .section-header h2 {
                font-size: 1.6rem;
            }
            .btn-lg {
                padding: 14px 28px;
                font-size: 1rem;
            }
            .features-grid {
                gap: 16px;
            }
            .feature-card {
                padding: 24px 18px;
            }
        }
