/* Downpipe Page Styles */
.downpipe-banner {
    height: 80vh;
    position: relative;
    overflow: hidden;
}

.banner-split {
    display: flex;
    height: 100%;
}

.banner-text {
    flex: 1;
    background: #111;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem;
}

.banner-text h1 {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.banner-text p {
    font-size: 1.2rem;
    opacity: 0.8;
}

.banner-image {
    flex: 1;
    position: relative;
}

.banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Technical Benefits Section */
.technical-benefits {
    padding: 5rem 0;
    background: #f8f9fa;
}

.tech-header {
    margin-bottom: 4rem;
}

.tech-header h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.tech-item {
    display: flex;
    align-items: flex-start;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

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

.tech-icon {
    font-size: 2rem;
    color: #dc1a1a;
    margin-right: 1.5rem;
}

.tech-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

/* Product Showcase */
.product-showcase {
    padding: 5rem 0;
}

.showcase-card {
    display: flex;
    align-items: center;
    background: linear-gradient(45deg, #111, #333);
    border-radius: 12px;
    overflow: hidden;
    color: white;
}

.showcase-content {
    flex: 1;
    padding: 4rem;
}

.showcase-image {
    flex: 1;
    padding: 2rem;
}

.showcase-image img {
    width: 100%;
    height: auto;
    transform: perspective(1000px) rotateY(-15deg);
    transition: transform 0.3s ease;
}

.showcase-card:hover .showcase-image img {
    transform: perspective(1000px) rotateY(-5deg);
}

.spec-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.spec-list li {
    margin: 1rem 0;
    font-size: 1.1rem;
}

.spec-list li span {
    color: #dc1a1a;
    font-weight: bold;
    margin-right: 0.5rem;
}

.spec-btn {
    background: #dc1a1a;
    color: white;
    text-decoration: none;
    border: none;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: bold;
    transition: all 0.3s ease;
}

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

/* Performance Gains */
.performance-gains {
    padding: 5rem 0;
    background: #f8f9fa;
}

.gains-container {
    display: flex;
    justify-content: space-around;
    margin-top: 3rem;
}

.gain-stat {
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: bold;
    color: #dc1a1a;
    line-height: 1;
}

.stat-number span {
    font-size: 1.5rem;
    margin-left: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: #666;
    margin-top: 0.5rem;
}

/* Vehicle Compatibility */
.compatibility {
    padding: 5rem 0;
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.brand-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.brand-item img {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
}

.brand-item h4 {
    margin-bottom: 0.5rem;
}

/* CTA Section */
.downpipe-cta {
    padding: 5rem 0;
    background:  #dc1a1a;
}

.cta-box {
    text-align: center;
    color: white;
}

.cta-box h2{
    font-size: 2.8rem;
}

.cta-box p{
    font-size: 1.2rem;
}

.cta-btn {
    display: inline-block;
    background: white;
    color: #dc1a1a;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    margin-top: 2rem;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

@media (max-width: 992px) {
    .banner-split {
        flex-direction: column;
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
    }
    
    .showcase-card {
        flex-direction: column;
    }
    
    .brand-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .banner-text {
        padding: 3rem;
    }
    
    .banner-text h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .gains-container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .brand-grid {
        grid-template-columns: 1fr;
    }
}