﻿/* ==================== HERO SECTION ==================== */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    width: 100%;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

    .hero-background::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
/*        background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.75) 100%);*/
        z-index: 2;
    }

    .hero-background img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(0.7);
    }

.breadcrumb-nav {
    position: absolute;
    top: 30px;
    left: 80px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
}

.breadcrumb-link {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

    .breadcrumb-link:hover, .breadcrumb-link.active {
        color: #ffffff;
    }

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
}

.hero-content {
    position: relative;
    z-index: 5;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-title {
    font-size: 64px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
    line-height: 1.15;
    max-width: 1100px;
    text-shadow: 2px 4px 16px rgba(0, 0, 0, 0.6);
    animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 32px;
    max-width: 900px;
    line-height: 1.5;
    text-shadow: 1px 2px 10px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-description {
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    max-width: 1100px;
    line-height: 1.7;
    text-shadow: 1px 2px 8px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 52px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-description {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .breadcrumb-nav {
        left: 20px;
        top: 20px;
        font-size: 10px;
    }

    .hero-content {
        padding: 0 20px;
    }

    .hero-title {
        font-size: 36px;
        margin-bottom: 16px;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .hero-description {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .hero-description {
        font-size: 13px;
    }
}

/* ==================== SERVICES SECTION ==================== */
.services-section {
    background-color: #f5f5f5;
    padding: 80px 0;
}

.service-item {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.service-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.service-title {
    font-size: 48px;
    font-weight: 700;
    color: #000000;
    line-height: 1.2;
    margin: 0;
}

.service-description {
    font-size: 16px;
    font-weight: 400;
    color: #333333;
    line-height: 1.8;
    margin: 0;
    max-width: 580px;
}

.service-image {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

    .service-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

.service-item:hover .service-image img {
    transform: scale(1.05);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1200px) {
    .service-item {
        gap: 60px;
        padding: 0 60px;
    }

    .service-title {
        font-size: 42px;
    }

    .service-image {
        height: 350px;
    }
}

@media (max-width: 992px) {
    .services-section {
        padding: 60px 0;
    }

    .service-item {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 40px;
    }

    .service-title {
        font-size: 38px;
    }

    .service-description {
        font-size: 15px;
        max-width: 100%;
    }

    .service-image {
        height: 320px;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 50px 0;
    }

    .service-item {
        padding: 0 20px;
        gap: 30px;
    }

    .service-title {
        font-size: 32px;
    }

    .service-description {
        font-size: 14px;
    }

    .service-image {
        height: 280px;
    }
}

@media (max-width: 480px) {
    .service-content {
        gap: 16px;
    }

    .service-title {
        font-size: 28px;
    }

    .service-description {
        font-size: 13px;
        line-height: 1.7;
    }

    .service-image {
        height: 240px;
        border-radius: 12px;
    }
}

/* ==================== PPF SECTION ==================== */
.ppf-section {
    position: relative;
    min-height: 600px;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.ppf-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

    .ppf-background img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(0.75);
    }

.ppf-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
/*    background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);*/
    z-index: 2;
}

.ppf-content {
    position: relative;
    z-index: 5;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 80px;
    width: 100%;
}

.ppf-title {
    font-size: 56px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 16px 0;
    line-height: 1.2;
    text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.5);
}

.ppf-subtitle {
    font-size: 22px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 40px 0;
    line-height: 1.4;
    text-shadow: 1px 2px 8px rgba(0, 0, 0, 0.5);
}

.ppf-features {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

    .ppf-features li {
        font-size: 16px;
        font-weight: 400;
        color: rgba(255, 255, 255, 0.9);
        line-height: 1.5;
        text-shadow: 1px 2px 6px rgba(0, 0, 0, 0.5);
        position: relative;
    }

.ppf-tagline {
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.5;
    text-shadow: 1px 2px 8px rgba(0, 0, 0, 0.5);
    max-width: 700px;
}

    .ppf-tagline .highlight {
        color: #ff4444;
        font-weight: 500;
    }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1200px) {
    .ppf-content {
        padding: 70px 60px;
    }

    .ppf-title {
        font-size: 48px;
    }

    .ppf-subtitle {
        font-size: 20px;
    }

    .ppf-features li {
        font-size: 15px;
    }

    .ppf-tagline {
        font-size: 17px;
    }
}

@media (max-width: 992px) {
    .ppf-section {
        min-height: 550px;
    }

    .ppf-content {
        padding: 60px 40px;
    }

    .ppf-title {
        font-size: 42px;
    }

    .ppf-subtitle {
        font-size: 18px;
        margin-bottom: 32px;
    }

    .ppf-features {
        gap: 14px;
        margin-bottom: 32px;
    }

        .ppf-features li {
            font-size: 14px;
        }

    .ppf-tagline {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .ppf-section {
        min-height: 500px;
    }

    .ppf-content {
        padding: 50px 20px;
    }

    .ppf-title {
        font-size: 36px;
        margin-bottom: 12px;
    }

    .ppf-subtitle {
        font-size: 16px;
        margin-bottom: 28px;
    }

    .ppf-features {
        gap: 12px;
        margin-bottom: 28px;
    }

        .ppf-features li {
            font-size: 13px;
        }

    .ppf-tagline {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .ppf-section {
        min-height: 450px;
    }

    .ppf-title {
        font-size: 28px;
    }

    .ppf-subtitle {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .ppf-features {
        gap: 10px;
        margin-bottom: 24px;
    }

        .ppf-features li {
            font-size: 12px;
        }

    .ppf-tagline {
        font-size: 14px;
    }
}

/* ==================== PAINTJOB SECTION ==================== */
.paintjob-section {
    background-color: #f5f5f5;
    padding: 80px 0;
}

.paintjob-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.paintjob-image {
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

    .paintjob-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

.paintjob-container:hover .paintjob-image img {
    transform: scale(1.05);
}

.paintjob-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.paintjob-title {
    font-size: 48px;
    font-weight: 700;
    color: #000000;
    line-height: 1.2;
    margin: 0;
}

.paintjob-description {
    font-size: 16px;
    font-weight: 400;
    color: #333333;
    line-height: 1.7;
    margin: 0;
}

.finish-types {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 8px 0;
}

.finish-badge {
    display: inline-block;
    padding: 10px 24px;
    background-color: #e0e0e0;
    color: #333333;
    font-size: 14px;
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.3s ease;
}

    .finish-badge:hover {
        background-color: #d0d0d0;
        transform: translateY(-2px);
    }

.paintjob-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

    .paintjob-features li {
        font-size: 15px;
        font-weight: 400;
        color: #333333;
        line-height: 1.6;
    }

.paintjob-tagline {
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    margin: 8px 0 0 0;
    line-height: 1.6;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1200px) {
    .paintjob-container {
        gap: 60px;
        padding: 0 60px;
    }

    .paintjob-title {
        font-size: 42px;
    }

    .paintjob-image {
        height: 400px;
    }
}

@media (max-width: 992px) {
    .paintjob-section {
        padding: 60px 0;
    }

    .paintjob-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 40px;
    }

    .paintjob-title {
        font-size: 38px;
    }

    .paintjob-description {
        font-size: 15px;
    }

    .paintjob-image {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .paintjob-section {
        padding: 50px 0;
    }

    .paintjob-container {
        padding: 0 20px;
        gap: 30px;
    }

    .paintjob-title {
        font-size: 32px;
    }

    .paintjob-description {
        font-size: 14px;
    }

    .finish-types {
        gap: 10px;
    }

    .finish-badge {
        padding: 8px 20px;
        font-size: 13px;
    }

    .paintjob-features li {
        font-size: 14px;
    }

    .paintjob-tagline {
        font-size: 15px;
    }

    .paintjob-image {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .paintjob-content {
        gap: 18px;
    }

    .paintjob-title {
        font-size: 28px;
    }

    .paintjob-description {
        font-size: 13px;
    }

    .finish-types {
        gap: 8px;
    }

    .finish-badge {
        padding: 7px 18px;
        font-size: 12px;
    }

    .paintjob-features li {
        font-size: 13px;
        gap: 10px;
    }

    .paintjob-tagline {
        font-size: 14px;
    }

    .paintjob-image {
        height: 260px;
        border-radius: 12px;
    }
}

/* ==================== BODYKITS SECTION ==================== */
.bodykits-section {
    background-color: #1a1a1a;
    padding: 80px 0;
}

.bodykits-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.bodykits-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.bodykits-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin: 0;
}

.bodykits-description {
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin: 0;
}

.bodykits-features {
    list-style: none;
    padding: 0;
    margin: 8px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

    .bodykits-features li {
        font-size: 15px;
        font-weight: 400;
        color: rgba(255, 255, 255, 0.85);
        line-height: 1.6;
        position: relative;
        padding-left: 20px;
    }

        .bodykits-features li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: rgba(255, 255, 255, 0.6);
            font-size: 18px;
        }

.bodykits-tagline {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin: 8px 0 0 0;
    line-height: 1.6;
}

.bodykits-image {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

    .bodykits-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

.bodykits-container:hover .bodykits-image img {
    transform: scale(1.05);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1200px) {
    .bodykits-container {
        gap: 60px;
        padding: 0 60px;
    }

    .bodykits-title {
        font-size: 42px;
    }

    .bodykits-image {
        height: 450px;
    }
}

@media (max-width: 992px) {
    .bodykits-section {
        padding: 60px 0;
    }

    .bodykits-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 40px;
    }

    .bodykits-title {
        font-size: 38px;
    }

    .bodykits-description {
        font-size: 15px;
    }

    .bodykits-features li {
        font-size: 14px;
    }

    .bodykits-tagline {
        font-size: 15px;
    }

    .bodykits-image {
        height: 400px;
        order: -1;
    }
}

@media (max-width: 768px) {
    .bodykits-section {
        padding: 50px 0;
    }

    .bodykits-container {
        padding: 0 20px;
        gap: 30px;
    }

    .bodykits-title {
        font-size: 32px;
    }

    .bodykits-description {
        font-size: 14px;
    }

    .bodykits-features {
        gap: 10px;
    }

        .bodykits-features li {
            font-size: 13px;
        }

    .bodykits-tagline {
        font-size: 14px;
    }

    .bodykits-image {
        height: 320px;
    }
}

@media (max-width: 480px) {
    .bodykits-content {
        gap: 18px;
    }

    .bodykits-title {
        font-size: 28px;
    }

    .bodykits-description {
        font-size: 13px;
    }

    .bodykits-features {
        gap: 8px;
    }

        .bodykits-features li {
            font-size: 12px;
            padding-left: 16px;
        }

            .bodykits-features li::before {
                font-size: 16px;
            }

    .bodykits-tagline {
        font-size: 13px;
    }

    .bodykits-image {
        height: 280px;
        border-radius: 12px;
    }
}

/* ==================== BESPOKE INTERIORS SECTION ==================== */
.bespoke-interiors-section {
    background-color: #f5f5f5;
    padding: 80px 0;
}

.bespoke-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
    text-align: center;
}

.bespoke-title {
    font-size: 48px;
    font-weight: 700;
    color: #000000;
    line-height: 1.2;
    margin: 0 0 16px 0;
}

.bespoke-subtitle {
    font-size: 20px;
    font-weight: 400;
    color: #555555;
    line-height: 1.5;
    margin: 0 0 50px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.feature-card {
    background-color: #3a3a3a;
    border-radius: 16px;
    padding: 30px 20px;
    min-height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

    .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        background-color: #444444;
    }

.feature-text {
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.6;
    margin: 0;
    text-align: center;
}

.bespoke-tagline {
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    margin: 0;
    line-height: 1.5;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1200px) {
    .bespoke-container {
        padding: 0 60px;
    }

    .bespoke-title {
        font-size: 42px;
    }

    .bespoke-subtitle {
        font-size: 18px;
        margin-bottom: 40px;
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }
}

@media (max-width: 992px) {
    .bespoke-interiors-section {
        padding: 60px 0;
    }

    .bespoke-container {
        padding: 0 40px;
    }

    .bespoke-title {
        font-size: 36px;
    }

    .bespoke-subtitle {
        font-size: 17px;
        margin-bottom: 35px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        margin-bottom: 35px;
    }

    .feature-card {
        padding: 25px 18px;
        min-height: 130px;
    }

    .feature-text {
        font-size: 13px;
    }

    .bespoke-tagline {
        font-size: 17px;
    }
}

@media (max-width: 768px) {
    .bespoke-interiors-section {
        padding: 50px 0;
    }

    .bespoke-container {
        padding: 0 20px;
    }

    .bespoke-title {
        font-size: 30px;
        margin-bottom: 12px;
    }

    .bespoke-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-bottom: 30px;
    }

    .feature-card {
        padding: 22px 16px;
        min-height: 110px;
    }

    .feature-text {
        font-size: 13px;
    }

    .bespoke-tagline {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .bespoke-title {
        font-size: 26px;
    }

    .bespoke-subtitle {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .features-grid {
        gap: 12px;
        margin-bottom: 25px;
    }

    .feature-card {
        padding: 20px 14px;
        min-height: 100px;
        border-radius: 12px;
    }

    .feature-text {
        font-size: 12px;
        line-height: 1.5;
    }

    .bespoke-tagline {
        font-size: 15px;
    }
}

/* ==================== EXHAUSTS SECTION ==================== */
.exhausts-section {
    background-color: #f5f5f5;
    padding: 80px 0;
}

.exhausts-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.images-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto;
    gap: 16px;
}

.image-card {
    position: relative;
    width: 100%;
    height: 180px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

    .image-card.large {
        grid-column: 1 / -1;
        height: 200px;
    }

    .image-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .image-card:hover img {
        transform: scale(1.1);
    }

.exhausts-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.exhausts-title {
    font-size: 48px;
    font-weight: 700;
    color: #000000;
    line-height: 1.2;
    margin: 0;
}

.exhausts-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

    .exhausts-features li {
        font-size: 15px;
        font-weight: 400;
        color: #333333;
        line-height: 1.6;
    }

.exhausts-tagline {
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    margin: 8px 0 0 0;
    line-height: 1.6;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1200px) {
    .exhausts-container {
        gap: 50px;
        padding: 0 60px;
    }

    .exhausts-title {
        font-size: 42px;
    }

    .image-card {
        height: 160px;
    }

        .image-card.large {
            height: 180px;
        }
}

@media (max-width: 992px) {
    .exhausts-section {
        padding: 60px 0;
    }

    .exhausts-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 40px;
    }

    .exhausts-title {
        font-size: 38px;
    }

    .exhausts-features li {
        font-size: 14px;
    }

    .exhausts-tagline {
        font-size: 15px;
    }

    .image-card {
        height: 150px;
    }

        .image-card.large {
            height: 170px;
        }
}

@media (max-width: 768px) {
    .exhausts-section {
        padding: 50px 0;
    }

    .exhausts-container {
        padding: 0 20px;
        gap: 30px;
    }

    .exhausts-title {
        font-size: 32px;
    }

    .exhausts-features {
        gap: 10px;
    }

        .exhausts-features li {
            font-size: 13px;
        }

    .exhausts-tagline {
        font-size: 14px;
    }

    .images-grid {
        gap: 12px;
    }

    .image-card {
        height: 130px;
    }

        .image-card.large {
            height: 150px;
        }
}

@media (max-width: 480px) {
    .exhausts-content {
        gap: 18px;
    }

    .exhausts-title {
        font-size: 28px;
    }

    .exhausts-features {
        gap: 8px;
    }

        .exhausts-features li {
            font-size: 12px;
        }

    .exhausts-tagline {
        font-size: 13px;
    }

    .images-grid {
        gap: 10px;
    }

    .image-card {
        height: 110px;
        border-radius: 10px;
    }

        .image-card.large {
            height: 130px;
        }
}

/* ==================== AUDIO SECTION ==================== */
.audio-section {
    background-color: #f5f5f5;
    padding: 80px 0;
}

.audio-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.audio-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.audio-title {
    font-size: 48px;
    font-weight: 700;
    color: #000000;
    line-height: 1.2;
    margin: 0;
}

.audio-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

    .audio-features li {
        font-size: 15px;
        font-weight: 400;
        color: #333333;
        line-height: 1.6;
    }

.audio-tagline {
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    margin: 8px 0 0 0;
    line-height: 1.6;
    max-width: 450px;
}

.audio-image {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

    .audio-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

.audio-container:hover .audio-image img {
    transform: scale(1.05);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1200px) {
    .audio-container {
        gap: 60px;
        padding: 0 60px;
    }

    .audio-title {
        font-size: 42px;
    }

    .audio-image {
        height: 350px;
    }
}

@media (max-width: 992px) {
    .audio-section {
        padding: 60px 0;
    }

    .audio-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 40px;
    }

    .audio-title {
        font-size: 38px;
    }

    .audio-features li {
        font-size: 14px;
    }

    .audio-tagline {
        font-size: 15px;
        max-width: 100%;
    }

    .audio-image {
        height: 320px;
    }
}

@media (max-width: 768px) {
    .audio-section {
        padding: 50px 0;
    }

    .audio-container {
        padding: 0 20px;
        gap: 30px;
    }

    .audio-title {
        font-size: 32px;
    }

    .audio-features {
        gap: 10px;
    }

        .audio-features li {
            font-size: 13px;
        }

    .audio-tagline {
        font-size: 14px;
    }

    .audio-image {
        height: 280px;
    }
}

@media (max-width: 480px) {
    .audio-content {
        gap: 18px;
    }

    .audio-title {
        font-size: 28px;
    }

    .audio-features {
        gap: 8px;
    }

        .audio-features li {
            font-size: 12px;
        }

    .audio-tagline {
        font-size: 13px;
    }

    .audio-image {
        height: 240px;
        border-radius: 12px;
    }
}

/* ==================== HOW IT WORKS SECTION ==================== */
.how-it-works-section {
    background-color: #1a1a1a;
    padding: 80px 0;
}

.how-it-works-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
    text-align: center;
}

.how-it-works-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin: 0 0 60px 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.step-card {
    background-color: #2a2a2a;
    border-radius: 16px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
    min-height: 280px;
}

    .step-card:hover {
        transform: translateY(-8px);
        background-color: #333333;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
    }

.step-icon {
    width: 48px;
    height: 48px;
    color: #ffffff;
    margin-bottom: 16px;
}

    .step-icon svg {
        width: 100%;
        height: 100%;
    }

.step-number {
    position: absolute;
    top: 32px;
    right: 24px;
    font-size: 48px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.15);
    line-height: 1;
}

.step-title {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.step-description {
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    margin: 0;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1200px) {
    .how-it-works-container {
        padding: 0 60px;
    }

    .how-it-works-title {
        font-size: 42px;
        margin-bottom: 50px;
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .step-card {
        min-height: 260px;
    }
}

@media (max-width: 992px) {
    .how-it-works-section {
        padding: 60px 0;
    }

    .how-it-works-container {
        padding: 0 40px;
    }

    .how-it-works-title {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .step-card {
        padding: 28px 20px;
        min-height: 240px;
    }

    .step-icon {
        width: 44px;
        height: 44px;
    }

    .step-number {
        font-size: 42px;
    }

    .step-title {
        font-size: 17px;
    }

    .step-description {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .how-it-works-section {
        padding: 50px 0;
    }

    .how-it-works-container {
        padding: 0 20px;
    }

    .how-it-works-title {
        font-size: 32px;
        margin-bottom: 35px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .step-card {
        padding: 24px 18px;
        min-height: 220px;
    }

    .step-icon {
        width: 40px;
        height: 40px;
    }

    .step-number {
        font-size: 38px;
        top: 24px;
        right: 18px;
    }

    .step-title {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .step-description {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .how-it-works-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .step-card {
        padding: 22px 16px;
        min-height: 200px;
        border-radius: 12px;
    }

    .step-icon {
        width: 36px;
        height: 36px;
        margin-bottom: 12px;
    }

    .step-number {
        font-size: 36px;
    }

    .step-title {
        font-size: 15px;
    }

    .step-description {
        font-size: 11px;
        line-height: 1.5;
    }
}

/* ==================== PROCESS SECTION ==================== */
.process-section {
    background-color: #f5f5f5;
    padding: 80px 0;
}

.process-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
    text-align: center;
}

.process-title {
    font-size: 48px;
    font-weight: 700;
    color: #000000;
    line-height: 1.2;
    margin: 0 0 16px 0;
}

.process-subtitle {
    font-size: 18px;
    font-weight: 400;
    color: #555555;
    line-height: 1.5;
    margin: 0 0 60px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.benefit-card {
    background-color: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: left;
}

    /* Make 4th and 5th cards span to match the width of first row */
    .benefit-card:nth-child(4) {
        grid-column: span 1.5;
    }

    .benefit-card:nth-child(5) {
        grid-column: span 1.5;
    }

    .benefit-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    }

.benefit-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

    .benefit-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

.benefit-card:hover .benefit-image img {
    transform: scale(1.1);
}

.benefit-title {
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    line-height: 1.3;
    margin: 0;
    padding: 20px 24px 12px 24px;
}

.benefit-description {
    font-size: 14px;
    font-weight: 400;
    color: #555555;
    line-height: 1.6;
    margin: 0;
    padding: 0 24px 24px 24px;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1200px) {
    .process-container {
        padding: 0 60px;
    }

    .process-title {
        font-size: 42px;
    }

    .process-subtitle {
        font-size: 17px;
        margin-bottom: 50px;
    }

    .benefits-grid {
        gap: 20px;
    }

    .benefit-image {
        height: 220px;
    }
}

@media (max-width: 992px) {
    .process-section {
        padding: 60px 0;
    }

    .process-container {
        padding: 0 40px;
    }

    .process-title {
        font-size: 36px;
    }

    .process-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    /* Reset to normal on tablet */
    .benefit-card:nth-child(4),
    .benefit-card:nth-child(5) {
        grid-column: span 1;
    }

    .benefit-image {
        height: 200px;
    }

    .benefit-title {
        font-size: 17px;
        padding: 18px 20px 10px 20px;
    }

    .benefit-description {
        font-size: 13px;
        padding: 0 20px 20px 20px;
    }
}

@media (max-width: 768px) {
    .process-section {
        padding: 50px 0;
    }

    .process-container {
        padding: 0 20px;
    }

    .process-title {
        font-size: 30px;
        margin-bottom: 12px;
    }

    .process-subtitle {
        font-size: 15px;
        margin-bottom: 35px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .benefit-card:nth-child(4),
    .benefit-card:nth-child(5) {
        grid-column: span 1;
    }

    .benefit-image {
        height: 180px;
    }

    .benefit-title {
        font-size: 16px;
        padding: 16px 18px 10px 18px;
    }

    .benefit-description {
        font-size: 13px;
        padding: 0 18px 18px 18px;
    }
}

@media (max-width: 480px) {
    .process-title {
        font-size: 26px;
    }

    .process-subtitle {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .benefits-grid {
        gap: 14px;
    }

    .benefit-card {
        border-radius: 12px;
    }

    .benefit-image {
        height: 160px;
    }

    .benefit-title {
        font-size: 15px;
        padding: 14px 16px 8px 16px;
    }

    .benefit-description {
        font-size: 12px;
        padding: 0 16px 16px 16px;
    }
}

/* ==================== CTA SECTION ==================== */
.cta-section {
    background-color: #2a2a2a;
    padding: 80px 0;
}

.cta-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
    text-align: center;
}

.cta-title {
    font-size: 56px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin: 0 0 20px 0;
}

.cta-subtitle {
    font-size: 20px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    margin: 0 0 30px 0;
}

.cta-tagline {
    font-size: 24px;
    font-weight: 600;
    color: #f5a623;
    line-height: 1.4;
    margin: 0;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1200px) {
    .cta-container {
        padding: 0 60px;
    }

    .cta-title {
        font-size: 48px;
    }

    .cta-subtitle {
        font-size: 18px;
        margin-bottom: 25px;
    }

    .cta-tagline {
        font-size: 22px;
    }
}

@media (max-width: 992px) {
    .cta-section {
        padding: 60px 0;
    }

    .cta-container {
        padding: 0 40px;
    }

    .cta-title {
        font-size: 42px;
        margin-bottom: 18px;
    }

    .cta-subtitle {
        font-size: 17px;
        margin-bottom: 22px;
    }

    .cta-tagline {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: 50px 0;
    }

    .cta-container {
        padding: 0 20px;
    }

    .cta-title {
        font-size: 36px;
        margin-bottom: 16px;
    }

    .cta-subtitle {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .cta-tagline {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .cta-section {
        padding: 40px 0;
    }

    .cta-title {
        font-size: 28px;
        margin-bottom: 14px;
    }

    .cta-subtitle {
        font-size: 14px;
        margin-bottom: 18px;
    }

    .cta-tagline {
        font-size: 16px;
    }
}

