:root {
            --bg-base: #faf9f6;
            --bg-surface: #ffffff;
            --border-color: #1e293b;
            --text-primary: #1e293b;
            --text-secondary: #64748b;

            /* Cartoon accent colors */
            --accent-primary: #7c3aed;
            /* Saturated purple from screenshot */
            --accent-secondary: #ec4899;
            /* Hot pink badge color */
            --accent-success: #22c55e;
            /* Bright green badge color */
            --accent-yellow: #facc15;
            /* Highlighter yellow color */

            /* Cartoon Neobrutalism Shadows */
            --card-shadow: 6px 6px 0px #1e293b;
            --button-shadow: 4px 4px 0px #1e293b;
            --button-hover-shadow: 2px 2px 0px #1e293b;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Plus Jakarta Sans', sans-serif;
            scroll-behavior: smooth;
        }

        body {
            background-color: var(--bg-base);
            background-image: radial-gradient(rgba(30, 41, 59, 0.12) 1.5px, transparent 1.5px);
            background-size: 24px 24px;
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
            position: relative;
        }

        /* Scroll Reveal Utility */
        .reveal-element {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        }

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

        /* Marker & Badge Highlights (Cartoon sketch style) */
        .highlight-yellow {
            background-color: var(--accent-yellow);
            color: #1e293b;
            padding: 2px 12px;
            border: 2px solid #1e293b;
            border-radius: 8px;
            display: inline-block;
            transform: rotate(-1.5deg);
            box-shadow: 3px 3px 0px #1e293b;
            font-family: 'Fredoka', sans-serif;
        }

        .highlight-pink {
            background-color: var(--accent-secondary);
            color: #ffffff;
            padding: 2px 12px;
            border: 2px solid #1e293b;
            border-radius: 8px;
            display: inline-block;
            transform: rotate(1deg);
            box-shadow: 3px 3px 0px #1e293b;
            font-family: 'Fredoka', sans-serif;
        }

        .highlight-green {
            background-color: var(--accent-success);
            color: #ffffff;
            padding: 2px 12px;
            border: 2px solid #1e293b;
            border-radius: 8px;
            display: inline-block;
            transform: rotate(-1deg);
            box-shadow: 3px 3px 0px #1e293b;
            font-family: 'Fredoka', sans-serif;
        }

        .welcome-badge {
            background-color: #f3e8ff;
            color: var(--accent-primary);
            border: 2px solid #1e293b;
            padding: 4px 12px;
            border-radius: 9999px;
            font-family: 'Fredoka', sans-serif;
            font-weight: 700;
            font-size: 13px;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            margin-bottom: 12px;
            box-shadow: 2px 2px 0px #1e293b;
        }

        .highlight-blue-tilt {
            background-color: #3b82f6;
            color: #ffffff;
            padding: 2px 12px;
            border: 2px solid #1e293b;
            border-radius: 8px;
            display: inline-block;
            transform: rotate(-1.5deg);
            box-shadow: 3px 3px 0px #1e293b;
            font-family: 'Fredoka', sans-serif;
        }

        /* Navbar styling - Premium Cartoon/Neobrutalism */
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 5%;
            background: #ffffff;
            border-bottom: 2px solid #1e293b;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 8px;
            font-family: 'Fredoka', sans-serif;
            font-weight: 700;
            font-size: 20px;
            color: var(--text-primary);
            text-decoration: none;
            letter-spacing: -0.5px;
        }

        .brand-icon {
            width: 32px;
            height: 32px;
            border-radius: 8px;
            background: var(--accent-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 14px;
            border: 2px solid #1e293b;
            box-shadow: 2px 2px 0px #1e293b;
        }

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

        .nav-links a {
            font-family: 'Fredoka', sans-serif;
            text-decoration: none;
            color: var(--text-primary);
            font-weight: 600;
            font-size: 14px;
            transition: color 0.2s, transform 0.2s;
            position: relative;
            white-space: nowrap;
        }

        .nav-links a:hover {
            color: var(--accent-primary);
            transform: translateY(-1px);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            bottom: -4px;
            left: 0;
            background: var(--accent-primary);
            border-radius: 99px;
            transition: width 0.2s ease;
        }

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

        /* Chunky Playful Buttons */
        .btn-login {
            background: var(--accent-primary);
            color: #fff !important;
            padding: 10px 22px;
            border-radius: 12px;
            font-family: 'Fredoka', sans-serif;
            font-weight: 600;
            font-size: 15px;
            border: 2px solid #1e293b;
            box-shadow: var(--button-shadow);
            display: flex;
            align-items: center;
            gap: 8px;
            transition: transform 0.1s ease, box-shadow 0.1s ease;
            text-decoration: none !important;
        }

        .btn-login:hover {
            transform: translate(2px, 2px);
            box-shadow: var(--button-hover-shadow);
            color: #fff !important;
        }

        .btn-login:active {
            transform: translate(4px, 4px);
            box-shadow: none;
        }

        .btn-google {
            background: #ffffff;
            color: var(--text-primary) !important;
            padding: 14px 30px;
            border-radius: 12px;
            font-size: 16px;
            font-family: 'Fredoka', sans-serif;
            font-weight: 600;
            text-decoration: none !important;
            box-shadow: var(--button-shadow);
            display: inline-flex;
            align-items: center;
            gap: 12px;
            transition: transform 0.1s ease, box-shadow 0.1s ease;
            border: 2px solid #1e293b;
        }

        .btn-google:hover {
            transform: translate(2px, 2px);
            box-shadow: var(--button-hover-shadow);
            background: #fbfbfa;
            text-decoration: none !important;
        }

        .btn-google:active {
            transform: translate(4px, 4px);
            box-shadow: none;
        }

        .btn-google i {
            background: linear-gradient(135deg, #4285F4 0%, #34A853 30%, #FBBC05 60%, #EA4335 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-size: 18px;
            display: inline-block;
        }

        .btn-primary {
            background: var(--accent-primary);
            color: white !important;
            padding: 14px 30px;
            border-radius: 12px;
            font-size: 16px;
            font-family: 'Fredoka', sans-serif;
            font-weight: 600;
            text-decoration: none !important;
            box-shadow: var(--button-shadow);
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: transform 0.1s ease, box-shadow 0.1s ease;
            border: 2px solid #1e293b;
        }

        .btn-primary:hover {
            transform: translate(2px, 2px);
            box-shadow: var(--button-hover-shadow);
            text-decoration: none !important;
        }

        .btn-primary:active {
            transform: translate(4px, 4px);
            box-shadow: none;
        }

        .btn-text-mobile {
            display: none;
        }

        /* ============ HERO SECTION - PREMIUM REDESIGN ============ */
        .hero {
            padding: 110px 5% 60px;
            position: relative;
            overflow: hidden;
        }

        /* Subtle background blobs */
        .hero::before {
            content: '';
            position: absolute;
            top: -80px;
            right: -100px;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(124, 58, 237, 0.08) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: -60px;
            left: -80px;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(236, 72, 153, 0.07) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .hero-grid-container {
            display: grid;
            grid-template-columns: 1.15fr 0.85fr;
            grid-template-rows: auto auto;
            grid-template-areas:
                "header auth"
                "info auth";
            gap: 24px 60px;
            align-items: start;
            max-width: 1200px;
            margin: 0 auto;
            text-align: left;
            position: relative;
            z-index: 1;
        }

        .hero-heading-block {
            grid-area: header;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 0;
        }

        .hero-info-block {
            grid-area: info;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
            text-align: center;
        }

        /* Top announcement badge */
        .hero-announce-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, #f3e8ff, #fce7f3);
            border: 1.5px solid rgba(124, 58, 237, 0.25);
            border-radius: 9999px;
            padding: 6px 14px 6px 8px;
            font-family: 'Fredoka', sans-serif;
            font-size: 13px;
            font-weight: 600;
            color: var(--accent-primary);
            margin-bottom: 18px;
            box-shadow: 0 2px 12px rgba(124, 58, 237, 0.12);
            letter-spacing: 0.2px;
        }

        .hero-announce-badge .badge-dot {
            width: 22px;
            height: 22px;
            background: var(--accent-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 10px;
            flex-shrink: 0;
        }

        .hero h1 {
            font-family: 'Fredoka', sans-serif;
            font-size: 52px;
            font-weight: 700;
            line-height: 1.15;
            color: var(--text-primary);
            margin-bottom: 0;
            letter-spacing: -1.5px;
        }

        /* Gradient highlight word in H1 */
        .hero-stat-inline {
            background: linear-gradient(135deg, #7c3aed, #ec4899);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 800;
        }

        /* Description directly under H1 */
        .hero-sub-desc {
            font-size: 17px;
            color: var(--text-secondary);
            margin-top: 18px;
            margin-bottom: 0;
            font-weight: 400;
            line-height: 1.75;
            text-align: left;
            max-width: 500px;
        }

        /* Trust badges row */
        .hero-trust-row {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
        }

        .trust-chip {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: #ffffff;
            border: 1.5px solid #e2e8f0;
            border-radius: 9999px;
            padding: 5px 12px;
            font-size: 12.5px;
            font-weight: 600;
            color: var(--text-primary);
            box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
            white-space: nowrap;
        }

        .trust-chip i {
            font-size: 11px;
            color: var(--accent-success);
        }

        .trust-chip.chip-purple i {
            color: var(--accent-primary);
        }

        .trust-chip.chip-yellow i {
            color: #f59e0b;
        }

        /* Social proof bottom row */
        .hero-social-proof {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .avatar-stack {
            display: inline-flex;
            align-items: center;
        }

        .avatar-stack img {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            border: 2.5px solid #ffffff;
            margin-left: -10px;
            object-fit: cover;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
        }

        .avatar-stack img:first-child {
            margin-left: 0;
        }

        .social-proof-text {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .social-proof-text .proof-main {
            font-size: 13.5px;
            font-weight: 700;
            color: var(--text-primary);
        }

        .social-proof-text .proof-stars {
            display: flex;
            align-items: center;
            gap: 3px;
            color: #f59e0b;
            font-size: 11px;
        }

        .social-proof-text .proof-stars span {
            font-size: 12px;
            font-weight: 600;
            color: var(--text-secondary);
            margin-left: 2px;
        }

        .hero-cta-group {
            display: flex;
            align-items: center;
            gap: 24px;
            margin-top: 0;
            width: 100%;
        }

        .btn-primary-cta {
            background: var(--accent-primary);
            color: #fff;
            padding: 16px 28px;
            border-radius: 14px;
            font-family: 'Fredoka', sans-serif;
            font-weight: 700;
            font-size: 16px;
            text-decoration: none;
            border: 2px solid #1e293b;
            box-shadow: 4px 4px 0px #1e293b;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: transform 0.1s ease, box-shadow 0.1s ease;
        }

        .btn-primary-cta:active {
            transform: translate(2px, 2px);
            box-shadow: 2px 2px 0px #1e293b;
        }

        /* Sign In / Register Card */
        .hero-auth-block {
            display: flex;
            justify-content: flex-end;
            width: 100%;
        }

        .auth-card {
            background: #ffffff;
            border: 2px solid #1e293b;
            border-radius: 20px;
            box-shadow: 6px 6px 0px #1e293b;
            width: 100%;
            max-width: 410px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        .auth-tabs {
            display: flex;
            border-top: 2px solid #1e293b;
            background: #f8fafc;
        }

        .auth-tab-btn {
            flex: 1;
            padding: 14px;
            border: none;
            background: none;
            font-family: 'Fredoka', sans-serif;
            font-weight: 700;
            font-size: 15px;
            color: var(--text-secondary);
            cursor: pointer;
            transition: all 0.2s ease;
            text-align: center;
            outline: none;
        }

        .auth-tab-btn.active {
            color: var(--text-primary);
            background: #ffffff;
            font-weight: 800;
        }

        .auth-tab-btn:first-child {
            border-right: 2px solid #1e293b;
        }

        .auth-form-content {
            padding: 20px 24px;
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .input-group {
            display: flex;
            flex-direction: column;
            gap: 4px;
            text-align: left;
        }

        .input-label {
            font-family: 'Fredoka', sans-serif;
            font-size: 11px;
            font-weight: 700;
            color: var(--text-primary);
            letter-spacing: 0.5px;
        }

        .forgot-link {
            font-family: 'Fredoka', sans-serif;
            font-size: 11px;
            font-weight: 700;
            color: var(--accent-primary);
            text-decoration: none;
        }

        .forgot-link:hover {
            text-decoration: underline;
        }

        .input-wrapper {
            position: relative;
            display: flex;
            align-items: center;
        }

        .input-icon {
            position: absolute;
            left: 14px;
            color: var(--text-secondary);
            font-size: 14px;
            pointer-events: none;
        }

        .minimal-input {
            width: 100%;
            padding: 11px 14px 11px 40px;
            border: 2px solid #1e293b;
            border-radius: 12px;
            font-size: 13.5px;
            font-weight: 600;
            color: var(--text-primary);
            outline: none;
            background: #f8fafc;
            transition: all 0.15s ease;
        }

        .minimal-input:focus {
            background: #ffffff;
            border-color: var(--accent-primary);
        }

        .eye-icon {
            position: absolute;
            right: 14px;
            color: var(--text-secondary);
            font-size: 14px;
            cursor: pointer;
            padding: 4px;
        }

        /* Switch toggler style */
        .remember-row {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-top: 2px;
        }

        .switch-container {
            position: relative;
            display: inline-block;
            width: 38px;
            height: 20px;
            box-sizing: border-box;
        }

        .switch-container input {
            position: absolute;
            opacity: 0;
            width: 0;
            height: 0;
        }

        .switch-slider {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: #cbd5e1;
            transition: .3s;
            border-radius: 20px;
            border: 2px solid #1e293b;
            box-sizing: border-box;
        }

        .switch-slider:before {
            position: absolute;
            content: "";
            height: 12px;
            width: 12px;
            left: 2px;
            top: 2px;
            background-color: white;
            transition: .3s;
            border-radius: 50%;
            border: 1.5px solid #1e293b;
            box-sizing: border-box;
        }

        .switch-container input:checked+.switch-slider {
            background-color: var(--accent-primary);
        }

        .switch-container input:checked+.switch-slider:before {
            transform: translateX(18px);
        }

        .remember-text {
            font-size: 13px;
            font-weight: 600;
            color: var(--text-primary);
        }

        .auth-submit-btn {
            background: var(--accent-primary);
            color: #ffffff;
            padding: 13px;
            border: 2px solid #1e293b;
            border-radius: 12px;
            font-family: 'Fredoka', sans-serif;
            font-weight: 700;
            font-size: 15px;
            cursor: pointer;
            box-shadow: 3px 3px 0px #1e293b;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 8px;
            transition: transform 0.1s ease, box-shadow 0.1s ease;
        }

        .auth-submit-btn:active {
            transform: translate(1.5px, 1.5px);
            box-shadow: 1.5px 1.5px 0px #1e293b;
        }

        .auth-divider {
            display: flex;
            align-items: center;
            text-align: center;
            margin: 0 24px 12px;
            color: var(--text-secondary);
            font-size: 11px;
            font-weight: 700;
        }

        .auth-divider::before,
        .auth-divider::after {
            content: '';
            flex: 1;
            border-bottom: 2px dashed #cbd5e1;
        }

        .auth-divider:not(:empty)::before {
            margin-right: .8em;
        }

        .auth-divider:not(:empty)::after {
            margin-left: .8em;
        }

        .auth-google-btn {
            background: #ffffff;
            color: var(--text-primary);
            padding: 12px;
            border: 2px solid #1e293b;
            border-radius: 12px;
            font-family: 'Fredoka', sans-serif;
            font-weight: 700;
            font-size: 14px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            box-shadow: 3px 3px 0px #1e293b;
            margin: 24px 24px 12px;
            text-decoration: none;
            transition: transform 0.1s ease, box-shadow 0.1s ease;
        }

        .auth-google-btn i {
            background: linear-gradient(135deg, #4285F4 0%, #34A853 30%, #FBBC05 60%, #EA4335 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-size: 16px;
            display: inline-block;
        }

        .auth-google-btn:active {
            transform: translate(1.5px, 1.5px);
            box-shadow: 1.5px 1.5px 0px #1e293b;
        }

        /* Rating Social Proof Block */
        .rating-badge-container {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 6px;
        }

        .rating-badge {
            background: #f3e8ff;
            border: 2px solid #1e293b;
            padding: 5px 14px;
            border-radius: 9999px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            box-shadow: 2px 2px 0px #1e293b;
        }

        .rating-badge .stars {
            display: flex;
            gap: 2px;
            color: var(--accent-yellow);
        }

        .rating-badge .stars i {
            font-size: 14px;
            -webkit-text-stroke: 1.5px #1e293b;
        }

        .rating-badge .rating-num {
            font-family: 'Fredoka', sans-serif;
            font-weight: 700;
            font-size: 14px;
            color: #1e293b;
        }

        .rating-text {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-primary);
            text-align: left;
        }

        .rating-text strong {
            font-weight: 800;
        }

        .avatar-group {
            display: inline-flex;
            align-items: center;
            margin-top: 4px;
        }

        .avatar-group img {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            border: 2px solid #1e293b;
            margin-left: -8px;
            object-fit: cover;
            background: #e2e8f0;
        }

        .avatar-group img:first-child {
            margin-left: 0;
        }

        /* Navbar watch & register buttons */
        .btn-demo-header {
            font-family: 'Fredoka', sans-serif;
            text-decoration: none;
            color: var(--text-primary);
            border: 2px solid #1e293b;
            padding: 6px 12px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 12.5px;
            box-shadow: 2px 2px 0px #1e293b;
            background: white;
            transition: all 0.1s ease;
            margin-left: 8px;
        }

        .btn-demo-header:active {
            transform: translate(1px, 1px);
            box-shadow: 1px 1px 0px #1e293b;
        }

        .btn-register-header {
            font-family: 'Fredoka', sans-serif;
            text-decoration: none;
            color: white;
            background: var(--accent-primary);
            border: 2px solid #1e293b;
            padding: 6px 12px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 12.5px;
            box-shadow: 2px 2px 0px #1e293b;
            transition: all 0.1s ease;
            margin-left: 8px;
        }

        .btn-register-header:active {
            transform: translate(1px, 1px);
            box-shadow: 1px 1px 0px #1e293b;
        }

        @media (max-width: 968px) {
            .hero {
                padding: 90px 4% 40px;
            }

            .hero-grid-container {
                grid-template-columns: 1fr;
                grid-template-rows: auto auto auto;
                grid-template-areas:
                    "header"
                    "auth"
                    "info";
                gap: 30px;
                text-align: left;
            }

            .hero-heading-block {
                align-items: flex-start;
            }

            .hero-info-block {
                align-items: center;
                text-align: center;
            }

            .hero h1 {
                font-size: 34px;
                letter-spacing: -1px;
            }

            .hero-sub-desc {
                text-align: left;
                max-width: 100%;
                font-size: 16px;
            }

            .hero-cta-group {
                flex-direction: column;
                align-items: flex-start;
                gap: 16px;
            }

            .hero-trust-row {
                flex-wrap: wrap;
                gap: 8px;
            }

            .hero-auth-block {
                justify-content: center;
            }

            .btn-demo-header,
            .btn-register-header {
                display: none;
            }
        }

        /* Features Section */
        .features {
            padding: 80px 5%;
            background: #ffffff;
            border-top: 2px solid #1e293b;
            border-bottom: 2px solid #1e293b;
            position: relative;
        }

        .section-title {
            font-family: 'Fredoka', sans-serif;
            text-align: center;
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 16px;
            color: var(--text-primary);
            letter-spacing: -1px;
        }

        .section-subtitle {
            text-align: center;
            color: var(--text-secondary);
            font-size: 17px;
            max-width: 600px;
            margin: 0 auto 60px;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 32px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .feature-card {
            background: #ffffff;
            padding: 40px 32px;
            border: 2px solid #1e293b;
            border-radius: 16px;
            box-shadow: var(--card-shadow);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .feature-card:hover {
            transform: translate(-2px, -2px);
            box-shadow: 8px 8px 0px #1e293b;
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            background: var(--accent-yellow);
            color: #1e293b;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 26px;
            margin-bottom: 24px;
            border: 2px solid #1e293b;
            box-shadow: 3px 3px 0px #1e293b;
        }

        .feature-card h3 {
            font-family: 'Fredoka', sans-serif;
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 14px;
            color: var(--text-primary);
        }

        .feature-card p {
            color: var(--text-secondary);
            font-size: 15px;
            line-height: 1.6;
        }

        /* Creator / Testimonial Showcase Section */
        .creator-showcase {
            padding: 80px 5%;
            position: relative;
        }

        .showcase-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            max-width: 1200px;
            margin: 0 auto;
            align-items: center;
        }

        .showcase-text h2 {
            font-family: 'Fredoka', sans-serif;
            font-size: 44px;
            font-weight: 700;
            line-height: 1.25;
            margin-bottom: 24px;
            letter-spacing: -1px;
            color: var(--text-primary);
        }

        .showcase-text p {
            color: var(--text-secondary);
            font-size: 17px;
            line-height: 1.7;
            margin-bottom: 30px;
        }

        .showcase-content-blocks {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .content-block {
            background: #ffffff;
            border: 2px solid #1e293b;
            padding: 28px;
            border-radius: 16px;
            box-shadow: var(--card-shadow);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .content-block:hover {
            transform: translate(-2px, -2px);
            box-shadow: 8px 8px 0px #1e293b;
        }

        .content-block h3 {
            font-family: 'Fredoka', sans-serif;
            font-size: 20px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 10px;
        }

        .content-block p {
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* How It Works Section */
        .how-it-works {
            padding: 80px 5%;
            background: #ffffff;
            border-top: 2px solid #1e293b;
            border-bottom: 2px solid #1e293b;
        }

        .steps-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            max-width: 1200px;
            margin: 50px auto 0;
            position: relative;
        }

        .step-item {
            background: #ffffff;
            border: 2px solid #1e293b;
            border-radius: 16px;
            padding: 40px 24px;
            box-shadow: var(--card-shadow);
            text-align: center;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            position: relative;
        }

        .step-item:hover {
            transform: translate(-2px, -2px);
            box-shadow: 8px 8px 0px #1e293b;
        }

        .step-number {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--accent-yellow);
            border: 2px solid #1e293b;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-family: 'Fredoka', sans-serif;
            font-weight: 700;
            color: #1e293b;
            margin: 0 auto 24px;
            box-shadow: 4px 4px 0px #1e293b;
        }

        .step-item h3 {
            font-family: 'Fredoka', sans-serif;
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 12px;
            color: #1e293b;
        }

        .step-item p {
            font-size: 15px;
            color: var(--text-secondary);
            max-width: 280px;
            margin: 0 auto;
        }

        /* Trust Stats Section */
        .trust-section {
            padding: 80px 5%;
            text-align: center;
            background: #ffffff;
            border-bottom: 2px solid #1e293b;
        }

        .trust-section h2 {
            font-family: 'Fredoka', sans-serif;
            font-size: 40px;
            font-weight: 700;
            color: var(--text-primary);
        }

        .trust-stats {
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
            max-width: 1200px;
            margin: 50px auto 0;
        }

        .stat-item {
            background: #ffffff;
            border: 2px solid #1e293b;
            border-radius: 16px;
            padding: 30px 40px;
            box-shadow: var(--card-shadow);
            text-align: center;
            flex: 1;
            min-width: 220px;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .stat-item:hover {
            transform: translate(-2px, -2px);
            box-shadow: 8px 8px 0px #1e293b;
        }

        .stat-item h4 {
            font-family: 'Fredoka', sans-serif;
            font-size: 54px;
            font-weight: 700;
            color: var(--accent-primary);
            margin-bottom: 6px;
        }

        .stat-item p {
            font-size: 15px;
            color: var(--text-secondary);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* FAQ Section Accordion styling */
        .faq-section {
            padding: 80px 5%;
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-container {
            margin-top: 50px;
        }

        details {
            background: #ffffff;
            border: 2px solid #1e293b;
            border-radius: 16px;
            margin-bottom: 20px;
            padding: 20px 24px;
            box-shadow: var(--card-shadow);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        details:hover {
            transform: translate(-2px, -2px);
            box-shadow: 8px 8px 0px #1e293b;
        }

        details[open] {
            background: #fcfcfd;
        }

        summary {
            font-family: 'Fredoka', sans-serif;
            font-weight: 600;
            font-size: 18px;
            cursor: pointer;
            list-style: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--text-primary);
            outline: none;
        }

        summary::-webkit-details-marker {
            display: none;
        }

        summary::after {
            content: '\f078';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            font-size: 14px;
            transition: transform 0.3s ease;
            color: var(--text-secondary);
        }

        details[open] summary::after {
            transform: rotate(180deg);
            color: var(--accent-primary);
        }

        .faq-content {
            margin-top: 14px;
            color: var(--text-secondary);
            font-size: 16px;
            line-height: 1.6;
            border-top: 2px dashed #e2e8f0;
            padding-top: 14px;
        }

        /* Footer */
        .footer {
            background: #ffffff;
            padding: 80px 5% 40px;
            border-top: 2px solid #1e293b;
            position: relative;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            max-width: 1200px;
            margin: 0 auto;
            gap: 50px;
        }

        .footer-col {
            flex: 1.5;
            min-width: 250px;
        }

        .footer-col.links-col {
            flex: 1;
        }

        .footer-col p {
            color: var(--text-secondary);
            margin-top: 20px;
            font-size: 15px;
            max-width: 320px;
        }

        .footer-col h3 {
            font-family: 'Fredoka', sans-serif;
            font-size: 20px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 24px;
            position: relative;
        }

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

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

        .footer-links a {
            font-family: 'Fredoka', sans-serif;
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 16px;
            transition: color 0.2s;
        }

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

        .footer-bottom {
            text-align: center;
            margin-top: 80px;
            padding-top: 30px;
            border-top: 2px dashed #1e293b;
            color: var(--text-secondary);
            font-size: 15px;
        }

        /* Responsive Design */
        @media (max-width: 968px) {
            .hero h1 {
                font-size: 34px;
            }

            .showcase-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

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

        @media (max-width: 768px) {
            .btn-text-desktop {
                display: none;
            }

            .btn-text-mobile {
                display: inline;
            }

            .navbar {
                padding: 10px 20px;
            }

            .nav-links {
                display: none;
            }

            .hero h1 {
                font-size: 30px;
            }

            .hero p {
                font-size: 16px;
            }

            .hero-buttons {
                flex-direction: column;
                width: 100%;
                max-width: 300px;
            }

            .btn-primary,
            .btn-google {
                width: 100%;
                justify-content: center;
            }

            .trust-stats {
                gap: 30px;
            }
        }

        /* Preloader Styles */
        #preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: #ffffff;
            z-index: 10000;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            transition: opacity 0.4s ease, visibility 0.4s ease;
        }

        #preloader.fade-out {
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
        }

        .preloader-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            font-family: 'Fredoka', sans-serif;
            font-weight: 700;
            font-size: 32px;
            color: #1e293b;
            margin-bottom: 24px;
            transform: scale(0.9);
            animation: preloaderPulse 1.5s infinite ease-in-out alternate;
        }

        .preloader-rocket {
            width: 50px;
            height: 50px;
            border-radius: 14px;
            background: var(--accent-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 22px;
            animation: preloaderBounce 1s infinite alternate cubic-bezier(0.455, 0.03, 0.515, 0.955);
        }

        .preloader-spinner {
            width: 40px;
            height: 40px;
            border: 4px solid rgba(124, 58, 237, 0.1);
            border-top: 4px solid var(--accent-primary);
            border-radius: 50%;
            animation: spin 0.8s linear infinite;
        }

        @keyframes preloaderBounce {
            0% {
                transform: translateY(0) rotate(0deg);
            }

            100% {
                transform: translateY(-12px) rotate(5deg);
            }
        }

        @keyframes preloaderPulse {
            0% {
                transform: scale(0.95);
            }

            100% {
                transform: scale(1.05);
            }
        }

        @keyframes spin {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }

        /* Mobile Hamburger Menu */
        .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--text-primary);
            font-size: 24px;
            cursor: pointer;
            outline: none;
            padding: 4px;
        }

        .menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(30, 41, 59, 0.4);
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
            z-index: 9999;
        }

        .menu-overlay.active {
            opacity: 1;
            pointer-events: auto;
        }

        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 100%;
            max-width: 320px;
            height: 100vh;
            background: #ffffff;
            border-left: 2px solid #1e293b;
            box-shadow: -5px 0 25px rgba(0, 0, 0, 0.08);
            transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 10000;
            display: flex;
            flex-direction: column;
            padding: 24px;
            text-align: left;
        }

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

        .mobile-menu-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-bottom: 20px;
            border-bottom: 2px dashed #1e293b;
            margin-bottom: 24px;
        }

        .menu-close {
            background: none;
            border: none;
            color: var(--text-primary);
            font-size: 24px;
            cursor: pointer;
            outline: none;
        }

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

        .mobile-menu-links a {
            font-family: 'Fredoka', sans-serif;
            font-weight: 600;
            font-size: 16px;
            color: var(--text-primary);
            text-decoration: none;
            transition: color 0.2s;
        }

        .mobile-menu-links a:hover {
            color: var(--accent-primary);
        }

        .btn-login-mobile {
            margin-top: 15px;
            background: var(--accent-primary);
            color: #fff !important;
            padding: 12px;
            border-radius: 12px;
            font-family: 'Fredoka', sans-serif;
            font-weight: 600;
            font-size: 15px;
            border: 2px solid #1e293b;
            box-shadow: 4px 4px 0px #1e293b;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            transition: transform 0.1s ease, box-shadow 0.1s ease;
            text-decoration: none !important;
        }

        .btn-login-mobile:active {
            transform: translate(2px, 2px);
            box-shadow: none;
        }

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

            .menu-toggle {
                display: block;
            }
        }
    

        @keyframes forgotSlideIn {
            from {
                opacity: 0;
                transform: translateY(-20px) scale(0.97);
            }

            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }
