/* ============================================
   ASKEVE PRODUCT PAGE - SPECIFIC STYLES
   Dynamic Green Neon Theme
   ============================================ */

/* --- Product Hero --- */
.product-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px var(--space-md);
    overflow: hidden;
    background: var(--bg-darker);
}

.product-hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 30%, rgba(68, 214, 165, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.product-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(68, 214, 165, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(68, 214, 165, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

.product-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.product-logo-large {
    width: 200px;
    height: auto;
    margin: 0 auto var(--space-md);
    filter: drop-shadow(0 0 40px rgba(68, 214, 165, 0.4));
    animation: productLogoPulse 4s ease-in-out infinite;
}

@keyframes productLogoPulse {

    0%,
    100% {
        filter: drop-shadow(0 0 30px rgba(68, 214, 165, 0.4));
    }

    50% {
        filter: drop-shadow(0 0 60px rgba(68, 214, 165, 0.6));
    }
}

.product-hero h1 {
    font-size: clamp(3rem, 10vw, 5rem);
    margin-bottom: var(--space-xs);
}

.tagline {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-sm);
    font-style: italic;
}

/* --- Solution Grid --- */
.solution-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    max-width: 1200px;
    margin: 0 auto;
}

.solution-card {
    background: linear-gradient(135deg,
            rgba(68, 214, 165, 0.05) 0%,
            rgba(13, 26, 13, 0.8) 100%);
    border: 1px solid rgba(68, 214, 165, 0.15);
    padding: var(--space-lg);
    text-align: center;
    transition: all 0.4s var(--ease-out);
    clip-path: var(--clip-angular);
    position: relative;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--neon);
    opacity: 0;
    transition: opacity 0.3s;
}

.solution-card:hover {
    border-color: rgba(68, 214, 165, 0.4);
    transform: translateY(-8px);
    box-shadow: var(--shadow-neon);
}

.solution-card:hover::before {
    opacity: 1;
}

.solution-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(68, 214, 165, 0.1);
    border: 1px solid rgba(68, 214, 165, 0.2);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    margin: 0 auto var(--space-sm);
    transition: all 0.3s var(--ease-out);
}

.solution-icon svg {
    width: 36px;
    height: 36px;
    stroke: var(--neon);
}

.solution-card:hover .solution-icon {
    transform: scale(1.1);
    box-shadow: var(--shadow-neon);
    background: rgba(68, 214, 165, 0.2);
}

.solution-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-xs);
}

.solution-card p {
    font-size: 0.95rem;
    margin: 0 auto;
}

/* --- Results Grid --- */
.results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    max-width: 1000px;
    margin: 0 auto;
}

.result-card {
    background: linear-gradient(135deg,
            rgba(68, 214, 165, 0.08) 0%,
            rgba(13, 26, 13, 0.6) 100%);
    border: 1px solid rgba(68, 214, 165, 0.2);
    padding: var(--space-lg);
    text-align: center;
    transition: all 0.4s var(--ease-out);
    clip-path: var(--clip-angular);
}

.result-card:hover {
    border-color: var(--neon);
    box-shadow: var(--shadow-neon);
    transform: translateY(-5px);
}

.result-value {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px var(--neon-glow);
    margin-bottom: var(--space-xs);
    animation: neonFlicker 5s infinite;
}

.result-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* --- AskEve Solution Section --- */
.askeve-solution {
    background: var(--bg-darker);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .solution-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .product-hero {
        padding-top: 160px;
    }

    .product-logo-large {
        width: 150px;
    }

    .solution-grid,
    .results-grid {
        grid-template-columns: 1fr;
    }

    .solution-card,
    .result-card {
        padding: var(--space-md);
    }
}

@media (max-width: 480px) {
    .product-hero {
        padding-top: 120px;
    }

    .product-logo-large {
        width: 120px;
    }

    .product-title {
        font-size: 2rem;
    }

    .product-tagline {
        font-size: 1rem;
    }

    .solution-icon {
        width: 50px;
        height: 50px;
    }

    .result-value {
        font-size: clamp(2rem, 6vw, 2.5rem);
    }
}