/* Product Page Styles */

/* Hero Section */
.product-hero .hero-content {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}

.product-hero .hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin: 24px 0;
    color: #fff;
}

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

.product-hero .hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.6);
}

/* Modules Section */
.modules-section {
    background: white;
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.module-card {
    background: var(--warm-bg-card);
    border-radius: var(--radius-xl);
    padding: 40px;
    position: relative;
    transition: var(--transition-base);
    border: 1px solid var(--border-subtle);
}

.module-card:hover {
    border-color: var(--text-primary);
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.module-number {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary-purple);
    margin-bottom: 16px;
}

.module-icon {
    width: 72px;
    height: 72px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.module-icon img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.1));
}

.module-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.module-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.module-detail {
    padding: 16px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-md);
}

.module-card:hover .module-detail {
    background: var(--warm-bg);
}

.detail-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary-purple);
    margin-bottom: 8px;
}

.module-detail p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Features Highlight Section */
.features-highlight-section {
    background: var(--warm-bg);
}

.features-highlight-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-highlight-card {
    background: var(--warm-bg-card);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    text-align: center;
    transition: var(--transition-base);
    border: 1px solid var(--border-subtle);
}

.feature-highlight-card:hover {
    transform: translateY(-8px);
    border-color: var(--text-primary);
    box-shadow: var(--shadow-xl);
}

.feature-highlight-icon {
    width: 64px;
    height: 64px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.feature-highlight-icon img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.08));
}

.feature-highlight-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

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

/* Responsive */
@media (max-width: 1024px) {
    .modules-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-highlight-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .modules-grid {
        grid-template-columns: 1fr;
    }

    .features-highlight-grid {
        grid-template-columns: 1fr;
    }

    .product-hero {
        padding: 120px 0 60px;
    }
}

/* CTA Section Overrides for Product Page */
.cta-section {
    background: transparent;
    padding: 100px 0;
}

.cta-section .container {
    background: #0a0a0a;
    border-radius: var(--radius-2xl);
    padding: 120px 40px;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    display: none;
}

.cta-section .container::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn-primary {
    background: white;
    color: var(--text-primary);
}

.cta-section .btn-primary:hover {
    background: var(--warm-bg);
}

.cta-section .btn-secondary {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-section .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Scroll Triggered Animations */
[data-scroll] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-scroll].is-visible {
    opacity: 1;
    transform: translateY(0);
}

[data-scroll-delay="1"] {
    transition-delay: 0.1s;
}

[data-scroll-delay="2"] {
    transition-delay: 0.2s;
}

[data-scroll-delay="3"] {
    transition-delay: 0.3s;
}
