/* Extending the existing product styles */
.preview-image {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.preview-image:hover {
    transform: translateY(-8px);
}

.btn-visit {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    background: #1A1A1A;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
}

.btn-visit:hover {
    background: #333;
    transform: translateY(-2px);
}

/* Rest of the styles similar to world-radio.css but customized for Rage Leather */

.tech-stack {
    background: #ffffff;
    padding: 8rem 0;
}

.tech-stack h2,
.development-process h2,
.integrations h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.section-intro {
    text-align: center;
    color: #666;
    margin-bottom: 5rem;
    font-size: 1.25rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.tech-item {
    padding: 2.5rem;
    background: #f8f9ff;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(65, 105, 255, 0.1);
}

.tech-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(65, 105, 255, 0.08);
}

.tech-item svg {
    width: 56px;
    height: 56px;
    margin-bottom: 1.5rem;
    color: #4169FF;
}

.tech-item h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: #1a1a1a;
}

.tech-item p {
    color: #666;
    line-height: 1.6;
}

.development-process {
    background: #f8f9ff;
    padding: 8rem 0;
}

.process-grid {
    display: grid;
    gap: 2.5rem;
    margin-top: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.process-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2.5rem;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.process-item:hover {
    transform: translateX(8px);
}

.process-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    color: #4169FF;
    padding: 1rem;
    background: #f8f9ff;
    border-radius: 12px;
}

.process-content h3 {
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
    color: #1a1a1a;
}

.process-content p {
    color: #666;
    line-height: 1.6;
    font-size: 1.1rem;
}

.integrations {
    background: #ffffff;
    padding: 8rem 0;
}

.integration-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 3rem;
    background: #f8f9ff;
    border-radius: 24px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(65, 105, 255, 0.1), rgba(65, 105, 255, 0.05));
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(65, 105, 255, 0.08);
}

.feature-content {
    flex: 1;
}

.feature h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
    line-height: 1.2;
}

.feature p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Make the last feature span full width if odd number */
.feature:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: calc(50% - 1.5rem);
    margin-left: auto;
    margin-right: auto;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .integration-features {
        gap: 2rem;
        padding: 0 2rem;
    }
    
    .feature {
        padding: 2.5rem;
    }
    
    .feature h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .integration-features {
        grid-template-columns: 1fr;
        padding: 0 1.5rem;
    }
    
    .feature:last-child:nth-child(odd) {
        max-width: 100%;
    }
    
    .feature {
        padding: 2rem;
    }
    
    .feature h3 {
        font-size: 1.4rem;
    }
    
    .feature p {
        font-size: 1rem;
    }
}

@media (max-width: 1024px) {
    .product-showcase {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .product-content h2 {
        font-size: 2.8rem;
    }

    .product-subtitle {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .tech-stack,
    .development-process,
    .integrations {
        padding: 5rem 0;
    }
    
    .process-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .process-item:hover {
        transform: translateY(-5px);
    }

    .tech-stack h2,
    .development-process h2,
    .integrations h2 {
        font-size: 2rem;
    }

    .section-intro {
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }
} 