/* Product Page Specific Styles */
.product-hero {
    padding-top: 10rem;
    padding-bottom: 5rem;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.product-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
    pointer-events: none;
}
.product-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 60%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(34, 211, 238, 0.1) 0%, transparent 70%);
    pointer-events: none;
}
.product-hero h1 {
    font-weight: 800;
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}
.product-hero .lead {
    font-size: 1.35rem;
    opacity: 0.9;
    max-width: 540px;
}
.product-hero .btn-light {
    background: #fff;
    color: #1a1a2e;
    font-weight: 600;
    padding: 0.875rem 2rem;
    border-radius: 2rem;
    border: none;
}
.product-hero .btn-light:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}
.product-hero .btn-outline-light {
    border: 2px solid rgba(255,255,255,0.5);
    color: #fff;
    padding: 0.875rem 2rem;
    border-radius: 2rem;
}
.product-hero .btn-outline-light:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
}
.hero-mockup {
    position: relative;
    z-index: 1;
}
.hero-mockup img {
    border-radius: 16px;
    box-shadow: 0 25px 80px rgba(0,0,0,0.4);
}

/* Feature highlights */
.feature-highlight {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}
.feature-highlight i {
    color: #22d3ee;
    font-size: 1.25rem;
    margin-top: 0.2rem;
}
.feature-highlight span {
    font-size: 1.1rem;
}

/* Features Grid */
.features-grid {
    padding: 5rem 0;
}
.feature-box {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 24px rgba(60,60,60,0.08);
    height: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}
.feature-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(60,60,60,0.15);
}
.feature-box .icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #8b5cf6 0%, #06b6d4 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}
.feature-box .icon-wrapper i {
    font-size: 2rem;
    color: #fff;
}
.feature-box h3 {
    font-weight: 700;
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}
.feature-box p {
    color: #6b7280;
    line-height: 1.7;
    margin: 0;
}

/* Showcase Section */
.showcase-section {
    padding: 5rem 0;
    background: #f8fafc;
}
.showcase-item {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 5rem;
}
.showcase-item:last-child {
    margin-bottom: 0;
}
.showcase-item.reverse {
    flex-direction: row-reverse;
}
.showcase-content {
    flex: 1;
}
.showcase-content h3 {
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}
.showcase-content p {
    color: #6b7280;
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}
.showcase-image {
    flex: 1;
}
.showcase-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 15px 50px rgba(60,60,60,0.15);
}
@media (max-width: 991px) {
    .showcase-item,
    .showcase-item.reverse {
        flex-direction: column;
        gap: 2rem;
    }
}

/* How It Works */
.how-it-works {
    padding: 5rem 0;
    background: #fff;
}
.step-card {
    text-align: center;
    padding: 2rem 1.5rem;
}
.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8b5cf6 0%, #06b6d4 100%);
    color: #fff;
    font-weight: 800;
    font-size: 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}
.step-card h4 {
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #1a1a2e;
}
.step-card p {
    color: #6b7280;
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #8b5cf6 0%, #06b6d4 100%);
    color: #fff;
    text-align: center;
}
.cta-section h2 {
    font-weight: 800;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.cta-section p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}
.cta-section .btn-light {
    background: #fff;
    color: #8b5cf6;
    font-weight: 600;
    padding: 1rem 2.5rem;
    border-radius: 2rem;
    font-size: 1.1rem;
}
.cta-section .btn-light:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .product-hero {
        padding-top: 7rem;
        text-align: center;
    }
    .product-hero h1 {
        font-size: 2.5rem;
    }
    .product-hero .lead {
        margin: 0 auto 2rem;
    }
    .hero-mockup {
        margin-top: 3rem;
    }
}

