/* Product Page Specific Styles */
.product-page {
    padding-top: 100px;
}

.product-header {
    text-align: center;
    padding: 60px 0;
    background: linear-gradient(180deg, rgb(8, 9, 10) 0%, rgb(25, 27, 28) 100%);
}

.product-header h1 {
    font-size: 48px;
    font-weight: 700;
    color: rgb(255, 255, 255);
    margin-bottom: 16px;
    line-height: 1.2;
}

.product-header p {
    font-size: 18px;
    color: rgb(153, 169, 192);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.how-it-works {
    padding: 80px 0;
    background: rgb(8, 9, 10);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.step-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
    position: relative;
    transition: all 0.3s ease;
}

.step-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

.step-number {
    position: absolute;
    top: -16px;
    left: 32px;
    background: linear-gradient(135deg, rgb(51, 25, 85) 0%, rgb(25, 27, 28) 100%);
    color: rgb(255, 255, 255);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    border: 2px solid rgb(8, 9, 10);
}

.step-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: rgb(255, 255, 255);
    margin-bottom: 12px;
    margin-top: 8px;
}

.step-content p {
    color: rgb(153, 169, 192);
    line-height: 1.6;
    margin-bottom: 20px;
}

.step-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.step-features span {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 12px;
    color: rgb(138, 143, 152);
}

.technology-section {
    padding: 80px 0;
    background: rgb(8, 9, 10);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.technology-section h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: rgb(255, 255, 255);
    margin-bottom: 60px;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.tech-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.tech-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

.tech-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.tech-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: rgb(255, 255, 255);
    margin-bottom: 12px;
}

.tech-card p {
    color: rgb(153, 169, 192);
    line-height: 1.6;
}

.benefits-section {
    padding: 80px 0;
    background: rgb(8, 9, 10);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.benefits-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.benefits-text h2 {
    font-size: 32px;
    font-weight: 700;
    color: rgb(255, 255, 255);
    margin-bottom: 16px;
}

.benefits-text p {
    font-size: 16px;
    color: rgb(153, 169, 192);
    margin-bottom: 40px;
    line-height: 1.6;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.benefit-icon {
    font-size: 24px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    flex-shrink: 0;
}

.benefit-item h4 {
    font-size: 16px;
    font-weight: 600;
    color: rgb(255, 255, 255);
    margin-bottom: 4px;
}

.benefit-item p {
    color: rgb(153, 169, 192);
    line-height: 1.5;
    margin: 0;
}

.benefits-visual {
    display: flex;
    justify-content: center;
}

.stats-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    width: 100%;
    max-width: 400px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: rgb(255, 255, 255);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: rgb(138, 143, 152);
}

@media (max-width: 768px) {
    .product-header h1 {
        font-size: 36px;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .stats-card {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .technology-section h2,
    .benefits-text h2 {
        font-size: 28px;
    }
}
