/* ═══════════════════════════════════════════════════════════════
   CALLEGO LANDING — Responsive breakpoints & Light theme overrides
   Extracted from landing-sections.css and landing-base.css
   ═══════════════════════════════════════════════════════════════ */

/* ─── RESPONSIVE (from landing-sections) ───────────────────── */
@media (max-width: 1024px) {
    .hero-3d-scene {
        display: none;
    }

    .hero {
        text-align: center;
        justify-content: center;
    }

    .hero-content {
        max-width: 700px;
    }

    .hero-sub {
        max-width: 100%;
    }

    .hero-actions {
        justify-content: center;
    }

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

    .steps-row {
        flex-direction: column;
        gap: 24px;
    }

    .step-connector {
        transform: rotate(90deg);
        padding: 8px 0;
    }

    .step-card {
        max-width: 100%;
    }
}

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

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        inset: 0;
        background: var(--bg);
        justify-content: center;
        align-items: center;
        gap: 28px;
        z-index: 100;
    }

    .nav-links.open a {
        font-size: 22px;
    }

    .burger {
        display: flex;
    }

    .hero {
        padding: 100px 20px 60px;
        min-height: auto;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-actions {
        flex-direction: column;
        gap: 12px;
    }

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

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

    .section {
        padding: 80px 20px;
    }

    .footer-inner {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-left {
        flex-direction: column;
    }

    .footer-copy {
        margin-left: 0;
    }
}

/* ─── LIGHT THEME — Sections ──────────────────────────────── */
[data-theme="light"] .cta-card {
    background: linear-gradient(160deg, rgba(108, 99, 255, 0.08) 0%, rgba(240, 242, 248, 0.95) 100%);
    border-color: rgba(108, 99, 255, 0.18);
}

[data-theme="light"] .cta-card::before {
    background: radial-gradient(circle, rgba(108, 99, 255, 0.08), transparent 70%);
}

[data-theme="light"] .cta-card h2 {
    color: #1a1d2e;
}

[data-theme="light"] .cta-card p {
    color: #5a6078;
}

[data-theme="light"] .feature-card::before {
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

[data-theme="light"] .pricing-featured {
    border-color: rgba(108, 99, 255, 0.3);
    background: linear-gradient(160deg, rgba(108, 99, 255, 0.05) 0%, #fff 100%);
}

/* ─── LIGHT THEME — Base ──────────────────────────────────── */
[data-theme="light"] .float-card {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(108, 99, 255, 0.15);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08), 0 0 20px rgba(108, 99, 255, 0.05);
}

[data-theme="light"] .navbar.scrolled {
    background: rgba(245, 247, 251, 0.9);
}

[data-theme="light"] #bg-canvas {
    opacity: 0.15;
}

[data-theme="light"] .hero-glow {
    opacity: 0.2;
}