/* =========================================
ACADEMY START V2
========================================= */

.yp-academy-start-v2 {
    padding: 65px 0 90px;
    background:
    radial-gradient(circle at top right,#dff1ff 0%,transparent 30%),
    radial-gradient(circle at bottom left,#edf5ff 0%,transparent 35%),
    #f5f8fc;
}

/* SHAPES */

.yp-start-shape {
    position: absolute;
    border-radius: 999px;
    filter: blur(80px);
    opacity: .5;
}

.yp-start-shape-1 {
    width: 300px;
    height: 300px;
    background: #80d0ff;
    top: -120px;
    right: -80px;
}

.yp-start-shape-2 {
    width: 260px;
    height: 260px;
    background: #bfdfff;
    bottom: -120px;
    left: -60px;
}

/* HEAD */

.yp-start-head {
    margin-bottom: 55px;
    gap: 30px;
}

.yp-start-label {
    display: inline-flex;
    align-items: center;
    height: 42px;
    padding: 0 18px;
    border-radius: 999px;
    background: rgba(0,119,255,.08);
    color: #0077ff;
    font-size: 14px;
    margin-bottom: 18px;
    font-weight: 600;
}

.yp-start-title {
    font-size: 25px;
    margin: 0;
    line-height: 1.2;
    color: #111;
}

.yp-start-head-desc {
    max-width: 500px;
    line-height: 2;
    color: #666;
    font-size: 16px;
    margin: 0;
}

/* GRID */

.yp-start-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 24px;
}

/* CARD */

.yp-start-modern-card {
    background: rgba(255,255,255,.72);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,.6);
    border-radius: 30px;
    padding: 30px;
    min-height: 340px;
    text-decoration: none;
    color: inherit;
    transition: .4s;
    box-shadow:
    0 10px 30px rgba(0,0,0,.04),
    inset 0 1px 0 rgba(255,255,255,.7);
}

.yp-start-modern-card:hover {
    transform: translateY(-12px);
    box-shadow:
    0 30px 60px rgba(0,119,255,.12);
}

.yp-start-card-glow {
    position: absolute;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle,#8fd3ff 0%,transparent 70%);
    top: -80px;
    left: -80px;
    opacity: .5;
    transition: .4s;
}

.yp-start-modern-card:hover .yp-start-card-glow {
    transform: scale(1.2);
}

.yp-start-card-top {
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.yp-start-card-icon {
    width: 78px;
    height: 78px;
    border-radius: 24px;
    background:
    linear-gradient(135deg,#00a8ff,#005dff);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 30px;
    box-shadow: 0 20px 40px rgba(0,120,255,.22);
}

.yp-start-step {
    font-size: 48px;
    font-weight: 900;
    color: rgba(0,0,0,.06);
    line-height: 1;
}

.yp-start-card-content {
    position: relative;
    z-index: 2;
}

.yp-start-card-content h3 {
    margin: 0 0 7px;
    font-size: 17px;
    line-height: 1.5;
    color: #111;
}

.yp-start-card-content p {
    margin: 0;
    color: #666;
    line-height: 2;
    font-size: 15px;
}

.yp-start-card-arrow {
    position: absolute;
    left: 28px;
    bottom: 28px;
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: rgba(0,119,255,.08);
    color: #0077ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transition: .35s;
}

.yp-start-modern-card:hover .yp-start-card-arrow {
    background: linear-gradient(135deg,#00a8ff,#005dff);
    color: #fff;
    transform: translateX(-6px);
}

/* RESPONSIVE */

@media(max-width:1200px){

    .yp-start-grid {
        grid-template-columns: repeat(2,1fr);
    }

}

@media(max-width:992px){

    .yp-start-title {
        font-size: 42px;
    }

}

@media(max-width:768px){

    .yp-start-grid {
        grid-template-columns: 1fr;
    }

    .yp-start-title {
        font-size: 30px;
    }

    .yp-start-modern-card {
        min-height: initial;
    }

    .yp-start-card-content h3 {
        font-size: 22px;
    }

}



/* =========================================
HERO
========================================= */

.yp-academy-hero {
    min-height: 570px;
    padding: 140px 0;
    display: flex;
    align-items: center;
    margin-top: -100px;
}

.yp-academy-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(4px) scale(1.05);
}

.yp-academy-overlay {
    background:
    linear-gradient(to left,
    rgba(8,12,20,.94),
    rgba(8,12,20,.75));
}

.yp-academy-hero-content {
    max-width: 900px;
    margin-inline: auto;
}

.yp-academy-mini-title {
    display: inline-flex;
    align-items: center;
    height: 44px;
    padding: 0 20px;
    border-radius: 999px;
    background: rgba(255,255,255,.1);
    color: #fff;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.yp-academy-title {
    font-size: 27px;
    color: #fff;
    margin: 0 0 25px;
    line-height: 1.3;
    font-weight: 900;
}

.yp-academy-desc {
    color: rgba(255,255,255,.75);
    line-height: 2;
    font-size: 18px;
    margin-bottom: 45px;
}

.yp-academy-search {
    max-width: 760px;
    margin-inline: auto;
    position: relative;
}

.yp-academy-search input {
    width: 100%;
    height: 78px;
    border: 0;
    border-radius: 24px;
    padding: 0 30px 0 30px;
    font-size: 16px;
    outline: none;
    background-color: #fff;
    box-shadow: 0 25px 60px rgba(0,0,0,.18);
}

.yp-academy-search button {
    position: absolute;
    left: 10px;
    top: 10px;
    height: 58px;
    padding: 0 30px;
    border: 0;
    border-radius: 18px;
    background: linear-gradient(135deg,#00a8ff,#005dff);
    color: #fff;
    cursor: pointer;
    font-weight: 700;
}


/* =========================================
ACADEMY GRID V2
========================================= */

.yp-academy-grid-v2 {
    padding: 10px 0 100px;
    background:
    radial-gradient(circle at top left,#e8f6ff 0%,transparent 35%),
    radial-gradient(circle at bottom right,#eef4ff 0%,transparent 30%),
    #f6f9fc;
}

/* SHAPES */

.yp-academy-grid-shape {
    position: absolute;
    border-radius: 999px;
    filter: blur(90px);
    opacity: .45;
}

.yp-grid-shape-1 {
    width: 320px;
    height: 320px;
    background: rgba(186, 219, 255, 0.898);
    top: -120px;
    left: -100px;
}

.yp-grid-shape-2 {
    width: 260px;
    height: 260px;
    background: #bfdfff;
    bottom: -120px;
    right: -60px;
}

/* HEAD */

.yp-academy-grid-head {
    margin-bottom: 60px;
    gap: 30px;
}

.yp-academy-grid-label {
    display: inline-flex;
    align-items: center;
    height: 42px;
    padding: 0 18px;
    border-radius: 999px;
    background: rgba(0,119,255,.08);
    color: #0077ff;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 18px;
}

.yp-academy-grid-title {
    margin: 0;
    font-size: 24px;
    line-height: 1.2;
    color: #111;
}

.yp-academy-grid-desc {
    max-width: 520px;
    color: #666;
    line-height: 2;
    margin: 0;
}

/* GRID */

.yp-academy-modern-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 24px;
}

/* CARD */

.yp-grid-modern-card {
    position: relative;
    min-height: 250px;
    border-radius: 34px;
    text-decoration: none;
    overflow: hidden;
    display: block;
    isolation: isolate;
    box-shadow: 0 20px 50px rgba(0,0,0,.08);
}

.yp-grid-large {
    grid-column: span 2;
    grid-row: span 2;
    min-height: 530px;
}

.yp-grid-wide {
    grid-column: span 2;
}

.yp-grid-modern-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s ease;
}

.yp-grid-modern-card:hover img {
    transform: scale(1.08);
}

/* OVERLAY */

.yp-grid-modern-overlay {
    position: absolute;
    inset: 0;
    background:
    linear-gradient(to top,
    rgba(4,8,18,.92),
    rgba(4,8,18,.25));
}

.yp-grid-modern-glow {
    position: absolute;
    width: 260px;
    height: 260px;
    background:
    radial-gradient(circle,
    rgba(0,168,255,.35) 0%,
    transparent 70%);
    top: -100px;
    left: -100px;
    transition: .5s;
}

.yp-grid-modern-card:hover .yp-grid-modern-glow {
    transform: scale(1.2);
}

/* CONTENT */

.yp-grid-modern-content {
    position: absolute;
    inset: 0;
    z-index: 5;
    padding: 34px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #fff;
}

.yp-grid-modern-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: auto;
}

.yp-grid-modern-badge {
    height: 40px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(255,255,255,.1);
    backdrop-filter: blur(10px);
    display: inline-flex;
    align-items: center;
    font-size: 13px;
    font-weight: 600;
}

.yp-grid-modern-icon {
    width: 62px;
    height: 62px;
    border-radius: 20px;
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(14px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.yp-grid-modern-content h3 {
    margin: 0 0 18px;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 800;
}

.yp-grid-modern-card:not(.yp-grid-large):not(.yp-grid-wide) h3 {
    font-size: 18px;
}

.yp-grid-modern-content p {
    margin: 0 0 28px;
    line-height: 2;
    color: rgba(255,255,255,.72);
    max-width: 700px;
}

.yp-grid-modern-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.yp-grid-modern-footer span {
    color: rgba(255,255,255,.72);
    font-size: 14px;
}

.yp-grid-arrow {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .35s;
    font-size: 22px;
}

.yp-grid-modern-card:hover .yp-grid-arrow {
    background: linear-gradient(135deg,#00a8ff,#005dff);
    transform: translateX(-6px);
}

/* RESPONSIVE */

@media(max-width:1200px){

    .yp-academy-modern-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .yp-grid-large,
    .yp-grid-wide {
        grid-column: auto;
        grid-row: auto;
        min-height: 420px;
    }

}

@media(max-width:992px){

    .yp-academy-grid-title {
        font-size: 42px;
    }

}

@media(max-width:768px){

    .yp-academy-modern-grid {
        grid-template-columns: 1fr;
    }

    .yp-academy-grid-title {
        font-size: 30px;
    }

    .yp-grid-modern-card,
    .yp-grid-large,
    .yp-grid-wide {
        min-height: 340px;
    }

    .yp-grid-modern-content {
        padding: 24px;
    }

    .yp-grid-modern-content h3 {
        font-size: 24px;
    }

}


/* =========================================
FAQ SECTION
========================================= */

.yp-faq-section {
    padding: 30px 0 120px;
    background:
    radial-gradient(circle at top right,#e8f6ff 0%,transparent 35%),
    radial-gradient(circle at bottom left,#f0f6ff 0%,transparent 35%),
    #f6f9fc;
}

/* SHAPES */

.yp-faq-shape {
    position: absolute;
    border-radius: 999px;
    filter: blur(90px);
    opacity: .45;
}

.yp-faq-shape-1 {
    width: 300px;
    height: 300px;
    background: #c3e1ff;
    top: -120px;
    right: -100px;
}

.yp-faq-shape-2 {
    width: 260px;
    height: 260px;
    background: #c2e3ff;
    bottom: -120px;
    left: -80px;
}

/* HEAD */

.yp-faq-head {
    margin-bottom: 70px;
}

.yp-faq-label {
    display: inline-flex;
    align-items: center;
    height: 42px;
    padding: 0 18px;
    border-radius: 999px;
    background: rgba(0,119,255,.08);
    color: #0077ff;
    font-weight: 700;
    margin-bottom: 18px;
}

.yp-faq-title {
    font-size: 24px;
    margin: 0 0 18px;
    color: #111;
    line-height: 1.2;
}

.yp-faq-desc {
    color: #666;
    margin: 0 auto;
    max-width: 650px;
    line-height: 2;
}

/* WRAPPER */

.yp-faq-wrapper {
    gap: 40px;
}

/* RIGHT */

.yp-faq-right {
    flex: 1;
    min-width: 320px;
}

/* ACCORDION */

.yp-faq-item {
    background: rgba(255,255,255,.75);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,.6);
    border-radius: 22px;
    margin-bottom: 18px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0,0,0,.04);
}

.yp-faq-question {
    width: 100%;
    padding: 22px 22px;
    border: 0;
    background: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    color: #111;
}

.yp-faq-question span {
    display: flex;
    align-items: center;
    gap: 12px;
}

.yp-faq-question i {
    color: #0077ff;
}

.yp-faq-answer {
    padding: 0 22px;
    max-height: 0;
    overflow: hidden;
    transition: .35s ease;
    color: #666;
    line-height: 2;
}

/* ACTIVE (for JS toggle) */

.yp-faq-item.active .yp-faq-answer {
    padding: 0 22px 22px;
    max-height: 200px;
}

.yp-faq-item.active .yp-faq-question i.fa-chevron-down {
    transform: rotate(180deg);
    transition: .3s;
}

/* LEFT */

.yp-faq-left {
    width: 420px;
}

.yp-faq-card {
    position: sticky;
    top: 20px;
    background:
    linear-gradient(135deg,#ffffff,#f3f8ff);
    border-radius: 28px;
    padding: 28px;
    box-shadow: 0 25px 70px rgba(0,0,0,.08);
    overflow: hidden;
}

.yp-faq-card-icon {
    width: 70px;
    height: 70px;
    border-radius: 22px;
    background: linear-gradient(135deg,#00a8ff,#005dff);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    margin-bottom: 18px;
}

.yp-faq-card h3 {
    margin: 0 0 12px;
    font-size: 19px;
}

.yp-faq-card p {
    margin: 0 0 20px;
    color: #666;
    line-height: 2;
}

.yp-faq-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.yp-faq-btn {
    height: 52px;
    border-radius: 16px;
    background: linear-gradient(135deg,#00a8ff,#005dff);
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 700;
}

.yp-faq-link {
    color: #0077ff;
    text-decoration: none;
    font-weight: 600;
}

.yp-faq-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 18px;
    margin-top: 10px;
}

/* RESPONSIVE */

@media(max-width:992px){

    .yp-faq-wrapper {
        flex-direction: column;
    }

    .yp-faq-left {
        width: 100%;
    }

}



/* =========================================
INSTALLERS V2 PREMIUM
========================================= */

.yp-installers-v2 {
    padding: 0;
    min-height: 680px;
    display: flex;
    align-items: center;
    margin-bottom: 100px;
}

/* BACKGROUND */

.yp-installers-v2-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(4px) brightness(.8);
    transform: scale(1.05);
}

.yp-installers-v2-overlay {
    background:radial-gradient(circle at top left,#e2f1ffd4 0%,transparent 35%), radial-gradient(circle at bottom right,#fff 0%,#fff0 30%), #fff;
}

/* WRAPPER */

.yp-installers-v2-wrapper {
    gap: 60px;
}

/* CONTENT */

.yp-installers-v2-content {
    flex: 1;
    min-width: 320px;
    color: #000;
    max-width: 700px;
}

.yp-installers-v2-badge {
    display: inline-flex;
    height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(10px);
    align-items: center;
    font-size: 14px;
    margin-bottom: 22px;
    font-weight: 600;
}

.yp-installers-v2-content h2 {
    font-size: 24px;
    line-height: 1.3;
    margin: 0 0 18px;
    font-weight: 900;
}

.yp-installers-v2-content p {
    line-height: 2;
    color: rgba(41, 41, 41, 0.75);
    font-size: 17px;
    margin-bottom: 35px;
}

/* STATS */

.yp-installers-v2-stats {
    gap: 18px;
    margin-bottom: 35px;
}

.yp-installers-v2-stat {
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(12px);
    padding: 18px 22px;
    border-radius: 18px;
    min-width: 140px;
}

.yp-installers-v2-stat span {
    font-size: 26px;
    font-weight: 900;
    display: block;
    margin-bottom: 6px;
}

.yp-installers-v2-stat p {
    margin: 0;
    font-size: 13px;
    color: rgba(78, 78, 78, 0.7);
}

/* ACTIONS */

.yp-installers-v2-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.yp-installers-v2-btn {
    height: 58px;
    padding: 0 26px;
    border-radius: 18px;
    background: linear-gradient(135deg,#00a8ff,#005dff);
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    box-shadow: 0 20px 50px rgba(0,120,255,.35);
    transition: .3s;
}

.yp-installers-v2-btn:hover {
    transform: translateY(-4px);
}

.yp-installers-v2-link {
    color: rgba(36, 25, 189, 0.85);
    text-decoration: none;
    font-weight: 600;
}

/* VISUAL */

.yp-installers-v2-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    min-width: 320px;
}

.yp-installers-v2-card {
    width: 420px;
    height: 520px;
    border-radius: 34px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.05);
}

.yp-installers-v2-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .6s;
}

.yp-installers-v2-card:hover img {
    transform: scale(1.08);
}

/* GLOW */

.yp-installers-v2-glow {
    position: absolute;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle,#00a8ff55 0%,transparent 70%);
    top: -80px;
    left: -80px;
}

/* FLOAT BADGES */

.yp-installers-v2-badge-float {
    position: absolute;
    background: rgba(255,255,255,.14);
    backdrop-filter: blur(12px);
    color: #fff;
    padding: 10px 14px;
    border-radius: 999px;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.yp-badge-top {
    top: 20px;
    right: 20px;
}

.yp-badge-bottom {
    bottom: 20px;
    left: 20px;
}

/* RESPONSIVE */

@media(max-width:992px){

    .yp-installers-v2-content h2 {
        font-size: 38px;
    }

    .yp-installers-v2-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .yp-installers-v2-actions {
        justify-content: center;
    }

    .yp-installers-v2-card {
        width: 100%;
        max-width: 420px;
        height: 420px;
    }

}

@media(max-width:768px){

    .yp-installers-v2-content h2 {
        font-size: 28px;
    }

}