 :root {
            /* Color System */
            --bg: #ffffff;
            --ink: #0b2545;
            --muted: #4c627a;
            --brand: #0e5aa7;
            --accent: #e76f51;
            --gold: #f4a300;
            --green: #35a936;
            --purple: #7b2cbf;
            
            /* Spacing */
			--space-xs: 4px;
            --space-sm: 8px;
            --space-md: 14px;  /* Slightly reduced from 16px */
            --space-lg: 20px;  /* Reduced from 24px */
            --space-xl: 28px;  /* Reduced from 32px */
            --space-xxl: 40px;
            
            /* Other Variables */
            --radius: 18px;
            --shadow: 0 10px 30px rgba(13, 33, 70, 0.12);
            --transition: all 0.3s ease;
        }

        /* Reset & Base Styles */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html, body {
            font-family: 'Poppins', system-ui, -apple-system, sans-serif;
            color: var(--ink);
            background: var(--bg);
            scroll-behavior: smooth;
            line-height: 1.6;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        img {
            max-width: 100%;
            display: block;
        }

        .container {
            width: min(1200px, 92%);
            margin-inline: auto;
        }

        section {
            padding: var(--space-lg) 0;
        }

        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes float {
            0% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0); }
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        /* Header Styles */
        header {
            position: sticky;
            top: 0;
            z-index: 50;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: saturate(140%) blur(8px);
            box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
            transition: var(--transition);
        }

        .nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: var(--space-md) 0;
        }

        .brand {
            display: flex;
            align-items: center;
            gap: var(--space-md);
        }

        .brand img {
            width: 46px;
            height: 46px;
            border-radius: 50%;
            object-fit: cover;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .brand:hover img {
            transform: rotate(10deg);
        }

        .brand b {
            font-weight: 800;
            letter-spacing: 0.5px;
            font-size: 1.2rem;
        }

        nav ul {
            display: flex;
            gap: var(--space-xl);
            list-style: none;
        }

        nav ul li a {
            position: relative;
            padding: var(--space-xs) 0;
            transition: var(--transition);
            font-weight: 500;
        }

        nav ul li a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--brand);
            transition: var(--transition);
        }

        nav ul li a:hover:after {
            width: 100%;
        }

        /* Button Styles */
        .btn {
            display: inline-flex;
            align-items: center;
            gap: var(--space-sm);
            padding: var(--space-md) var(--space-lg);
            border-radius: 999px;
            font-weight: 700;
            transition: var(--transition);
            box-shadow: var(--shadow);
            position: relative;
            overflow: hidden;
        }

        .btn:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: 0.5s;
        }

        .btn:hover:before {
            left: 100%;
        }

        .btn.primary {
            background: var(--brand);
            color: #fff;
        }

        .btn.primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 35px rgba(13, 33, 70, 0.2);
        }

        .btn.ghost {
            border: 2px solid var(--brand);
            color: var(--brand);
        }

        .btn.ghost:hover {
            background: var(--brand);
            color: #fff;
        }

        /* Mobile Navigation */
        .hamburger {
            display: none;
            width: 42px;
            height: 42px;
            border-radius: 50%;
            border: 2px solid #e5e7eb;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition);
        }

        .hamburger:hover {
            background: #f5f5f5;
        }

        /* Hero Section */
        .hero {
            position: relative;
            isolation: isolate;
            overflow: hidden;
        }

        .hero::before {
            content: "";
            position: absolute;
            inset: 0;
            background: 
                radial-gradient(90% 70% at 10% 10%, rgba(14, 90, 167, 0.08), transparent 50%),
                radial-gradient(80% 60% at 90% 10%, rgba(247, 204, 0, 0.1), transparent 55%),
                linear-gradient(180deg, #f8fafc 0%, #fff 100%);
        }

        .hero .wrap {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: var(--space-xxl);
            align-items: center;
            padding: 82px 0 42px;
        }

        .kicker {
            font-weight: 700;
            letter-spacing: 0.2em;
            font-size: 0.82rem;
            color: var(--brand);
            text-transform: uppercase;
            animation: fadeIn 1s ease;
        }

        h1 {
            font-size: clamp(32px, 5vw, 58px);
            line-height: 1.05;
            margin: var(--space-md) 0 var(--space-lg);
            animation: fadeIn 1s ease 0.2s both;
        }

        .subtitle {
            font-size: clamp(16px, 2.2vw, 20px);
            color: var(--muted);
            animation: fadeIn 1s ease 0.4s both;
        }

        .hero-actions {
            display: flex;
            gap: var(--space-lg);
            margin-top: var(--space-xl);
            flex-wrap: wrap;
            animation: fadeIn 1s ease 0.6s both;
        }

        .hero-media {
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            position: relative;
            animation: fadeIn 1s ease 0.8s both;
        }

        .hero-media:after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            background: linear-gradient(45deg, rgba(14, 90, 167, 0.1) 0%, rgba(247, 204, 0, 0.1) 100%);
            z-index: -1;
            border-radius: var(--radius);
            transform: translate(15px, 15px);
        }

        .chip {
            display: inline-flex;
            align-items: center;
            gap: var(--space-sm);
            padding: var(--space-sm) var(--space-md);
            border-radius: 999px;
            background: #fff;
            margin-top: var(--space-lg);
            box-shadow: var(--shadow);
            animation: fadeIn 1s ease 1s both;
        }

        .multi {
            font-weight: 800;
        }

        .multi .b { color: #2573e8; }
        .multi .r { color: #e11d48; }
        .multi .g { color: #55b657; }
        .multi .o { color: #fb923c; }
        .multi .y { color: #f59e0b; }
        .multi .p { color: #7c3aed; }

        /* Section Headers */
        .section-header {
            text-align: center;
            margin-bottom: var(--space-xxl);
        }

        .section-title {
            font-size: clamp(24px, 3.5vw, 40px);
            margin: 0 0 var(--space-lg);
            position: relative;
            display: inline-block;
        }

        .section-title:after {
            content: '';
            position: absolute;
            width: 60px;
            height: 3px;
            background: var(--brand);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }

        .section-subtitle {
            max-width: 600px;
            margin: 0 auto;
        }

        .muted {
            color: var(--muted);
        }

        /* Grid System */
        .grid {
            display: grid;
            gap: var(--space-lg);
        }

        .grid.cols-3 {
            grid-template-columns: repeat(3, 1fr);
        }

        .grid.cols-2 {
            grid-template-columns: repeat(2, 1fr);
        }

        /* Card Component */
        .card {
            background: #fff;
            border-radius: var(--radius);
            padding: var(--space-xl);
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(13, 33, 70, 0.15);
        }

        .card:before {
            content: '';
            position: absolute;
            width: 100%;
            height: 5px;
            top: 0;
            left: 0;
            background: linear-gradient(90deg, var(--brand), var(--green));
            transform: scaleX(0);
            transform-origin: left;
            transition: var(--transition);
        }

        .card:hover:before {
            transform: scaleX(1);
        }

        /* Badge Component */
        .badge {
            font-size: 0.8rem;
            font-weight: 700;
            color: #fff;
            padding: var(--space-xs) var(--space-sm);
            border-radius: 999px;
            display: inline-block;
        }

        .badge.blue { background: #2573e8; }
        .badge.green { background: #22c55e; }
        .badge.orange { background: #fb923c; }

        /* Benefit Items */
        .benefit {
            display: flex;
            gap: var(--space-lg);
            align-items: flex-start;
        }

        .benefit i {
            width: 22px;
            height: 22px;
            border-radius: 6px;
            background: var(--green);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 12px;
            flex-shrink: 0;
        }

        .benefit b {
            display: block;
            margin-bottom: 5px;
        }

        /* Gallery */
        .gallery {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            gap: var(--space-md);
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 14px;
            aspect-ratio: 4/3;
        }

        .gallery img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .gallery-item:hover img {
            transform: scale(1.05);
        }

        .gallery-item:after {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.2);
            opacity: 0;
            transition: var(--transition);
        }

        .gallery-item:hover:after {
            opacity: 1;
        }

        /* CTA Section */
        .cta {
            background: linear-gradient(135deg, #0e5aa7, #3b82f6);
            color: #fff;
            border-radius: var(--radius);
            padding: var(--space-xl);
            display: flex;
            gap: var(--space-md);
            align-items: center;
            justify-content: space-between;
            position: relative;
            overflow: hidden;
        }

        .cta:before {
            content: '';
            position: absolute;
            width: 150%;
            height: 150%;
            background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
            animation: float 15s linear infinite;
            z-index: 0;
        }

        .cta > * {
            position: relative;
            z-index: 1;
        }

        .cta small {
            opacity: 0.9;
        }

        /* Testimonials */
        .testimonials {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: var(--space-lg);
            margin-top: var(--space-xxl);
        }

        .testimonial {
            background: #fff;
            border-radius: var(--radius);
            padding: var(--space-lg);
            box-shadow: var(--shadow);
            position: relative;
        }

        .testimonial:before {
            content: '"';
            position: absolute;
            top: 10px;
            right: 20px;
            font-size: 60px;
            color: #f0f0f0;
            font-family: Georgia, serif;
        }

        .testimonial-content {
            margin-bottom: 15px;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: var(--space-md);
        }

        .testimonial-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            object-fit: cover;
        }

        .testimonial-name {
            font-weight: 600;
        }

        .testimonial-role {
            font-size: 0.85rem;
            color: var(--muted);
        }

        /* Form Elements */
        form {
            display: grid;
            gap: var(--space-lg);
        }

        .form-group {
            position: relative;
        }

        input, textarea, select {
            width: 100%;
            padding: var(--space-lg);
            border-radius: 12px;
            border: 1px solid #e5e7eb;
            outline: none;
            transition: var(--transition);
            font-family: inherit;
        }

        input:focus, textarea:focus, select:focus {
            border-color: #93c5fd;
            box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15);
        }

        textarea {
            min-height: 120px;
            resize: vertical;
        }

        label {
            display: block;
            margin-bottom: var(--space-sm);
            font-weight: 500;
        }

        /* Footer */
        footer {
            background: #0b2545;
            color: #dbe5ff;
            padding: 46px 0 66px;
            margin-top: var(--space-xxl);
        }

        .footer-grid {
            display: grid;
            gap: var(--space-xl);
            grid-template-columns: 2fr 1fr 1fr;
        }

        .socials {
            display: flex;
            gap: var(--space-md);
        }

        .socials a {
            display: grid;
            place-items: center;
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: #123c7a;
            transition: var(--transition);
        }

        .socials a:hover {
            background: var(--brand);
            transform: translateY(-3px);
        }

        .copyright {
            margin-top: var(--space-xl);
            font-size: 0.9rem;
            color: #a9bbd6;
            text-align: center;
            padding-top: var(--space-lg);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* Stats */
        .stats {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: var(--space-lg);
            margin: var(--space-xxl) 0;
        }

        .stat {
            text-align: center;
            padding: var(--space-lg);
            background: #fff;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--brand);
            margin-bottom: 5px;
        }

        .stat-label {
            font-size: 0.9rem;
            color: var(--muted);
        }

        /* Floating Elements */
        .floating {
            animation: float 5s ease-in-out infinite;
        }

        /* Sticky WhatsApp Button */
        .wa {
            position: fixed;
            right: 18px;
            bottom: 18px;
            width: 58px;
            height: 58px;
            border-radius: 50%;
            display: grid;
            place-items: center;
            background: #25d366;
            color: #fff;
            box-shadow: var(--shadow);
            z-index: 60;
            transition: var(--transition);
            animation: pulse 2s infinite;
        }

        .wa:hover {
            transform: scale(1.1);
        }

        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 90px;
            right: 18px;
            width: 46px;
            height: 46px;
            border-radius: 50%;
            background: var(--brand);
            color: #fff;
            display: grid;
            place-items: center;
            box-shadow: var(--shadow);
            z-index: 59;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            background: var(--accent);
        }

        /* Media Queries */
        @media (max-width: 920px) {
            nav ul {
                position: fixed;
                inset: 70px 0 auto 0;
                background: #fff;
                padding: var(--space-lg);
                flex-direction: column;
                gap: var(--space-lg);
                border-bottom: 1px solid #eef2f7;
                transform: translateY(-120%);
                transition: 0.25s;
                z-index: 100;
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            }

            nav ul.open {
                transform: translateY(0);
            }

            .hamburger {
                display: flex;
            }

            .desktop-cta {
                display: none;
            }
        }

        @media (max-width: 900px) {
            .hero .wrap {
                grid-template-columns: 1fr;
                padding-top: var(--space-xxl);
                text-align: center;
            }

            .grid.cols-3, .grid.cols-2 {
                grid-template-columns: 1fr;
            }

            .hero-actions {
                justify-content: center;
            }

            .footer-grid {
                grid-template-columns: 1fr;
            }

            .stats {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 600px) {
            .stats {
                grid-template-columns: 1fr;
            }
            
            .hero-actions {
                flex-direction: column;
                align-items: center;
            }
            
            .hero-actions .btn {
                width: 100%;
                justify-content: center;
            }
        }