/* Automation Page - Hero Only */

a:focus,
button:focus,
.logo:focus,
.btn-large:focus,
.btn-ghost:focus,
.nav-cta:focus,
.service-box:focus {
    outline: none;
}

a:focus-visible,
button:focus-visible,
.logo:focus-visible,
.btn-large:focus-visible,
.btn-ghost:focus-visible,
.nav-cta:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.3);
    outline-offset: 2px;
}

/* Hero Section */
.hero-video-section {
    padding: 8rem 0 3rem;
}

.hero-video-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-video-content {
    max-width: 550px;
}

.hero-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    color: var(--light-gray);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}

.hero-text {
    font-size: 1.1rem;
    color: var(--light-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.hero-pricing {
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
    margin-bottom: 0.5rem;
}

.pricing-amount {
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.pricing-period {
    font-size: 1.2rem;
    color: var(--light-gray);
    font-weight: 600;
}

.pricing-note {
    color: var(--gray);
    font-size: 0.9rem;
    margin: 0;
}

.hero-video-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
                0 0 40px rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border);
}

.hero-video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.service-box p {
    color: var(--light-gray);
    line-height: 1.7;
    margin: 0;
}

.service-box:nth-child(1) { animation-delay: 0.1s; }
.service-box:nth-child(2) { animation-delay: 0.2s; }
.service-box:nth-child(3) { animation-delay: 0.3s; }
.service-box:nth-child(4) { animation-delay: 0.4s; }
.service-box:nth-child(5) { animation-delay: 0.5s; }
.service-box:nth-child(6) { animation-delay: 0.6s; }

@media (max-width: 968px) {
    .hero-video-section {
        padding: 7rem 0 3rem;
    }

    .hero-video-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-video-content {
        text-align: center;
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    .hero-video-section {
        padding: 6rem 1.5rem 2rem;
    }

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

    .hero-text {
        font-size: 1rem;
    }

    .pricing-amount {
        font-size: 2rem;
    }

    .pricing-period {
        font-size: 1rem;
    }

    .hero-video-wrapper {
        border-radius: 8px;
    }
}

* {
    transition-timing-function: var(--ease);
}