/* Explain: Component styles for forms, cards, trust badges, ticker, and contact tiles. - */
.lead-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 768px) and (max-width: 1023px) {
    .lead-form {
        gap: 0.75rem;
    }

    .lead-form .input {
        height: 2.75rem;
        min-height: 2.75rem;
    }

    .lead-form .btn {
        min-height: 2.9rem;
    }
}

.service-card {
    min-height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    background: rgba(0, 0, 0, 0.4);
    padding: 1.25rem;
    box-shadow: var(--shadow-soft);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
    backdrop-filter: blur(12px);
}

.service-card:nth-child(2),
.service-card:nth-child(3),
.service-card:nth-child(4) {
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.4);
}

.service-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 183, 3, 0.65);
    box-shadow: var(--shadow-card);
}

.service-icon {
    display: flex;
    height: 3rem;
    width: 3rem;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: var(--accent-soft);
    color: var(--primary-color);
    font-size: 1.15rem;
}

.trust-pill {
    display: flex;
    min-height: 3.25rem;
    align-items: center;
    gap: 0.75rem;
    border-radius: 18px;
    background: #ffffff;
    padding: 0.8rem 0.95rem;
    font-weight: 800;
    color: var(--primary-color);
    box-shadow: 0 8px 22px rgba(27, 42, 74, 0.06);
}

.review-card {
    margin: 0;
    display: flex;
    min-height: 100%;
    flex-direction: column;
    gap: 0.9rem;
    border-radius: 22px;
    background: #ffffff;
    padding: 1.75rem;
    color: var(--text-muted);
    box-shadow: 0 8px 22px rgba(27, 42, 74, 0.06);
}

.review-card p {
    margin: 0;
    line-height: 1.75;
}

.review-card cite {
    margin-top: auto;
    display: block;
    padding-top: 0.25rem;
    color: var(--primary-color);
    font-style: normal;
    font-weight: 800;
}

.contact-tile {
    display: flex;
    gap: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.08);
    padding: 1.25rem;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.12);
}

.contact-tile h3 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 800;
}

.contact-tile p {
    margin: 0.35rem 0 0;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.6;
}

.status-success {
    background: rgba(23, 107, 58, 0.1);
    color: var(--success-color);
}

.status-error {
    background: rgba(180, 35, 24, 0.1);
    color: var(--error-color);
}

@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.animate-marquee {
    animation: scroll-left 30s linear infinite;
    display: flex;
    white-space: nowrap;
}

.animate-marquee:hover {
    animation-play-state: paused;
}

@keyframes scanlight {
    0% { transform: translateX(-150%) skewX(-30deg); }
    50% { transform: translateX(250%) skewX(-30deg); }
    100% { transform: translateX(-150%) skewX(-30deg); }
}

.animate-scanlight {
    animation: scanlight 12s ease-in-out infinite;
}

@keyframes titleActionGlow {
    0% {
        text-shadow: 0 0 15px rgba(255, 87, 34, 0.4), 0 0 30px rgba(255, 87, 34, 0.2);
        transform: scale(1) translateY(0);
    }
    50% {
        text-shadow: 0 0 30px rgba(255, 87, 34, 0.9), 0 0 60px rgba(255, 215, 0, 0.7);
        transform: scale(1.03) translateY(-2px);
    }
    100% {
        text-shadow: 0 0 15px rgba(255, 87, 34, 0.4), 0 0 30px rgba(255, 87, 34, 0.2);
        transform: scale(1) translateY(0);
    }
}

.animate-title-action {
    animation: titleActionGlow 2.5s ease-in-out infinite;
    will-change: transform, text-shadow;
}

@keyframes neonGlow {
    0%, 100% {
        text-shadow: 0 0 10px rgba(255, 87, 34, 0.8), 0 0 20px rgba(255, 87, 34, 0.6), 0 0 40px rgba(255, 87, 34, 0.4);
    }
    50% {
        text-shadow: 0 0 20px rgba(255, 87, 34, 1), 0 0 35px rgba(255, 215, 0, 0.9), 0 0 60px rgba(255, 87, 34, 0.7);
    }
}

.animate-neon-glow {
    animation: neonGlow 2s ease-in-out infinite;
}

.stat-number-glow {
    text-shadow: 0 0 20px rgba(255, 87, 34, 0.4), 0 0 40px rgba(255, 87, 34, 0.2);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), text-shadow 0.4s ease;
}

.group:hover .stat-number-glow {
    transform: scale(1.12);
    text-shadow: 0 0 25px rgba(255, 87, 34, 0.9), 0 0 50px rgba(255, 215, 0, 0.6);
}

#roi-calculator input[type="number"]::-webkit-inner-spin-button,
#roi-calculator input[type="number"]::-webkit-outer-spin-button {
    opacity: 1 !important;
    height: 1.75rem;
    cursor: pointer;
}

.custom-scrollbar-dark::-webkit-scrollbar {
    width: 6px;
}
.custom-scrollbar-dark::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}
.custom-scrollbar-dark::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
}
.custom-scrollbar-dark::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

.metallic-title {
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 20%, #94a3b8 45%, #ffffff 65%, #cbd5e1 85%, #64748b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 15px rgba(255, 255, 255, 0.35)) drop-shadow(0 0 35px rgba(0, 136, 204, 0.4));
}

.metallic-orange {
    background: linear-gradient(135deg, #ffffff 0%, #ffc4ab 25%, #ff5722 55%, #ffffff 75%, #e64a19 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 20px rgba(255, 87, 34, 0.8));
}

.metallic-badge {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 50%, rgba(0, 0, 0, 0.6) 100%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 8px 25px rgba(0, 0, 0, 0.7);
}

@keyframes laserHoloScan {
    0% { transform: translateY(-100%); opacity: 0; }
    50% { opacity: 0.8; }
    100% { transform: translateY(1000%); opacity: 0; }
}

.animate-holo-scan {
    animation: laserHoloScan 6s ease-in-out infinite;
}

@keyframes chartPulseGlow {
    0%, 100% { opacity: 0.4; filter: drop-shadow(0 0 8px rgba(0, 220, 255, 0.4)); }
    50% { opacity: 0.9; filter: drop-shadow(0 0 22px rgba(0, 220, 255, 0.9)); }
}

.animate-chart-glow {
    animation: chartPulseGlow 3s ease-in-out infinite;
}
