/* LP Automation Specific Styles */
:root {
    --neon-green: #00ff9d;
    --neon-dark-green: #00c853;
    --dark-bg: #0b0f19;
    --card-bg: #161b28;
}

body {
    background-color: var(--dark-bg);
    color: #fff;
    font-family: 'Rajdhani', sans-serif;
}

/* Hero V2 */
.lp-hero-v2 {
    padding: 50px 0 60px;
    position: relative;
    overflow: hidden;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Green/Blue tint for Automation */
    background: linear-gradient(135deg, rgba(0, 77, 64, 0.9) 0%, rgba(11, 15, 25, 0.95) 100%), url('../assets/images/lp2_hero_tech_team_v2.png');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Green overlay */
    background: radial-gradient(circle at center, rgba(0, 255, 157, 0.05) 0%, rgba(11, 15, 25, 0.4) 80%);
    z-index: 2;
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.lp-hero-v2 h1 span {
    display: block;
    font-size: 28px;
    color: #bdc3c7;
    font-weight: 400;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.lp-hero-v2 h1 strong {
    color: #fff;
    background: linear-gradient(to right, #fff, #00ff9d);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.lp-hero-v2 p {
    font-size: 20px;
    color: #a0aab5;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.cta-button-large {
    background: linear-gradient(45deg, #00c853, #00ff9d);
    color: #0b0f19;
    /* Dark text on bright green */
    padding: 20px 50px;
    font-size: 20px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 0 30px rgba(0, 255, 157, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.cta-button-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 50px rgba(0, 255, 157, 0.6);
}

.social-proof-text {
    margin-top: 20px;
    font-size: 14px;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.social-proof-text i {
    color: #00ff9d;
}

/* Trust Bar */
.trust-bar {
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.02);
    overflow: hidden;
}

.trust-marquee {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.trust-track {
    display: flex;
    gap: 80px;
    width: max-content;
    animation: scroll 30s linear infinite;
}

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

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

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

.trust-logo {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Value Stack / Comparison */
.value-section {
    padding: 100px 0;
    background: #0b0f19;
}

.vs-card {
    background: var(--card-bg);
    border: 1px solid rgba(0, 255, 157, 0.1);
    /* Green tint border */
    border-radius: 20px;
    padding: 50px;
    margin-top: 50px;
    position: relative;
}

.vs-grid {
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    gap: 40px;
    align-items: start;
}

.vs-divider {
    background: rgba(255, 255, 255, 0.1);
    height: 100%;
}

.vs-side ul {
    list-style: none;
    padding: 0;
}

.vs-side li {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 18px;
}

.vs-bad li i {
    color: #ef4444;
}

.vs-good li i {
    color: #00ff9d;
    /* Green Check */
}

.vs-good li {
    color: #fff;
    font-weight: 500;
}

.vs-bad li {
    color: #94a3b8;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #111625;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.faq-answer {
    padding: 0 20px 20px;
    color: #94a3b8;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Rocket Divider Animation - Green Theme */
.rocket-divider {
    position: relative;
    height: 100px;
    background: linear-gradient(to bottom, #0b0f19 50%, #111625 50%);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.rocket-container {
    position: absolute;
    left: -150px;
    animation: flyAcross 15s linear infinite;
    display: flex;
    align-items: center;
    z-index: 20;
}

.rocket-ship {
    font-size: 40px;
    color: #00ff9d;
    /* Green Rocket */
    transform: rotate(0deg);
    /* Robot icon is better flat? Or slight tilt? */
    z-index: 2;
}

.rocket-trail {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 200px;
    height: 4px;
    background: linear-gradient(to left, rgba(0, 255, 157, 0), rgba(0, 255, 157, 0.8), #00c853);
    border-radius: 4px;
    z-index: 1;
}

.rocket-trail::before,
.rocket-trail::after {
    content: '';
    position: absolute;
    right: 0;
    width: 80%;
    height: 2px;
    background: inherit;
    opacity: 0.6;
}

.rocket-trail::before {
    top: -6px;
    width: 150px;
}

.rocket-trail::after {
    bottom: -6px;
    width: 120px;
}

/* Tech Lines / Speed Lines */
.tech-lines {
    position: absolute;
    right: 10px;
    width: 300px;
    height: 60px;
    background: repeating-linear-gradient(90deg,
            transparent,
            transparent 10px,
            rgba(0, 255, 157, 0.1) 10px,
            rgba(0, 255, 157, 0.2) 20px);
    opacity: 0.3;
    mask-image: linear-gradient(to left, black, transparent);
    -webkit-mask-image: linear-gradient(to left, black, transparent);
    z-index: 0;
}

@keyframes flyAcross {
    0% {
        left: -300px;
    }

    100% {
        left: 100%;
    }
}

@media (max-width: 768px) {
    .lp-hero-v2 h1 {
        font-size: 40px;
    }

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

    .vs-divider {
        display: none;
    }
}

/* CTA Section Spacing/Style */
.cta-section {
    margin-top: 150px;
    position: relative;
}

/* Footer Styles */
footer {
    padding: 30px 0;
    text-align: center;
    background: #0b0f19;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.copyright {
    color: #64748b;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
}