/* Shepherd Union Specific Styles */

:root {
    --accent-union: #5d5dff;
    /* Unique blue for Union */
    --accent-union-alt: #9f00ff;
    /* Purple gradient part */
    --gradient-union: linear-gradient(135deg, var(--accent-union), var(--accent-union-alt));
}

.product-page {
    background-color: var(--bg-dark);
}

/* Product Hero */
.product-hero {
    height: 80vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding-top: 80px;
    background-image: url('../../images/estrada.jpg');
    /* Reusing existing asset */
    background-size: cover;
    background-position: center;
}

.product-hero .hero-overlay {
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.6) 0%, rgba(10, 10, 10, 0.95) 100%);
}

.product-hero .hero-container {
    position: relative;
    z-index: 10;
}

.product-hero h1 {
    font-size: clamp(3rem, 8vw, 5rem);
    margin-bottom: 20px;
}

.product-hero .highlight {
    background: var(--gradient-union);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.product-badge {
    display: inline-block;
    padding: 8px 16px;
    background: var(--gradient-union);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(93, 93, 255, 0.4);
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Sections */
.product-section {
    padding: 80px 0;
}

.center {
    text-align: center;
}

.center .line {
    margin: 15px auto 0;
}

.large-text {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 30px;
    line-height: 1.4;
    font-weight: 500;
}

.concept-info p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.concept-info strong {
    color: var(--accent-union);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    text-align: left;
}

.feature-card .icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    color: var(--accent-union);
    margin-bottom: 15px;
}

/* Stakeholders */
.stakeholders-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.stakeholder {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    transition: var(--transition-fast);
}

.stakeholder:hover {
    border-color: var(--accent-union);
    background: var(--bg-card-hover);
}

.stakeholder .role {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
    border-bottom: 2px solid var(--accent-union);
    padding-bottom: 10px;
    width: fit-content;
}

.stakeholder p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Final CTA */
.product-cta {
    padding: 100px 0;
}

.cta-card {
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.8), rgba(15, 15, 15, 0.9));
    padding: 60px 40px;
    border-radius: 30px;
    border: 1px solid var(--glass-border);
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.cta-card h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-card p {
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: var(--accent-cyan);
    font-weight: 600;
    margin-bottom: 40px;
}

.pulse {
    width: 12px;
    height: 12px;
    background: var(--accent-cyan);
    border-radius: 50%;
    position: relative;
}

.pulse::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--accent-cyan);
    border-radius: 50%;
    animation: cta-pulse 2s infinite;
}

@keyframes cta-pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(3);
        opacity: 0;
    }
}

@keyframes animate-fade-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes animate-slide-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: animate-fade-in 1s ease-out forwards;
}

.animate-slide-up {
    opacity: 0;
    animation: animate-slide-up 0.8s ease-out forwards;
}

.animate-slide-up.delay-100 {
    animation-delay: 0.2s;
}

@media (max-width: 768px) {
    .product-hero {
        height: 60vh;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .cta-card {
        padding: 40px 20px;
    }

    .cta-card h2 {
        font-size: 1.8rem;
    }
}