/* ── Clean Hero & Global CTA Styles ── */
.hero-content-clean {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.hero-h1-clean {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    color: #fff;
}

.hero-sub-clean {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.hero-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 99px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    text-decoration: none;
}

.hero-cta-primary {
    background: #fff;
    color: #000;
}

.hero-cta-primary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

.hero-cta-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

/* Marquee Optimization */
.marquee-wrap {
    overflow: hidden;
    width: 100%;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee-scroll 40s linear infinite;
    animation-delay: 2s; /* Defer animation to reduce load */
    /* will-change removed for performance to avoid large composite layers */
}

@keyframes marquee-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.brand-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 40px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.brand-logo svg {
    transition: color 0.3s;
}

.brand-logo:hover {
    color: rgba(255, 255, 255, 0.9);
}

/* Start Project Section */
.cta-form-card-clean {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 32px;
    padding: 60px 40px;
    box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.5);
}

.cta-input-clean {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 16px 20px;
    color: #fff;
    transition: all 0.3s;
    outline: none;
}

.cta-input-clean:focus {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.03);
}

.cta-submit-clean {
    background: #fff;
    color: #000;
    font-weight: 700;
    border-radius: 12px;
    transition: all 0.3s;
}

.cta-submit-clean:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 20px 40px -10px rgba(255, 255, 255, 0.15);
}

@media (max-width: 768px) {
    .cta-form-card-clean {
        padding: 40px 24px;
        border-radius: 24px;
    }
}