
        :root {
            --cue-green: #10b981;
            --border-color: #007f514e;
            --cue-dark: #064e3b;
            --text-main: #1e293b;
            --text-light: #64748b;
            --bg-light: #f8fafc;
            --white: #ffffff;
            --glass: rgba(255, 255, 255, 0.8);
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--text-main);
            background-color: var(--white);
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        h1,
        h2,
        h3,
        .nav-link {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 700;
        }

        /* --- Navbar --- */
        .navbar {
            backdrop-filter: blur(10px);
            background: var(--glass);
            border-bottom: 1px solid rgba(226, 232, 240, 0.8);
            padding: 15px 0;
            transition: all 0.3s;
        }

        .header-logo-img {
            height: 60px;
            width: auto;
        }

        .nav-link {
            color: var(--text-main);
            font-size: 15px;
            margin: 0 15px;
            transition: color 0.2s;
        }

        .nav-link:hover {
            color: var(--cue-green);
        }

        /* --- Buttons --- */
        .btn-cue {
            background-color: var(--cue-green);
            color: white;
            font-weight: 600;
            padding: 12px 28px;
            border-radius: 10px;
            border: none;
            transition: all 0.3s;
            box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.2);
        }

        .btn-cue:hover {
            background-color: var(--cue-dark);
            transform: translateY(-2px);
            color: white;
            box-shadow: 0 20px 25px -5px rgba(16, 185, 129, 0.3);
        }

        .btn-outline-cue {
            border: 2px solid var(--cue-green);
            color: var(--cue-green);
            font-weight: 600;
            padding: 10px 25px;
            border-radius: 10px;
            transition: all 0.2s;
        }

        .btn-outline-cue:hover {
            background: var(--cue-green);
            color: white;
        }

        /* --- Hero Section --- */
        .hero-section {
            padding: 130px 0 100px;
            background: radial-gradient(circle at top right, rgba(16, 185, 129, 0.05), transparent),
                radial-gradient(circle at bottom left, rgba(16, 185, 129, 0.05), transparent);
        }

        .hero-title {
            font-size: clamp(2.5rem, 5vw, 4rem);
            line-height: 1.1;
            margin-bottom: 25px;
            letter-spacing: -2px;
        }

        .text-gradient {
            background: linear-gradient(135deg, var(--cue-green), #059669);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-mockup {
            position: relative;
            top: -40px;
            z-index: 1;
            width: 110%;
        }

        .hero-mockup img {
            border-radius: 24px;
            box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.15);
            border: 8px solid var(--white);
        }

        .floating-badge {
            position: absolute;
            background: var(--white);
            padding: 15px 20px;
            border-radius: 15px;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            gap: 12px;
            z-index: 2;
            animation: float 4s ease-in-out infinite;
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-10px);
            }
        }

        /* --- Features Section --- */
        .section-tag {
            color: var(--cue-green);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 13px;
            display: block;
            margin-bottom: 10px;
        }

        .feature-card {
            padding: 40px;
            border-radius: 20px;
            background: var(--white);
            border: 1px solid #f1f5f9;
            transition: all 0.3s;
            height: 100%;
        }

        .feature-card:hover {
            border-color: var(--cue-green);
            transform: translateY(-10px);
            box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.05);
        }

        .icon-box {
            height: 60px;
            width: 60px;
            background: rgba(16, 185, 129, 0.1);
            color: var(--cue-green);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
            margin-bottom: 25px;
        }

        /* --- Pricing Section --- */
        .pricing-section {
            background-color: var(--bg-light);
            padding: 100px 0;
        }

        .price-card {
            background: var(--white);
            padding: 50px 40px;
            border-radius: 24px;
            border: 1px solid #e2e8f0;
            transition: all 0.3s;
            position: relative;
        }

        .price-card.featured {
            border: 2.5px solid var(--cue-green);
            transform: scale(1.05);
            z-index: 2;
        }

        .price-tag {
            font-size: 48px;
            font-weight: 800;
            margin: 20px 0;
        }

        .price-tag span {
            font-size: 16px;
            color: var(--text-light);
            font-weight: 400;
        }

        /* --- Footer --- */
        .footer {
            background: #0f172a;
            color: rgba(255, 255, 255, 0.7);
            padding: 80px 0 30px;
        }

        .footer-logo {
            filter: brightness(0) invert(1);
            height: 45px;
            margin-bottom: 25px;
        }

        .footer h5 {
            color: var(--white);
            margin-bottom: 25px;
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: inherit;
            text-decoration: none;
            transition: color 0.2s;
        }

        .footer-links a:hover {
            color: var(--cue-green);
        }

        /* --- Responsive Hacks --- */
        @media (max-width: 991px) {
            .hero-mockup {
                margin-top: 60px;
            }

            .price-card.featured {
                transform: scale(1);
                margin: 20px 0;
            }
        }
    
/* Contact Section Styles */
.contact-info-card {
    background: linear-gradient(135deg, var(--cue-green), var(--cue-dark));
    color: white;
    padding: 40px;
    border-radius: 24px;
    height: 100%;
}

.contact-form-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 24px;
    border: 1px solid var(--border-color);
    box-shadow: 0 15px 30px rgba(0,0,0,0.03);
}

.contact-item-link {
    display: flex;
    align-items: center;
    gap: 15px;
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    margin-bottom: 25px;
    transition: 0.3s;
}

.contact-item-link:hover { color: white; transform: translateX(5px); }

.contact-icon-circle {
    height: 44px; width: 44px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
}

.form-floating > .form-control { border-radius: 12px; border: 1.5px solid var(--border-color); }
.form-floating > .form-control:focus { border-color: var(--cue-green); box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1); }