/* ============================================
   AUTOMATION PAGE SPECIFIC STYLES
   ============================================ */

/* Neutral fallback while hero video is loading */
.automation-hero .page-hero-video-bg,
.automation-hero .page-hero-video-bg video {
    background-color: #000;
}

/* Epic Hero Title */
/* Epic Hero Title */
.automation-hero-title {
    font-size: clamp(5rem, 15vw, 10rem);
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 24px;
    text-align: center;
}

/* Hero Content Centering Overrides */
.automation-hero .hero-content-wrapper {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    grid-template-columns: none !important;
    text-align: center !important;
}

.automation-hero .page-hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 100% !important;
    /* Override 700px limit */
}

.automation-intro-content .page-hero-subtitle {
    margin-left: auto;
    margin-right: auto;
    max-width: 900px;
    /* Wider subtitle for epic look */
}

/* Hero Buttons Container */
.hero-buttons {
    display: flex;
    gap: 16px;
    margin-top: 32px;
    justify-content: center;
}

/* Primary button - Colored */
.hero-buttons .btn-primary {
    background: var(--neon);
    color: #000;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--neon);
}

.hero-buttons .btn-primary:hover {
    background: transparent;
    color: var(--neon);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(68, 214, 165, 0.3);
}

/* Secondary button - Less colored */
.hero-buttons .btn-secondary {
    background: transparent;
    color: var(--text-primary);
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-buttons .btn-secondary:hover {
    border-color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .automation-hero-title {
        font-size: clamp(2.5rem, 10vw, 5rem);
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        text-align: center;
    }
}
