        :root {
            --primary: #0f172a;
            --secondary: #1e293b;
            --accent: #0ea5e9;
            --accent-dark: #0284c7;
            --accent-light: #38bdf8;
            --text: #0f172a;
            --text-muted: #64748b;
            --bg: #ffffff;
            --bg-alt: #f8fafc;
            --card-bg: #ffffff;
            --border: #e2e8f0;
        }

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

        body {
            font-family: 'Inter', sans-serif;
            background: var(--bg);
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 1rem 0;
            border-bottom: 1px solid var(--border);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 900;
            color: var(--primary);
            text-decoration: none;
            letter-spacing: -0.5px;
            z-index: 1001;
        }

        .logo span {
            color: var(--accent);
        }

        .nav-links {
            display: flex;
            gap: 0;
            list-style: none;
            align-items: center;
        }

        .nav-links li {
            position: relative;
        }

        .nav-links > li > a {
            color: var(--text);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            font-size: 0.95rem;
            padding: 0.8rem 1.5rem;
            display: block;
            border-radius: 8px;
        }

        .nav-links > li > a:hover {
            color: var(--accent);
            background: rgba(14, 165, 233, 0.1);
        }

        /* Dropdown Menu */
        .dropdown {
            position: relative;
        }

        .dropdown-toggle {
            display: flex;
            align-items: center;
            gap: 0.3rem;
            cursor: pointer;
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 0.5rem;
            min-width: 240px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            margin-top: 0.5rem;
        }

        .dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-menu li {
            list-style: none;
        }

        .dropdown-menu a {
            color: var(--text-muted);
            text-decoration: none;
            padding: 0.8rem 1rem;
            display: flex;
            align-items: center;
            gap: 0.8rem;
            border-radius: 8px;
            transition: all 0.2s ease;
            font-size: 0.9rem;
        }

        .dropdown-menu a:hover {
            background: rgba(14, 165, 233, 0.1);
            color: var(--accent);
            padding-left: 1.3rem;
        }

        .dropdown-menu .menu-icon {
            font-size: 1.2rem;
            width: 24px;
            text-align: center;
        }

        /* Mobile Menu Toggle */
        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 0.5rem;
            z-index: 1001;
        }

        .menu-toggle span {
            width: 25px;
            height: 3px;
            background: var(--accent);
            border-radius: 3px;
            transition: all 0.3s ease;
        }

        .menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

        .menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        .cta-button {
            background: var(--accent);
            color: white;
            padding: 0.8rem 1.8rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .cta-button:hover {
            background: var(--accent-light);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(14, 165, 233, 0.3);
        }

        /* Hero Section */
        .hero {
            margin-top: 80px;
            padding: 4rem 2rem 3rem;
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(14, 165, 233, 0.1) 0%, transparent 70%);
            animation: pulse 8s ease-in-out infinite;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(14, 165, 233, 0.08) 0%, transparent 70%);
            animation: pulse 10s ease-in-out infinite reverse;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.3; }
            50% { transform: scale(1.2); opacity: 0.15; }
        }

        .hero-content {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(0, 212, 255, 0.1);
            border: 1px solid var(--accent);
            padding: 0.6rem 1.2rem;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--accent);
            margin-bottom: 2rem;
            animation: fadeInUp 0.8s ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: 5rem;
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            animation: fadeInUp 0.8s ease-out 0.2s both;
        }

        .hero h1 .accent {
            color: var(--accent);
            display: block;
        }

        .hero-subtitle {
            font-size: 1.4rem;
            color: var(--text-muted);
            margin-bottom: 1rem;
            font-weight: 500;
            animation: fadeInUp 0.8s ease-out 0.4s both;
        }

        .hero-description {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--text-muted);
            max-width: 800px;
            margin-bottom: 2rem;
            animation: fadeInUp 0.8s ease-out 0.6s both;
        }

        .hero-trust {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
            animation: fadeInUp 0.8s ease-out 0.8s both;
            margin-bottom: 1rem;
        }

        .hero-trust-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: white;
            background: rgba(14, 165, 233, 0.9);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
        }

        /* Trust Strip - Remove or hide */
        .trust-strip {
            display: none;
        }

        .cta-buttons {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
            animation: fadeInUp 0.8s ease-out 0.8s both;
        }

        .btn-primary, .btn-secondary {
            padding: 1.2rem 2.5rem;
            font-size: 1.05rem;
            font-weight: 600;
            border-radius: 8px;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            border: none;
            cursor: pointer;
        }

        .btn-primary {
            background: var(--orange);
            color: white;
            box-shadow: 0 8px 24px rgba(255, 107, 53, 0.3);
        }

        .btn-primary:hover {
            background: var(--orange-light);
            transform: translateY(-2px);
            box-shadow: 0 12px 32px rgba(255, 107, 53, 0.4);
        }

        .btn-secondary {
            background: transparent;
            color: var(--text);
            border: 2px solid var(--accent);
        }

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

        /* Trust Strip */
        .trust-strip {
            padding: 1rem 2rem;
            background: var(--bg-alt);
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }

        .trust-content {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: 0.4rem;
            font-weight: 600;
            color: var(--accent);
            font-size: 0.85rem;
        }

        .trust-divider {
            width: 3px;
            height: 3px;
            background: var(--accent);
            border-radius: 50%;
        }

        /* Services Section */
        .services {
            padding: 4rem 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            margin-bottom: 2.5rem;
        }

        .section-title h2 {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            font-weight: 900;
            margin-bottom: 1rem;
            color: var(--accent);
        }

        .section-title p {
            font-size: 1.2rem;
            color: var(--text-muted);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .service-card {
            background: var(--card-bg);
            padding: 2rem;
            border-radius: 16px;
            border: 1px solid var(--border);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: linear-gradient(180deg, var(--accent) 0%, var(--accent-dark) 100%);
            transform: scaleY(0);
            transition: transform 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-8px);
            border-color: var(--accent);
            box-shadow: 0 12px 40px rgba(14, 165, 233, 0.15);
        }

        .service-card:hover::before {
            transform: scaleY(1);
        }

        .service-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            display: block;
            color: var(--accent);
        }

        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            font-weight: 700;
            color: var(--accent);
        }

        .service-card p {
            color: var(--text-muted);
            margin-bottom: 1.5rem;
            line-height: 1.7;
        }

        .service-link {
            color: var(--accent);
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: gap 0.3s ease;
        }

        .service-link:hover {
            gap: 1rem;
            color: var(--accent-dark);
        }

        /* Why Section */
        .why-section {
            padding: 4rem 2rem;
            background: var(--bg-alt);
            position: relative;
        }

        .why-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .why-text h2 {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            font-weight: 900;
            margin-bottom: 1.5rem;
            color: var(--accent);
        }

        .why-text p {
            font-size: 1.15rem;
            color: var(--text-muted);
            line-height: 1.8;
            margin-bottom: 2rem;
        }

        .why-features {
            display: grid;
            gap: 1rem;
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            padding: 1rem;
            background: rgba(14, 165, 233, 0.05);
            border-radius: 8px;
            border-left: 3px solid var(--accent);
        }

        .feature-icon {
            color: var(--accent);
            font-size: 1.2rem;
            margin-top: 0.2rem;
        }

        /* How It Works */
        .how-it-works {
            padding: 4rem 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .steps {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 3rem;
            margin-top: 2.5rem;
        }

        .step {
            text-align: center;
            position: relative;
        }

        .step-number {
            width: 70px;
            height: 70px;
            background: var(--accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            font-weight: 900;
            color: white;
            margin: 0 auto 1rem;
            position: relative;
            box-shadow: 0 8px 24px rgba(14, 165, 233, 0.25);
        }

        .step::after {
            content: '→';
            position: absolute;
            top: 40px;
            right: -3rem;
            font-size: 2rem;
            color: var(--accent);
            opacity: 0.3;
        }

        .step:last-child::after {
            display: none;
        }

        .step h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
        }

        .step p {
            color: var(--text-muted);
        }

        /* Social Proof */
        .social-proof {
            padding: 4rem 2rem;
            background: var(--bg-alt);
            text-align: center;
        }

        .social-content {
            max-width: 900px;
            margin: 0 auto;
        }

        .social-content h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            font-weight: 900;
            margin-bottom: 1rem;
            color: var(--accent);
        }

        .social-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .stat-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.8rem;
            padding: 1.5rem;
            background: white;
            border-radius: 12px;
            border: 1px solid var(--border);
            transition: all 0.3s ease;
        }

        .stat-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 24px rgba(14, 165, 233, 0.15);
            border-color: var(--accent);
        }

        .stat-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, rgba(14, 165, 233, 0.2) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent);
        }

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

        .stat-item strong {
            font-size: 1rem;
            color: var(--text);
            font-weight: 600;
        }

        .social-tagline {
            margin-top: 1.5rem;
            font-size: 1.1rem;
            color: var(--text-muted);
        }

        /* Final CTA */
        .final-cta {
            padding: 4rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .cta-container {
            display: grid;
            grid-template-columns: 200px 1fr;
            gap: 3rem;
            align-items: center;
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
            padding: 3rem;
            border-radius: 20px;
            border: 1px solid var(--border);
        }

        .cta-image-wrapper {
            position: relative;
        }

        .cta-image {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid var(--accent);
            box-shadow: 0 8px 24px rgba(14, 165, 233, 0.2);
            display: block;
        }

        .cta-content h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.2rem;
            font-weight: 900;
            margin-bottom: 1rem;
            color: var(--accent);
        }

        .cta-content p {
            font-size: 1.1rem;
            color: var(--text-muted);
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .tiktok-links {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .tiktok-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.8rem 1.5rem;
            background: white;
            border: 2px solid var(--accent);
            border-radius: 8px;
            color: var(--accent);
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            font-size: 0.95rem;
        }

        .tiktok-link:hover {
            background: var(--accent);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
        }

        .tiktok-icon {
            width: 20px;
            height: 20px;
        }

        @media (max-width: 768px) {
            .cta-container {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 2rem;
            }

            .cta-image-wrapper {
                display: flex;
                justify-content: center;
            }

            .cta-image {
                width: 150px;
                height: 150px;
            }

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

        /* Footer */
        footer {
            background: var(--bg-alt);
            padding: 2rem 2rem 1rem;
            border-top: 1px solid var(--border);
            color: var(--text);
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 3rem;
            margin-bottom: 1rem;
        }

        .footer-links-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }

        .footer-brand h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            font-weight: 900;
            margin-bottom: 0.5rem;
            color: var(--primary);
        }

        .footer-brand h3 span {
            color: var(--accent);
        }

        .footer-brand p {
            color: var(--text-muted);
            line-height: 1.6;
            font-size: 0.9rem;
        }

        .footer-links h4 {
            font-size: 1rem;
            margin-bottom: 0.8rem;
            color: var(--accent);
            font-weight: 600;
        }

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

        .footer-links a {
            color: var(--text-muted);
            text-decoration: none;
            display: block;
            margin-bottom: 0.4rem;
            transition: color 0.3s ease;
            font-size: 0.9rem;
        }

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

        .footer-bottom {
            text-align: center;
            padding-top: 1rem;
            border-top: 1px solid var(--border);
            color: var(--text-muted);
            font-size: 0.85rem;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero h1 {
                font-size: 3.5rem;
            }

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

            .why-content {
                grid-template-columns: 1fr;
            }

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

            .step::after {
                display: none;
            }

            .footer-content {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .menu-toggle {
                display: flex;
            }

            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 300px;
                height: 100vh;
                background: white;
                flex-direction: column;
                padding: 5rem 2rem 2rem;
                transition: right 0.3s ease;
                box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
                overflow-y: auto;
            }

            .nav-links.active {
                right: 0;
            }

            .nav-links > li > a {
                padding: 1rem;
                color: var(--text);
            }

            .dropdown-menu {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                margin-top: 0.5rem;
                margin-left: 1rem;
                border-left: 2px solid var(--accent);
                border-radius: 0;
                background: transparent;
                box-shadow: none;
                border: none;
                border-left: 2px solid var(--accent);
            }

            .dropdown-menu a {
                color: var(--text-muted);
            }

            .cta-button {
                width: 100%;
                text-align: center;
            }

            .hero {
                padding: 3rem 1.5rem 2.5rem;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero-subtitle {
                font-size: 1.1rem;
            }

            .cta-buttons {
                flex-direction: column;
            }

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

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

            .footer-content {
                grid-template-columns: 1fr;
            }
        }
