/* Product Page Styles */

.product-page {
    max-width: 1200px;
    margin: 0 auto;
}

/* Product Hero */
.product-hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3rem;
    background: var(--bg-card);
    border-radius: 20px;
    margin-bottom: 2rem;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.product-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse at right, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.product-hero.cyan-theme::before {
    background: radial-gradient(ellipse at right, rgba(6, 182, 212, 0.15) 0%, transparent 70%);
}

.product-hero.green-theme::before {
    background: radial-gradient(ellipse at right, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
}

.product-hero.purple-theme::before {
    background: radial-gradient(ellipse at right, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 1;
    flex: 1;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--text-primary), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.green-theme .hero-content h1 {
    background: linear-gradient(135deg, var(--text-primary), var(--success));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cyan-theme .hero-content h1 {
    background: linear-gradient(135deg, var(--text-primary), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.purple-theme .hero-content h1 {
    background: linear-gradient(135deg, var(--text-primary), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content .tagline {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.hero-icon {
    position: relative;
    z-index: 1;
    animation: float 3s ease-in-out infinite;
}

/* Badges */
.badge-free, .badge-ai {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.badge-free {
    background: linear-gradient(135deg, var(--success), #059669);
    color: white;
}

.badge-ai {
    background: linear-gradient(135deg, var(--purple), #6d28d9);
    color: white;
}

/* Platform/OS Badges */
.os-badges, .platform-badges {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.os-badge, .platform-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.os-badge.windows i {
    color: #00a4ef;
}

.platform-badge.azure {
    background: rgba(0, 120, 212, 0.2);
}

.platform-badge.aws {
    background: rgba(255, 153, 0, 0.85);
    padding: 0.5rem 0.75rem;
}

.platform-badge.m365 {
    background: rgba(139, 92, 246, 0.2);
}

/* Product Overview */
.product-overview {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1rem 2rem;
}

.overview-content .lead {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 1rem;
}

.overview-content p {
    color: var(--text-secondary);
}

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

.feature-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 15px 30px rgba(0, 212, 255, 0.1);
}

.feature-card.green:hover {
    border-color: var(--success);
    box-shadow: 0 15px 30px rgba(16, 185, 129, 0.1);
}

.feature-card.purple:hover {
    border-color: var(--purple);
    box-shadow: 0 15px 30px rgba(139, 92, 246, 0.1);
}

.feature-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 12px;
    margin-bottom: 1rem;
    color: var(--primary);
}

.feature-card.green .feature-icon {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
}

.feature-card.purple .feature-icon {
    background: rgba(139, 92, 246, 0.1);
    color: var(--purple);
}

.feature-card h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.feature-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Product Variants */
.product-variants {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.variant-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    position: relative;
}

.variant-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.variant-card.purple:hover {
    border-color: var(--purple);
}

.variant-card.featured {
    border-color: var(--purple);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.2);
}

.variant-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 212, 255, 0.2);
    color: var(--primary);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.variant-card.purple .variant-badge {
    background: rgba(139, 92, 246, 0.2);
    color: var(--purple);
}

.variant-icon {
    margin-bottom: 1rem;
}

.variant-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--primary);
}

.variant-card.purple h3 {
    color: var(--purple);
}

.variant-card > p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Feature List */
.feature-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.4rem 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.feature-list li i {
    color: var(--success);
    margin-top: 0.15rem;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.3);
}

.btn-primary.green {
    background: linear-gradient(135deg, var(--success), #059669);
}

.btn-primary.green:hover {
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

.btn-primary.purple {
    background: linear-gradient(135deg, var(--purple), #6d28d9);
}

.btn-primary.purple:hover {
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
}

.btn-primary.large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--primary);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    border: 2px solid var(--primary);
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--bg-primary);
}

.btn-outline.large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* CTA Section */
.cta-section {
    text-align: center;
    margin: 2rem 0;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Key Features Section */
.key-features {
    margin-bottom: 2rem;
}

.key-features h2 {
    text-align: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

/* Next Step Section */
.next-step {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(0, 102, 255, 0.05));
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 16px;
    padding: 2rem;
    margin-top: 2rem;
}

.next-step.cyan {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(6, 182, 212, 0.05));
    border-color: rgba(6, 182, 212, 0.3);
}

.next-step.green {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.05));
    border-color: rgba(16, 185, 129, 0.3);
}

.next-step.purple {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(139, 92, 246, 0.05));
    border-color: rgba(139, 92, 246, 0.3);
}

.next-content {
    max-width: 600px;
}

.next-label {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.next-step.cyan .next-label {
    color: var(--cyan);
}

.next-step.green .next-label {
    color: var(--success);
}

.next-step.purple .next-label {
    color: var(--purple);
}

.next-content h3 {
    font-size: 1.5rem;
    margin: 0.5rem 0;
}

.next-content p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.btn-next {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-next:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.3);
}

.btn-next.green {
    background: var(--success);
}

.btn-next.green:hover {
    box-shadow: 0 5px 20px rgba(16, 185, 129, 0.3);
}

.btn-next.purple {
    background: var(--purple);
}

.btn-next.purple:hover {
    box-shadow: 0 5px 20px rgba(139, 92, 246, 0.3);
}

/* Back to Overview */
.back-to-overview {
    margin-top: 2rem;
    text-align: center;
}

.overview-cta {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid var(--border);
}

.overview-cta h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.overview-cta p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

/* Video Section */
.video-section {
    margin: 2rem 0;
}

.video-section h2 {
    text-align: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 1.5rem;
}

.video-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid var(--border);
}

.video-card h4 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 8px;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .product-hero {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-icon {
        margin-top: 1.5rem;
    }

    .os-badges, .platform-badges {
        justify-content: center;
    }

    .product-variants {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary.large,
    .btn-outline.large {
        width: 100%;
        justify-content: center;
    }

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