/* ── scoped to .ev-* — no global reset, won't touch navbar ── */

.ev-hero {
    background: linear-gradient(135deg, #6D0034 0%, #BE185D 52%, #EC4899 100%);
    position: relative;
    overflow: hidden;
    font-family: 'Nunito', sans-serif;
}

.ev-hero::before {
    content: '';
    position: absolute;
    top: -90px;
    right: -90px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    border: 55px solid rgba(255, 255, 255, 0.07);
    animation: evRing 4s ease-in-out infinite;
}

.ev-hero::after {
    content: '';
    position: absolute;
    bottom: -70px;
    left: -50px;
    width: 290px;
    height: 290px;
    border-radius: 50%;
    border: 40px solid rgba(247, 168, 0, 0.10);
    animation: evRing 4s ease-in-out infinite 1.5s;
}

@keyframes evRing {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.06);
        opacity: 0.55;
    }
}

.ev-hero-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 60px 24px 54px;
    display: grid;
    grid-template-columns: 1fr 370px;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.ev-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(247, 168, 0, 0.18);
    border: 1.5px solid rgba(247, 168, 0, 0.50);
    color: #F7A800;
    border-radius: 30px;
    padding: 5px 17px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 18px;
    width: fit-content;
}

.ev-hero-title {
    font-family: 'Barlow', 'Nunito', sans-serif;
    font-size: 44px;
    font-weight: 800;
    color: #fff;
    line-height: 1.12;
    margin-bottom: 16px;
}

.ev-hero-title .t-gold {
    color: #F7A800;
}

.ev-hero-title .t-lite {
    color: #fce7f3;
}

.ev-hero-desc {
    font-size: 15.5px;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.80;
    max-width: 530px;
    margin-bottom: 30px;
}

.ev-hero-btns {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 14px;
    flex-wrap: nowrap;
}

.ev-btn-gold {
    background: linear-gradient(135deg, #F7A800, #d98600);
    color: #6D0034;
    font-weight: 800;
    font-size: 15px;
    padding: 13px 32px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
    box-shadow: 0 6px 22px rgba(247, 168, 0, 0.44);
    transition: transform .2s, box-shadow .2s;
}

.ev-btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(247, 168, 0, 0.55);
    color: #6D0034;
    text-decoration: none;
}

.ev-btn-ghost {
    background: rgba(0, 0, 0, 0.16);
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    padding: 11px 28px;
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.48);
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
    transition: all .2s;
}

.ev-btn-ghost:hover {
    border-color: #F7A800;
    color: #F7A800;
    text-decoration: none;
}

/* stat pills */
.ev-pills {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.ev-pill {
    background: rgba(0, 0, 0, 0.17);
    border: 1.5px solid rgba(255, 255, 255, 0.20);
    border-radius: 14px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
    transition: background .2s, border-color .2s;
    box-sizing: border-box;
}

.ev-pill:hover {
    background: rgba(0, 0, 0, 0.27);
    border-color: rgba(255, 255, 255, 0.48);
}

.ev-pill-ico {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.pi-pink {
    background: linear-gradient(135deg, #6D0034, #BE185D);
}

.pi-green {
    background: linear-gradient(135deg, #3AAA35, #267a22);
}

.pi-gold {
    background: linear-gradient(135deg, #F7A800, #c97f00);
}

.pi-navy {
    background: linear-gradient(135deg, #1B2A4A, #2d4580);
}

.ev-pill-val {
    font-size: 16px;
    font-weight: 800;
    display: block;
    line-height: 1.2;
}

.ev-pill-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.68);
}

/* brand strip */
.ev-strip {
    height: 4px;
    background: linear-gradient(to right, #6D0034, #BE185D, #29ABE2, #F7A800);
}

/* ── commons ── */
.ev-section {
    padding: 52px 0 44px;
    font-family: 'Nunito', sans-serif;
}

.ev-wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

.ev-sec-head {
    text-align: center;
    margin-bottom: 40px;
}

.ev-sec-head h2 {
    font-family: 'Barlow', 'Nunito', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: #1B2A4A;
    margin-bottom: 10px;
}

.ev-sec-head h2 .c-pink {
    color: #BE185D;
}

.ev-sec-head h2 .c-gold {
    color: #F7A800;
}

.ev-sec-head h2 .c-blue {
    color: #29ABE2;
}

.ev-sec-head p {
    font-size: 15.5px;
    color: #64748B;
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.74;
}

.ev-underline {
    width: 58px;
    height: 4px;
    border-radius: 4px;
    background: linear-gradient(to right, #BE185D, #EC4899);
    margin: 14px auto 0;
}

/* intro card */
.ev-intro-card {
    background: #fff;
    border: 1.5px solid #fce7f3;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 6px 28px rgba(190, 24, 93, 0.09);
    display: flex;
    margin-bottom: 36px;
    box-sizing: border-box;
}

.ev-intro-side {
    width: 80px;
    flex-shrink: 0;
    background: linear-gradient(180deg, #6D0034, #BE185D);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
}

.ev-intro-body {
    flex: 1;
    padding: 24px 26px;
    position: relative;
    box-sizing: border-box;
}

.ev-intro-body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 26px;
    right: 26px;
    height: 3px;
    background: linear-gradient(to right, #BE185D, #F7A800, transparent);
    border-radius: 0 0 4px 4px;
}

.ev-intro-body h3 {
    font-family: 'Barlow', 'Nunito', sans-serif;
    font-size: 19px;
    font-weight: 800;
    color: #1B2A4A;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1.5px dashed #fce7f3;
}

.ev-intro-body p {
    font-size: 14.5px;
    color: #555;
    line-height: 1.82;
    margin-bottom: 10px;
}

.ev-intro-body p:last-child {
    margin-bottom: 0;
}

/* ── EV Growth stats — 2-col: image + stats ── */
.ev-growth-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.ev-growth-img {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(190, 24, 93, 0.14);
    border: 1.5px solid #fce7f3;
}

.ev-growth-img img {
    width: 100%;
    display: block;
}

.ev-stats-box {}

.ev-stats-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(190, 24, 93, 0.10);
    border: 1.5px solid rgba(190, 24, 93, 0.28);
    color: #BE185D;
    border-radius: 20px;
    padding: 4px 14px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 14px;
    width: fit-content;
}

.ev-stats-box h3 {
    font-family: 'Barlow', 'Nunito', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: #1B2A4A;
    margin-bottom: 22px;
    line-height: 1.3;
}

.ev-stats-box h3 span {
    color: #BE185D;
}

.ev-stat-cards {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.ev-stat-card {
    background: #fff;
    border: 1.5px solid #fce7f3;
    border-radius: 16px;
    padding: 18px 20px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    box-shadow: 0 4px 16px rgba(190, 24, 93, 0.08);
    transition: transform .22s, box-shadow .22s;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

.ev-stat-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    border-radius: 16px 0 0 16px;
}

.ev-stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 26px rgba(190, 24, 93, 0.14);
}

.sc-1::before {
    background: linear-gradient(to bottom, #6D0034, #BE185D);
}

.sc-2::before {
    background: linear-gradient(to bottom, #BE185D, #29ABE2);
}

.sc-3::before {
    background: linear-gradient(to bottom, #29ABE2, #3AAA35);
}

.ev-stat-num {
    font-family: 'Barlow', 'Nunito', sans-serif;
    font-size: 28px;
    font-weight: 900;
    line-height: 1;
    flex-shrink: 0;
}

.sn-1 {
    color: #BE185D;
}

.sn-2 {
    color: #29ABE2;
}

.sn-3 {
    color: #3AAA35;
}

.ev-stat-info h4 {
    font-family: 'Barlow', 'Nunito', sans-serif;
    font-size: 15px;
    font-weight: 800;
    color: #1B2A4A;
    margin-bottom: 4px;
}

.ev-stat-info p {
    font-size: 13.5px;
    color: #64748B;
    line-height: 1.65;
}

/* ── Problem Section ── */
.ev-problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.ev-problem-text {}

.ev-problem-text h3 {
    font-family: 'Barlow', 'Nunito', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: #1B2A4A;
    margin-bottom: 14px;
    line-height: 1.3;
}

.ev-problem-text h3 span {
    color: #BE185D;
}

.ev-problem-text p {
    font-size: 14.5px;
    color: #555;
    line-height: 1.82;
    margin-bottom: 12px;
}

.ev-alert-box {
    background: linear-gradient(135deg, #6D0034, #BE185D);
    border-radius: 16px;
    padding: 22px 24px;
    margin: 18px 0;
    color: #fff;
    text-align: center;
    box-shadow: 0 6px 24px rgba(190, 24, 93, 0.28);
}

.ev-alert-box .alert-big {
    font-family: 'Barlow', 'Nunito', sans-serif;
    font-size: 28px;
    font-weight: 900;
    color: #F7A800;
    display: block;
    margin-bottom: 4px;
}

.ev-alert-box .alert-sub {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    display: block;
}

.ev-alert-box .alert-note {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.78);
    margin-top: 6px;
    display: block;
}

.ev-help-list {
    list-style: none;
    padding: 0;
    margin: 18px 0 0;
}

.ev-help-list li {
    font-size: 14.5px;
    color: #333;
    padding: 9px 0;
    border-bottom: 1px dashed #fce7f3;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.6;
}

.ev-help-list li:last-child {
    border-bottom: none;
}

.ev-help-list li .li-ico {
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.ev-problem-img {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(190, 24, 93, 0.14);
    border: 1.5px solid #fce7f3;
}

.ev-problem-img img {
    width: 100%;
    display: block;
}

/* ── Opportunity + Experience + One Stop — image sections ── */
.ev-img-section {
    padding: 44px 0;
    font-family: 'Nunito', sans-serif;
}

.ev-img-section-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

.ev-img-sec-head {
    text-align: center;
    margin-bottom: 28px;
}

.ev-img-sec-head h2 {
    font-family: 'Barlow', 'Nunito', sans-serif;
    font-size: 30px;
    font-weight: 800;
    color: #1B2A4A;
    margin-bottom: 8px;
}

.ev-img-sec-head h2 span {
    color: #BE185D;
}

.ev-img-sec-head p {
    font-size: 15.5px;
    color: #64748B;
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.72;
}

.ev-full-img {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(190, 24, 93, 0.12);
    border: 1.5px solid #fce7f3;
}

.ev-full-img img {
    width: 100%;
    display: block;
}

/* one stop steps */
.ev-steps-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.ev-step-item {
    display: flex;
    align-items: center;
    gap: 0;
}

.ev-step-box {
    background: linear-gradient(135deg, #6D0034, #BE185D);
    color: #fff;
    border-radius: 12px;
    padding: 12px 18px;
    text-align: center;
    font-size: 13.5px;
    font-weight: 800;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(190, 24, 93, 0.28);
}

.ev-step-arrow {
    font-size: 22px;
    color: #BE185D;
    padding: 0 8px;
    font-weight: 900;
}

/* CTA box */
.ev-cta {
    background: linear-gradient(135deg, #6D0034 0%, #BE185D 60%, #EC4899 100%);
    border-radius: 20px;
    padding: 40px 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
    margin-top: 44px;
}

.ev-cta::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
}

.ev-cta::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 200px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: rgba(247, 168, 0, 0.10);
}

.ev-cta-text {
    position: relative;
    z-index: 1;
}

.ev-cta-text h3 {
    font-family: 'Barlow', 'Nunito', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 6px;
}

.ev-cta-text h3 span {
    color: #F7A800;
}

.ev-cta-text p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.82);
}

.ev-cta-btn {
    background: linear-gradient(135deg, #F7A800, #d98600);
    color: #6D0034;
    font-weight: 800;
    font-size: 15px;
    padding: 13px 32px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    font-family: 'Nunito', sans-serif;
    box-shadow: 0 6px 20px rgba(247, 168, 0, 0.44);
    transition: transform .2s, box-shadow .2s;
    position: relative;
    z-index: 1;
    white-space: nowrap;
}

.ev-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(247, 168, 0, 0.55);
    color: #6D0034;
    text-decoration: none;
}

/* contact strip */
.ev-contact-strip {
    background: linear-gradient(135deg, #6D0034 0%, #BE185D 100%);
    padding: 44px 0;
    position: relative;
    overflow: hidden;
    font-family: 'Nunito', sans-serif;
}

.ev-contact-strip::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
}

.ev-ct-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.ev-ct-text h3 {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 5px;
}

.ev-ct-text h3 span {
    color: #F7A800;
}

.ev-ct-text p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.74);
}

.ev-ct-items {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.ev-ct-item {
    display: flex;
    align-items: center;
    gap: 13px;
    background: rgba(0, 0, 0, 0.18);
    border: 1.5px solid rgba(255, 255, 255, 0.24);
    border-radius: 14px;
    padding: 15px 20px;
    color: #fff;
    transition: background .2s, border-color .2s;
    box-sizing: border-box;
}

.ev-ct-item:hover {
    background: rgba(0, 0, 0, 0.28);
    border-color: rgba(255, 255, 255, 0.48);
}

.ev-ct-item .ct-ico {
    font-size: 26px;
}

.ev-ct-item .ct-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: .64;
    display: block;
    margin-bottom: 2px;
}

.ev-ct-item .ct-val {
    font-size: 15px;
    font-weight: 800;
}

.ev-ct-item a {
    color: #F7A800;
    text-decoration: none;
}

.ev-ct-item a:hover {
    text-decoration: underline;
}

/* responsive */
@media (max-width: 960px) {
    .ev-hero-inner {
        grid-template-columns: 1fr;
        padding: 44px 24px 48px;
    }

    .ev-pills {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .ev-pill {
        flex: 1 1 200px;
    }

    .ev-hero-title {
        font-size: 34px;
    }

    .ev-growth-grid {
        grid-template-columns: 1fr;
    }

    .ev-problem-grid {
        grid-template-columns: 1fr;
    }

    .ev-cta {
        flex-direction: column;
        align-items: flex-start;
        padding: 28px 24px;
    }
}

@media (max-width: 600px) {
    .ev-hero-title {
        font-size: 26px;
    }

    .ev-hero-btns {
        flex-wrap: wrap;
    }

    .ev-intro-card {
        flex-direction: column;
    }

    .ev-intro-side {
        width: 100%;
        padding: 16px 20px;
        min-height: 60px;
    }

    .ev-ct-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .ev-steps-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .ev-step-arrow {
        transform: rotate(90deg);
    }
}