/* =============================================
   Solutions V2 — Prefix: sv2-
   ============================================= */

/* Page background */
.page-template-solutions-v2 {
    background: #f2f2f2;
}

/* --- Hero --- */
.sv2-hero {
    position: relative;
    padding: 180px 0 80px;
    overflow: hidden;
    text-align: center;
}

.sv2-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1800px;
    height: 100%;
    background: url('/wp-content/uploads/2025/10/VW_Map-2048x973.webp') no-repeat center top;
    background-size: contain;
    opacity: 0.35;
    pointer-events: none;
    z-index: 0;
}

.sv2-hero .container-main {
    position: relative;
    z-index: 1;
}

.sv2-hero-content {
    max-width: 1100px;
    margin: 0 auto;
}

.sv2-hero-title {
    font-family: 'SaansTRIAL-Medium', sans-serif;
    font-size: 96px;
    line-height: 1.05;
    letter-spacing: -1px;
    margin: 0 0 50px;
}

.sv2-title-black {
    color: #151111;
}

.sv2-title-orange {
    color: #FF4B00;
}

.sv2-hero-text {
    font-family: 'SaansTRIAL-Light', sans-serif;
    font-size: 20px;
    line-height: 1.7;
    color: #333;
    max-width: 1150px;
    margin: 0 auto;
}

/* --- Hero Image --- */
.sv2-hero-image-section {
    padding: 40px 0 0;
}

.sv2-hero-image-wrap {
    border-radius: 30px;
    overflow: hidden;
}

.sv2-hero-img {
    display: block;
    width: 100%;
    height: auto;
}

/* =============================================
   Highlights
   ============================================= */
.sv2-highlights {
    padding: 60px 0;
}

.sv2-highlights-flex {
    display: flex;
    align-items: center;
    gap: 60px;
}

.sv2-highlights-icon {
    flex-shrink: 0;
    width: 400px;
}

.sv2-highlights-icon img,
.sv2-slide-icon img,
.sv2-features-icon img {
    display: block;
    width: 100%;
    height: auto;
}

.sv2-highlights-content {
    flex: 1;
}

.sv2-highlights-text {
    font-family: 'SaansTRIAL-Medium', sans-serif;
    font-size: 42px;
    line-height: 1.35;
    color: #231d1e;
    margin-bottom: 25px;
}

.sv2-highlights-text p {
    margin: 0;
}

/* CTA Buttons (shared) */
.sv2-cta-btn,
.sv2-cta-btn-dark {
    display: inline-flex;
    align-items: center;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'SaansTRIAL-Medium', sans-serif;
}

.sv2-cta-btn:hover,
.sv2-cta-btn:focus,
.sv2-cta-btn:active,
.sv2-cta-btn-dark:hover,
.sv2-cta-btn-dark:focus,
.sv2-cta-btn-dark:active {
    color: #fff;
    text-decoration: none;
}

.sv2-cta-btn {
    gap: 12px;
    background: #CC3900;
    color: #fff;
    font-size: 18px;
    padding: 18px 38px;
}

.sv2-cta-btn-dark {
    gap: 12px;
    background: #1b1616;
    color: #fff;
    font-size: 18px;
    padding: 16px 36px;
}

.sv2-cta-btn svg,
.sv2-cta-btn-dark svg {
    flex-shrink: 0;
}

/* =============================================
   Slider
   ============================================= */
.sv2-slider-section {
    padding: 40px 0 50px;
}

.sv2-slider-box {
    position: relative;
    background: #241d1e;
    border-radius: 30px;
    overflow: hidden;
    min-height: 480px;
}

.sv2-slider-track {
    display: flex;
    transition: transform 0.5s ease;
    will-change: transform;
}

.sv2-slide {
    min-width: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 50px;
    flex-shrink: 0;
    padding: 60px;
    box-sizing: border-box;
}

.sv2-slide-icon {
    flex-shrink: 0;
    width: 340px;
}

.sv2-slide-content {
    flex: 1;
}

.sv2-slide-title {
    font-family: 'SaansTRIAL-Medium', sans-serif;
    font-size: 48px;
    line-height: 1.2;
    color: #fff;
    margin: 0 0 25px;
}

.sv2-slide-text {
    font-family: 'SaansTRIAL-Regular', sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: #fff;
    margin: 0;
}

.sv2-slide-text p {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    color: inherit;
    margin: 0;
}

.sv2-slide-text a {
    color: #FF4B00;
    text-decoration: none;
}

/* Slider nav */
.sv2-slider-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 35px;
}

.sv2-slider-prev,
.sv2-slider-next {
    width: 60px;
    height: 44px;
    border-radius: 50px;
    border: 1.5px solid #ccc;
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
}

.sv2-slider-next {
    background: #FF4B00;
    border-color: #FF4B00;
    color: #fff;
}

/* =============================================
   Features (accordion)
   ============================================= */
.sv2-features {
    padding: 50px 0;
}

.sv2-features-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 30px;
    padding: 60px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.sv2-features-flex {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.sv2-features-icon {
    flex-shrink: 0;
    width: 340px;
}

.sv2-features-content {
    flex: 1;
}

.sv2-features-title {
    font-family: 'SaansTRIAL-Medium', sans-serif;
    font-size: 36px;
    line-height: 1.25;
    color: #FF4B00;
    margin: 0 0 40px;
}

.sv2-accordion .sv2-acc-item {
    border: none;
    border-top: 1px solid #333;
    border-radius: 0;
    background: transparent;
}

.sv2-accordion .sv2-acc-item:last-child {
    border-bottom: 1px solid #333;
}

.sv2-accordion .sv2-acc-btn {
    font-family: 'SaansTRIAL-Medium', sans-serif;
    font-size: 20px;
    line-height: 1.4;
    color: #151111;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 22px 40px 22px 0;
    box-shadow: none;
    position: relative;
}

.sv2-accordion .sv2-acc-btn:focus,
.sv2-accordion .sv2-acc-btn:not(.collapsed) {
    color: #151111;
    background: transparent;
    box-shadow: none;
}

.sv2-accordion .sv2-acc-btn::after {
    content: '+';
    font-family: 'SaansTRIAL-Regular', sans-serif;
    font-size: 28px;
    color: #FF4B00;
    background: none;
    width: auto;
    height: auto;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: none;
}

.sv2-accordion .sv2-acc-btn:not(.collapsed)::after {
    content: '\2013';
}

.sv2-accordion .sv2-acc-body {
    font-family: 'SaansTRIAL-Regular', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    padding: 0 0 22px;
}

/* =============================================
   CTA Banner
   ============================================= */
.sv2-cta-banner {
    padding: 0 0 80px;
}

.sv2-cta-banner-inner {
    border-radius: 30px;
    background: linear-gradient(135deg, #FF4B00 0%, #c4955a 100%);
    background-size: cover;
    background-position: center;
    padding: 80px 60px;
    text-align: center;
}

.sv2-cta-banner-title {
    font-family: 'SaansTRIAL-Medium', sans-serif;
    font-size: 76px;
    line-height: 1.08;
    color: #1b1616;
    margin: 0 0 40px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

/* =============================================
   Responsive
   ============================================= */

@media (max-width: 1200px) {
    .sv2-hero {
        padding: 160px 0 60px;
    }

    .sv2-hero-title {
        font-size: 72px;
    }

    .sv2-hero-text {
        font-size: 18px;
    }

    .sv2-highlights-icon {
        width: 300px;
    }

    .sv2-highlights-text {
        font-size: 34px;
    }

    .sv2-slide {
        padding: 50px;
        gap: 40px;
    }

    .sv2-slide-icon {
        width: 260px;
    }

    .sv2-slide-title {
        font-size: 38px;
    }

    .sv2-slide-text {
        font-size: 16px;
    }

    .sv2-slider-box {
        min-height: 400px;
    }

    .sv2-features-card {
        padding: 50px;
    }

    .sv2-features-icon {
        width: 260px;
    }

    .sv2-features-title {
        font-size: 30px;
    }

    .sv2-cta-banner-title {
        font-size: 60px;
    }

    .sv2-cta-banner-inner {
        padding: 70px 50px;
    }
}

@media (max-width: 1023px) {
    .sv2-hero {
        padding: 160px 0 50px;
    }

    .sv2-hero-title {
        font-size: 56px;
    }

    .sv2-hero-text {
        font-size: 18px;
    }

    .sv2-highlights {
        padding: 80px 0;
    }

    .sv2-highlights-flex {
        gap: 40px;
    }

    .sv2-highlights-icon {
        width: 250px;
    }

    .sv2-highlights-text {
        font-size: 30px;
    }

    .sv2-slide {
        flex-direction: column;
        text-align: center;
        padding: 40px;
        gap: 25px;
    }

    .sv2-slide-icon {
        width: 200px;
        margin: 0 auto;
    }

    .sv2-slide-title {
        font-size: 30px;
    }

    .sv2-slide-text {
        font-size: 16px;
    }

    .sv2-slider-box {
        min-height: auto;
    }

    .sv2-features-card {
        padding: 35px;
    }

    .sv2-features-flex {
        flex-direction: column;
        gap: 30px;
    }

    .sv2-features-icon {
        width: 200px;
        margin: 0 auto;
    }

    .sv2-features-title {
        font-size: 26px;
        text-align: center;
    }

    .sv2-accordion .sv2-acc-btn {
        font-size: 18px;
    }

    .sv2-accordion .sv2-acc-body {
        font-size: 15px;
    }

    .sv2-cta-banner-title {
        font-size: 46px;
    }

    .sv2-cta-banner-inner {
        padding: 60px 35px;
    }
}

@media (max-width: 768px) {
    .page-template-solutions-v2 .container-main {
        padding: 0 15px;
    }

    .sv2-hero {
        padding: 155px 0 35px;
    }

    .sv2-hero::before {
        max-width: 250%;
        background-image: url('/wp-content/uploads/2025/10/VW_Map-1024x487.webp');
        background-size: cover;
    }

    .sv2-hero-title {
        font-size: 40px;
        margin-bottom: 25px;
    }

    .sv2-hero-text {
        font-size: 17px;
        line-height: 1.6;
    }

    .sv2-hero-image-section {
        padding: 30px 0 0;
    }

    .sv2-hero-image-wrap {
        border-radius: 15px;
    }

    .sv2-highlights {
        padding: 50px 0;
    }

    .sv2-highlights-flex {
        gap: 30px;
    }

    .sv2-highlights-icon {
        width: 240px;
    }

    .sv2-highlights-text {
        font-size: 26px;
    }

    .sv2-cta-btn {
        font-size: 15px;
        padding: 14px 30px;
    }

    .sv2-slider-section {
        padding: 50px 0 35px;
    }

    .sv2-slide {
        padding: 40px 30px;
        gap: 25px;
    }

    .sv2-slide-icon {
        width: 150px;
    }

    .sv2-slide-title {
        font-size: 28px;
    }

    .sv2-slide-text {
        font-size: 16px;
    }

    .sv2-slider-nav {
        margin-top: 25px;
    }

    .sv2-slider-prev,
    .sv2-slider-next {
        width: 44px;
        height: 44px;
    }

    .sv2-slider-prev svg,
    .sv2-slider-next svg {
        width: 15px;
        height: 15px;
    }

    .sv2-features {
        padding: 40px 0;
    }

    .sv2-features-card {
        padding: 25px;
        border-radius: 20px;
    }

    .sv2-features-flex {
        flex-direction: column;
        gap: 15px;
    }

    .sv2-features-icon {
        width: 200px;
        margin: 0 auto;
    }

    .sv2-features-title {
        font-size: 24px;
        margin-bottom: 20px;
        text-align: center;
    }

    .sv2-accordion .sv2-acc-btn {
        font-size: 17px;
        padding: 18px 35px 18px 0;
    }

    .sv2-accordion .sv2-acc-body {
        font-size: 15px;
    }

    .sv2-cta-banner {
        padding: 0 0 50px;
    }

    .sv2-cta-banner-title {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .sv2-cta-banner-inner {
        padding: 50px 25px;
        border-radius: 20px;
    }

    .sv2-cta-btn-dark {
        font-size: 16px;
        padding: 14px 30px;
    }
}

@media (max-width: 600px) {
    .sv2-highlights-flex {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .sv2-highlights-icon {
        width: 180px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .page-template-solutions-v2 .container-main {
        padding: 0 12px;
    }

    .sv2-hero {
        padding: 145px 0 30px;
    }

    .sv2-hero::before {
        max-width: 350%;
        background-image: url('/wp-content/uploads/2025/10/VW_Map-1024x487.webp');
    }

    .sv2-hero-title {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .sv2-hero-text {
        font-size: 15px;
    }

    .sv2-hero-image-wrap {
        border-radius: 12px;
    }

    .sv2-highlights {
        padding: 40px 0;
    }

    .sv2-highlights-icon {
        width: 150px;
    }

    .sv2-highlights-text {
        font-size: 22px;
    }

    .sv2-slide {
        padding: 35px 25px;
        gap: 20px;
    }

    .sv2-slide-icon {
        width: 120px;
    }

    .sv2-slide-title {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .sv2-slide-text {
        font-size: 15px;
    }

    .sv2-slider-box {
        border-radius: 20px;
    }

    .sv2-features-card {
        padding: 20px 15px;
        border-radius: 15px;
    }

    .sv2-features-icon {
        width: 160px;
    }

    .sv2-features-title {
        font-size: 22px;
    }

    .sv2-accordion .sv2-acc-btn {
        font-size: 16px;
        padding: 15px 30px 15px 0;
    }

    .sv2-accordion .sv2-acc-btn::after {
        font-size: 22px;
    }

    .sv2-accordion .sv2-acc-body {
        font-size: 14px;
        padding: 0 0 15px;
    }

    .sv2-cta-banner-title {
        font-size: 26px;
    }

    .sv2-cta-banner-inner {
        padding: 40px 20px;
        border-radius: 15px;
    }

    .sv2-cta-btn-dark {
        font-size: 15px;
        padding: 12px 26px;
    }
}