/********** Template CSS **********/
:root {
    --primary: #32C36C;
    --light: #F5F5F5;
    --dark: #0A0A0A;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #0A0A0A;
    color: #F5F5F5;
}

a {
    transition: all .25s ease;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover {
    color: #FFFFFF;
}


/* =========================================================
   SOLARS FOOTER
========================================================= */

.solars-footer-v2 {
    position: relative;
    overflow: hidden;

    padding: 85px 0 25px;

    background: #01050A;
    color: #fff;
}


/* subtle technical circle */

.solars-footer-v2::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    right: -250px;
    bottom: -300px;

    border: 1px solid rgba(49, 110, 61, 0.12);

    border-radius: 50%;

    pointer-events: none;
}

.solars-footer-v2::after {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    right: -150px;
    bottom: -200px;

    border: 1px solid rgba(242, 180, 85, 0.07);

    border-radius: 50%;

    pointer-events: none;
}


/* =========================================================
   MAIN GRID
========================================================= */

.solars-footer-main {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns: 1.6fr 1fr 1.2fr 1fr;

    gap: 60px;
}


/* =========================================================
   BRAND
========================================================= */

.solars-footer-logo {
    margin-bottom: 18px;

    color: #fff;

    font-size: 32px;
    font-weight: 800;

    letter-spacing: 6px;
}

.solars-footer-line {
    width: 45px;
    height: 2px;

    margin-bottom: 25px;

    background: #316E3D;
}

.solars-footer-brand p {
    max-width: 330px;

    margin-bottom: 30px;

    color: rgba(255,255,255,0.52);

    font-size: 14px;
    line-height: 1.8;
}


/* =========================================================
   CTA
========================================================= */

.solars-footer-cta {
    display: inline-flex;
    align-items: center;

    gap: 20px;

    padding: 13px 18px;

    border: 1px solid rgba(255,255,255,0.15);

    color: #fff;

    font-size: 12px;
    font-weight: 700;

    text-decoration: none;

    transition: all .25s ease;
}

.solars-footer-cta i {
    color: #F2B455;

    transition: transform .25s ease;
}

.solars-footer-cta:hover {
    border-color: #316E3D;

    background: #316E3D;

    color: #fff;
}

.solars-footer-cta:hover i {
    color: #fff;

    transform: translateX(5px);
}


/* =========================================================
   COLUMNS
========================================================= */

.solars-footer-column {
    display: flex;

    flex-direction: column;

    align-items: flex-start;
}

.solars-footer-title {
    margin-bottom: 25px;

    color: #F2B455;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 2px;
}

.solars-footer-column a,
.solars-footer-column > span {
    margin-bottom: 12px;

    color: rgba(255,255,255,0.58);

    font-size: 13px;

    line-height: 1.5;

    text-decoration: none;

    transition: color .2s ease;
}

.solars-footer-column a:hover {
    color: #fff;
}


/* =========================================================
   CONTACT
========================================================= */

.solars-footer-contact > a:first-of-type {
    color: #fff;

    font-size: 16px;
    font-weight: 600;
}

.solars-footer-contact > span {
    margin-top: 2px;

    color: rgba(255,255,255,0.38);
}


/* =========================================================
   SOCIALS
========================================================= */

.solars-footer-socials {
    display: flex;

    gap: 15px;

    margin-top: 20px;
    padding-top: 18px;

    border-top: 1px solid rgba(255,255,255,0.08);
}

.solars-footer-socials a {
    margin: 0;

    color: rgba(255,255,255,0.45);

    font-size: 11px;
}

.solars-footer-socials a:hover {
    color: #F2B455;
}


/* =========================================================
   DIVIDER
========================================================= */

.solars-footer-divider {
    position: relative;
    z-index: 2;

    height: 1px;

    margin-top: 70px;
    margin-bottom: 22px;

    background: rgba(255,255,255,0.1);
}


/* =========================================================
   BOTTOM
========================================================= */

.solars-footer-bottom {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns: 1fr auto 1fr;

    align-items: center;

    gap: 20px;

    color: rgba(255,255,255,0.3);

    font-size: 10px;

    letter-spacing: .5px;
}

.solars-footer-bottom-links {
    display: flex;

    gap: 25px;
}

.solars-footer-bottom-links a {
    color: rgba(255,255,255,0.35);

    text-decoration: none;

    transition: color .2s ease;
}

.solars-footer-bottom-links a:hover {
    color: #fff;
}

.solars-footer-made {
    text-align: right;

    letter-spacing: 1.5px;
}

.solars-footer-made span {
    color: #316E3D;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .solars-footer-v2 {
        padding: 70px 0 25px;
    }

    .solars-footer-main {
        grid-template-columns: 1.5fr 1fr 1fr;

        gap: 45px;
    }

    .solars-footer-contact {
        grid-column: span 3;
        padding-top: 20px;

        border-top: 1px solid rgba(255,255,255,0.08);
    }

    .solars-footer-divider {
        margin-top: 55px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .solars-footer-v2 {
        padding: 60px 0 20px;
    }

    .solars-footer-main {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .solars-footer-brand p {
        max-width: 100%;
    }

    .solars-footer-contact {
        grid-column: auto;

        padding-top: 35px;
    }

    .solars-footer-divider {
        margin-top: 45px;
    }

    .solars-footer-bottom {
        display: flex;

        flex-direction: column;

        align-items: flex-start;

        gap: 15px;
    }

    .solars-footer-bottom-links {
        flex-direction: column;

        gap: 8px;
    }

    .solars-footer-made {
        text-align: left;
    }

}

/* =========================================================
   HERO — SOLARS POWER SYSTEMS
   ========================================================= */

.header-hero {
    position: relative;
    height: 680px;
    overflow: hidden;
    background: #01050A;
    z-index: 1;
}


/* =========================================================
   IMAGE
   ========================================================= */

.header-hero-image {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;
}


/* =========================================================
   OVERLAY
   ========================================================= */

.header-hero-overlay {
    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(1, 5, 10, .82) 0%,
            rgba(1, 5, 10, .65) 38%,
            rgba(1, 5, 10, .25) 72%,
            rgba(1, 5, 10, .08) 100%
        );
}


/* =========================================================
   CONTENT
   ========================================================= */

.header-hero-content {
    position: relative;

    z-index: 2;

    height: 100%;

    display: flex;
    align-items: center;
}


.header-hero-text {
    max-width: 760px;

    padding-bottom: 10px;
}


/* =========================================================
   LABEL
   ========================================================= */

.header-hero-label {
    display: block;

    margin-bottom: 16px;

    color: var(--primary);

    font-family: "Roboto", sans-serif;

    font-size: 13px;
    font-weight: 700;

    line-height: 1.2;

    letter-spacing: 2px;

    text-transform: uppercase;
}


/* =========================================================
   TITLE
   ========================================================= */

.header-hero h1 {
    margin: 0 0 24px;

    color: #FFFFFF;

    font-family: "Roboto", sans-serif;

    font-size: 64px;
    font-weight: 800;

    line-height: 1.08;

    letter-spacing: -1px;
}


.header-hero h1 span {
    color: #F2B455;
}


/* =========================================================
   DESCRIPTION
   ========================================================= */

.header-hero p {
    max-width: 680px;

    margin: 0 0 34px;

    color: rgba(255, 255, 255, .84);

    font-size: 18px;
    font-weight: 400;

    line-height: 1.65;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991.98px) {

    .header-hero {
        height: 600px;
    }


    .header-hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(1, 5, 10, .84) 0%,
                rgba(1, 5, 10, .62) 55%,
                rgba(1, 5, 10, .25) 100%
            );
    }


    .header-hero-text {
        max-width: 680px;
    }


    .header-hero h1 {
        font-size: 50px;
    }


    .header-hero p {
        max-width: 600px;

        font-size: 17px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 575.98px) {

    .header-hero {
        height: 620px;
    }


    .header-hero-image {
        object-position: 62% center;
    }


    .header-hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(1, 5, 10, .88) 0%,
                rgba(1, 5, 10, .72) 60%,
                rgba(1, 5, 10, .42) 100%
            );
    }


    .header-hero-content {
        align-items: center;
    }


    .header-hero-text {
        max-width: 100%;
    }


    .header-hero-label {
        margin-bottom: 13px;

        font-size: 11px;

        letter-spacing: 1.5px;
    }


    .header-hero h1 {
        margin-bottom: 20px;

        font-size: 38px;

        line-height: 1.1;

        letter-spacing: -.5px;
    }


    .header-hero p {
        margin-bottom: 28px;

        font-size: 15px;

        line-height: 1.6;
    }


}


/* =========================================================
   FEATURES / TRUST BAR
   ========================================================= */

.solars-features {
    position: relative;

    margin-top: -60px;

    padding: 0 0 20px;

    background: transparent;

    z-index: 10;
}


/* =========================================================
   MAIN BOX
   ========================================================= */

.solars-features-box {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    background: #FFFFFF;

    border: 1px solid #E3E7E3;
    border-radius: 12px;

    box-shadow: 0 14px 40px rgba(1, 5, 10, .10);

    overflow: hidden;
}


/* =========================================================
   ITEM
   ========================================================= */

.solars-feature-item {
    min-height: 145px;

    padding: 28px 25px;

    display: flex;
    align-items: center;

    gap: 18px;

    border-right: 1px solid #E3E7E3;

    transition:
        background-color .25s ease;
}


.solars-feature-item:last-child {
    border-right: none;
}


.solars-feature-item:hover {
    background: #F8FAF7;
}


/* =========================================================
   ICON
   ========================================================= */

.solars-feature-icon {
    width: 50px;
    height: 50px;

    min-width: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #F0F5F0;

    border-radius: 10px;

    color: #316E3D;

    font-size: 20px;
}


/* =========================================================
   CONTENT
   ========================================================= */

.solars-feature-content {
    min-width: 0;
}


.solars-feature-content strong {
    display: block;

    margin-bottom: 3px;

    color: #01050A;

    font-size: 27px;
    font-weight: 800;

    line-height: 1.1;
}


.solars-feature-content h3 {
    margin: 0 0 3px;

    color: #17202A;

    font-size: 14px;
    font-weight: 700;

    line-height: 1.3;
}


.solars-feature-content p {
    margin: 0;

    color: #7A817D;

    font-size: 12px;
    font-weight: 400;

    line-height: 1.4;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991.98px) {

    .solars-features-box {
        grid-template-columns: repeat(2, 1fr);
    }


    .solars-feature-item {
        min-height: 135px;

        padding: 24px 22px;
    }


    .solars-feature-item:nth-child(2) {
        border-right: none;
    }


    .solars-feature-item:nth-child(-n + 2) {
        border-bottom: 1px solid #E3E7E3;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 575.98px) {

    .solars-features-box {
        grid-template-columns: 1fr;

        border-radius: 10px;
    }


    .solars-feature-item {
        min-height: auto;

        padding: 22px 20px;

        border-right: none;
        border-bottom: 1px solid #E3E7E3;
    }


    .solars-feature-item:last-child {
        border-bottom: none;
    }


    .solars-feature-icon {
        width: 46px;
        height: 46px;

        min-width: 46px;

        font-size: 18px;
    }


    .solars-feature-content strong {
        font-size: 24px;
    }


    .solars-feature-content h3 {
        font-size: 13px;
    }


    .solars-feature-content p {
        font-size: 12px;
    }

    .solars-features {
        margin-top: -30px;
        padding-bottom: 15px;
    }
}


/* =========================================================
   TOPBAR
   ========================================================= */

.solars-topbar {
    width: 100%;
    height: 42px;

    background: #01050A;
    color: #ffffff;

    font-family: "Roboto", sans-serif;
}

.solars-topbar .container-fluid {
    height: 100%;
}

.solars-topbar-inner {
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 40px;
}


/* Ліва частина */

.solars-topbar-info {
    display: flex;
    align-items: center;
    gap: 32px;
}

.solars-topbar-item {
    display: flex;
    align-items: center;
    gap: 8px;

    font-size: 12px;
    font-weight: 400;

    white-space: nowrap;
}

.solars-topbar-item i {
    color: #316E3D;
    font-size: 12px;
}


/* Соцмережі */

.solars-topbar-socials {
    height: 100%;

    display: flex;
    align-items: center;
}

.solars-topbar-socials a {
    width: 42px;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #ffffff;
    text-decoration: none;

    border-left: 1px solid rgba(255, 255, 255, 0.12);

    transition:
        color .2s ease,
        background-color .2s ease;
}

.solars-topbar-socials a:last-child {
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.solars-topbar-socials a:hover {
    color: #316E3D;
    background: rgba(255, 255, 255, 0.04);
}


/* =========================================================
   NAVBAR
   ========================================================= */

.navbar {
    min-height: 100px;

    padding: 0 !important;

    background: #ffffff !important;

    box-shadow: 0 2px 14px rgba(1, 5, 10, 0.06);

    z-index: 1000;
}


/* Sticky */

.navbar.sticky-top {
    top: 0;
    transition: box-shadow .25s ease;
}


/* =========================================================
   LOGO
   ========================================================= */

.navbar .navbar-brand {
    width: 220px;
    min-width: 220px;
    height: 100px !important;

    margin: 0;
    padding: 0 20px !important;

    display: flex;
    align-items: center;
    justify-content: center;

    border-right: 1px solid #E5E7EB;
}

.navbar .navbar-brand .logo {
    width: 185px;
    height: 82px;

    display: block;

    object-fit: contain;
    object-position: center;
}


/* =========================================================
   SERVICE SUPPORT
   ========================================================= */

.service-support {
    height: 100px;

    margin-left: 28px;
    margin-right: 30px;

    display: flex;
    align-items: center;

    gap: 12px;
}

.service-support-icon {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #F2F6F3;

    color: #316E3D;

    border-radius: 50%;

    font-size: 14px;
}

.service-support-content {
    display: flex;
    flex-direction: column;

    line-height: 1.25;
}

.service-support-content span {
    margin-bottom: 4px;

    color: #6B7280;

    font-size: 11px;
    font-weight: 500;

    text-transform: uppercase;
    letter-spacing: .5px;
}

.service-support-content a {
    color: #01050A;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;

    white-space: nowrap;

    transition: color .2s ease;
}

.service-support-content a:hover {
    color: #316E3D;
}


/* =========================================================
   NAVIGATION
   ========================================================= */

.navbar .navbar-nav {
    height: 100px;

    display: flex;
    align-items: center;
}

.navbar .navbar-nav .nav-link {
    height: 100px;

    padding: 0 17px !important;
    margin: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #01050A;

    font-size: 13px;
    font-weight: 600;

    text-transform: uppercase;
    letter-spacing: .2px;

    white-space: nowrap;

    transition: color .2s ease;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: #316E3D;
}


/* =========================================================
   CONSULTATION BUTTON
   ========================================================= */

.navbar .consultation-btn {
    width: 235px;
    height: 58px;

    margin: 0 30px 0 20px;
    padding: 0 24px !important;

    display: flex !important;
    align-items: center;
    justify-content: center;

    gap: 14px;

    background: #316E3D !important;

    border: none !important;
    border-radius: 0 !important;

    color: #ffffff !important;

    font-family: "Roboto", sans-serif;

    font-size: 13px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: .3px;

    line-height: 1;

    transition:
        background-color .2s ease,
        transform .2s ease;
}

.navbar .consultation-btn:hover {
    background: #285B32 !important;
    color: #ffffff !important;

    transform: translateY(-1px);
}

.navbar .consultation-btn i {
    font-size: 12px;
    margin: 0 !important;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 991.98px) {

    /* Topbar ховаємо */
    .solars-topbar {
        display: none;
    }

    /* Navbar */

    .navbar {
        min-height: 80px;
    }

    /* Logo */

    .navbar .navbar-brand {
        width: 190px;
        min-width: 190px;

        height: 80px !important;

        padding: 0 15px !important;

        border-right: none;
    }

    .navbar .navbar-brand .logo {
        width: 165px;
        height: 68px;
    }


    /* Hamburger */

    .navbar .navbar-toggler {
        margin-right: 18px;

        padding: 8px 10px;

        border: none;
        outline: none;

        box-shadow: none !important;
    }


    /* Mobile menu */

    .navbar .navbar-collapse {
        background: #ffffff;

        border-top: 1px solid #E5E7EB;
    }

    .navbar .navbar-nav {
        height: auto;

        padding: 8px 0 !important;

        display: block;
    }

    .navbar .navbar-nav .nav-link {
        width: 100%;
        height: auto;

        padding: 14px 25px !important;

        justify-content: flex-start;

        font-size: 13px;
    }


    /* Consultation */

    .navbar .consultation-btn {
        width: calc(100% - 30px);

        height: 56px;

        margin: 10px 15px 20px;

        padding: 0 20px !important;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 575.98px) {

    .navbar .navbar-brand {
        width: 165px;
        min-width: 165px;

        padding: 0 10px !important;
    }

    .navbar .navbar-brand .logo {
        width: 145px;
        height: 62px;
    }

    .navbar .navbar-toggler {
        margin-right: 12px;
    }

    .navbar .navbar-nav .nav-link {
        padding: 13px 20px !important;
    }
}

/* =========================================================
   HERO — HOME / BUSINESS CONTEXT
   ========================================================= */

.header-hero-context {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 14px;

    max-width: 760px;

    margin-top: 32px;
}


.hero-context-card {
    min-height: 175px;

    padding: 24px;

    display: flex;
    align-items: flex-end;

    position: relative;

    background: rgba(1, 5, 10, .58);

    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 8px;

    color: #FFFFFF;

    text-decoration: none;

    backdrop-filter: blur(5px);

    transition:
        background-color .25s ease,
        border-color .25s ease,
        transform .25s ease;
}


.hero-context-card:hover {
    background: rgba(49, 110, 61, .9);

    border-color: #316E3D;

    color: #FFFFFF;

    transform: translateY(-3px);
}


.hero-context-card-content {
    width: 100%;
}


.hero-context-card-content > span {
    display: block;

    margin-bottom: 10px;

    color: #FFFFFF;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1px;
}


.hero-context-card-content h3 {
    max-width: 310px;

    margin: 0 0 22px;

    color: #FFFFFF;

    font-size: 18px;
    font-weight: 700;

    line-height: 1.35;
}


.hero-context-link {
    display: inline-flex;
    align-items: center;

    gap: 9px;

    color: #FFFFFF;

    font-size: 12px;
    font-weight: 700;

    text-transform: uppercase;
}


.hero-context-link i {
    font-size: 10px;

    transition: transform .25s ease;
}


.hero-context-card:hover .hero-context-link i {
    transform: translateX(4px);
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767.98px) {

    .header-hero-context {
        grid-template-columns: 1fr;

        gap: 10px;

        margin-top: 25px;
    }

    .hero-context-card {
        min-height: 145px;

        padding: 20px;
    }

    .hero-context-card-content h3 {
        font-size: 16px;

        margin-bottom: 17px;
    }

}


/* =========================================================
   ABOUT COMPANY V2
========================================================= */

.solars-about-v2 {
    position: relative;

    padding: 115px 0 105px;

    background: #FFFFFF;

    overflow: hidden;
}


/* subtle technical background */

.solars-about-v2::before {
    content: "SOLARS";

    position: absolute;

    right: -40px;
    top: 55px;

    color: rgba(49, 110, 61, .035);

    font-family: "Roboto", sans-serif;

    font-size: 180px;
    font-weight: 900;

    letter-spacing: -8px;

    pointer-events: none;
}


/* HEADER */

.solars-about-v2-header {
    max-width: 850px;

    margin-bottom: 70px;
}


.solars-about-v2-label {
    display: flex;
    align-items: center;

    gap: 12px;

    margin-bottom: 18px;

    color: #316E3D;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;
}


.about-line {
    width: 34px;
    height: 2px;

    background: #F2B455;
}


.solars-about-v2-header h2 {
    max-width: 800px;

    margin: 0 0 20px;

    color: #01050A;

    font-size: 50px;
    font-weight: 800;

    line-height: 1.08;

    letter-spacing: -1px;
}


.solars-about-v2-header h2 span {
    color: #316E3D;
}


.solars-about-v2-header p {
    max-width: 650px;

    margin: 0;

    color: #737B76;

    font-size: 16px;

    line-height: 1.7;
}


/* MAIN GRID */

.solars-about-v2-grid {
    display: grid;

    grid-template-columns: 1.15fr .85fr;

    gap: 75px;

    align-items: start;
}


/* LEFT */

.solars-about-v2-main {
    display: grid;

    grid-template-columns: 60px 1fr;

    gap: 28px;
}


.about-v2-number {
    color: #316E3D;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 1px;
}


.about-v2-content {
    max-width: 720px;
}


.about-v2-mini {
    display: block;

    margin-bottom: 14px;

    color: #8A928D;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 2px;
}


.about-v2-content h3 {
    margin: 0 0 22px;

    color: #01050A;

    font-size: 34px;
    font-weight: 800;

    line-height: 1.15;

    letter-spacing: -.5px;
}


.about-v2-content p {
    margin: 0 0 17px;

    color: #626B65;

    font-size: 15px;

    line-height: 1.8;
}


.about-v2-content .about-v2-lead {
    color: #01050A;

    font-size: 18px;
    font-weight: 500;

    line-height: 1.6;

    margin-bottom: 24px;
}


/* STATEMENT */

.about-v2-statement {
    display: flex;

    align-items: flex-start;

    gap: 15px;

    margin-top: 30px;

    padding: 20px 0;

    border-top: 1px solid #E1E6E2;
    border-bottom: 1px solid #E1E6E2;
}


.about-v2-statement span {
    width: 4px;
    min-width: 4px;

    height: 38px;

    background: #F2B455;
}


.about-v2-statement strong {
    max-width: 500px;

    color: #01050A;

    font-size: 16px;
    font-weight: 700;

    line-height: 1.5;
}


/* RIGHT SIDE */

.solars-about-v2-side {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 12px;
}


.about-v2-principle {
    min-height: 230px;

    padding: 24px;

    background: #F5F7F5;

    border: 1px solid #E1E6E2;

    transition:
        transform .25s ease,
        border-color .25s ease,
        background-color .25s ease;
}


.about-v2-principle:hover {
    transform: translateY(-4px);

    background: #FFFFFF;

    border-color: #B8CDBB;

    box-shadow: 0 15px 35px rgba(1, 5, 10, .07);
}


.about-v2-principle-top {
    display: flex;

    align-items: center;
    justify-content: space-between;

    margin-bottom: 28px;
}


.about-v2-principle-top > span {
    color: #AEB6B0;

    font-size: 11px;
    font-weight: 700;
}


.about-v2-icon {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #FFFFFF;

    border: 1px solid #E1E6E2;

    color: #316E3D;

    font-size: 15px;
}


.about-v2-principle h4 {
    margin: 0 0 10px;

    color: #01050A;

    font-size: 17px;
    font-weight: 750;
}


.about-v2-principle p {
    margin: 0;

    color: #737B76;

    font-size: 13px;

    line-height: 1.65;
}


/* BOTTOM */

.solars-about-v2-bottom {
    margin-top: 75px;

    padding-top: 25px;

    border-top: 1px solid #DDE3DE;
}


.about-v2-bottom-label {
    margin-bottom: 25px;

    color: #316E3D;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 2px;
}


.about-v2-process {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    border: 1px solid #E1E6E2;
}


.about-v2-process-item {
    min-height: 155px;

    padding: 25px;

    border-right: 1px solid #E1E6E2;

    transition: background-color .25s ease;
}


.about-v2-process-item:last-child {
    border-right: none;
}


.about-v2-process-item:hover {
    background: #F5F7F5;
}


.about-v2-process-item span {
    display: block;

    margin-bottom: 22px;

    color: #F2B455;

    font-size: 11px;
    font-weight: 800;
}


.about-v2-process-item strong {
    display: block;

    margin-bottom: 7px;

    color: #01050A;

    font-size: 15px;
    font-weight: 750;
}


.about-v2-process-item p {
    margin: 0;

    color: #7A817D;

    font-size: 12px;

    line-height: 1.5;
}


/* TABLET */

@media (max-width: 991.98px) {

    .solars-about-v2 {
        padding: 85px 0;
    }

    .solars-about-v2-header {
        margin-bottom: 50px;
    }

    .solars-about-v2-header h2 {
        font-size: 40px;
    }

    .solars-about-v2-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .solars-about-v2-side {
        grid-template-columns: repeat(4, 1fr);
    }

    .about-v2-principle {
        min-height: 250px;
    }

}


/* MOBILE */

@media (max-width: 575.98px) {

    .solars-about-v2 {
        padding: 65px 0;
    }

    .solars-about-v2::before {
        display: none;
    }

    .solars-about-v2-header {
        margin-bottom: 40px;
    }

    .solars-about-v2-header h2 {
        font-size: 31px;

        line-height: 1.12;
    }

    .solars-about-v2-header p {
        font-size: 14px;
    }

    .solars-about-v2-main {
        grid-template-columns: 1fr;

        gap: 10px;
    }

    .about-v2-number {
        margin-bottom: 5px;
    }

    .about-v2-content h3 {
        font-size: 27px;
    }

    .about-v2-content .about-v2-lead {
        font-size: 16px;
    }

    .about-v2-content p {
        font-size: 14px;
    }

    .solars-about-v2-side {
        grid-template-columns: 1fr;
    }

    .about-v2-principle {
        min-height: 0;

        padding: 22px;
    }

    .solars-about-v2-bottom {
        margin-top: 50px;
    }

    .about-v2-process {
        grid-template-columns: 1fr;
    }

    .about-v2-process-item {
        min-height: auto;

        border-right: none;
        border-bottom: 1px solid #E1E6E2;
    }

    .about-v2-process-item:last-child {
        border-bottom: none;
    }

}


/* =========================================================
   SERVICE V2
========================================================= */

.solars-service-v2 {
    position: relative;

    padding: 110px 0;

    background: #01050A;

    color: #FFFFFF;

    overflow: hidden;
}


/* technical background */

.solars-service-v2::before {
    content: "";

    position: absolute;

    width: 600px;
    height: 600px;

    right: -250px;
    top: -250px;

    border: 1px solid rgba(49, 110, 61, .20);

    border-radius: 50%;
}


.solars-service-v2::after {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    right: -160px;
    top: -160px;

    border: 1px solid rgba(242, 180, 85, .12);

    border-radius: 50%;
}


/* HEADER */

.solars-service-v2-header {
    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns: 1fr .65fr;

    gap: 80px;

    align-items: end;

    margin-bottom: 60px;
}


.service-v2-label {
    display: flex;
    align-items: center;

    gap: 12px;

    margin-bottom: 18px;

    color: #F2B455;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;
}


.service-v2-label span {
    width: 32px;
    height: 2px;

    background: #316E3D;
}


.solars-service-v2-header h2 {
    max-width: 650px;

    margin: 0;

    color: #FFFFFF;

    font-size: 50px;
    font-weight: 800;

    line-height: 1.08;

    letter-spacing: -1px;
}


.solars-service-v2-header h2 strong {
    color: #316E3D;
}


.solars-service-v2-header > p {
    margin: 0;

    color: rgba(255, 255, 255, .62);

    font-size: 15px;

    line-height: 1.8;
}


/* GRID */

.solars-service-v2-grid {
    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 1px;

    background: rgba(255, 255, 255, .13);

    border: 1px solid rgba(255, 255, 255, .13);
}


/* CARD */

.service-v2-card {
    position: relative;

    min-height: 270px;

    padding: 30px;

    background: #01050A;

    transition:
        background-color .25s ease,
        transform .25s ease;
}


.service-v2-card:hover {
    background: #07110A;

    z-index: 2;
}


/* CARD TOP */

.service-v2-card-top {
    display: flex;

    align-items: center;
    justify-content: space-between;

    margin-bottom: 50px;
}


.service-v2-card-top span {
    color: rgba(255, 255, 255, .32);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1px;
}


.service-v2-card-top i {
    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(49, 110, 61, .15);

    color: #316E3D;

    font-size: 15px;

    transition:
        background-color .25s ease,
        color .25s ease;
}


.service-v2-card:hover .service-v2-card-top i {
    background: #316E3D;

    color: #FFFFFF;
}


/* CONTENT */

.service-v2-card h3 {
    margin: 0 0 12px;

    color: #FFFFFF;

    font-size: 18px;
    font-weight: 750;

    line-height: 1.3;
}


.service-v2-card p {
    max-width: 330px;

    margin: 0;

    color: rgba(255, 255, 255, .55);

    font-size: 13px;

    line-height: 1.7;
}


/* LINE */

.service-v2-card-line {
    position: absolute;

    left: 30px;
    bottom: 25px;

    width: 30px;
    height: 2px;

    background: #316E3D;

    transition: width .25s ease;
}


.service-v2-card:hover .service-v2-card-line {
    width: 55px;

    background: #F2B455;
}


/* BOTTOM CTA */

.solars-service-v2-bottom {
    position: relative;

    z-index: 2;

    margin-top: 20px;

    padding: 35px 38px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 50px;

    background: #F5F7F5;

    color: #01050A;
}


.service-v2-bottom-content {
    max-width: 720px;
}


.service-v2-bottom-content > span {
    display: block;

    margin-bottom: 10px;

    color: #316E3D;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 2px;
}


.service-v2-bottom-content h3 {
    margin: 0 0 9px;

    color: #01050A;

    font-size: 24px;
    font-weight: 800;

    line-height: 1.2;
}


.service-v2-bottom-content p {
    margin: 0;

    color: #737B76;

    font-size: 13px;

    line-height: 1.7;
}


.service-v2-button {
    flex-shrink: 0;

    min-height: 52px;

    padding: 0 23px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    background: #316E3D;

    color: #FFFFFF;

    font-size: 12px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: .5px;

    text-decoration: none;

    transition:
        background-color .25s ease,
        transform .25s ease;
}


.service-v2-button:hover {
    background: #F2B455;

    color: #01050A;

    transform: translateY(-2px);
}


.service-v2-button i {
    transition: transform .25s ease;
}


.service-v2-button:hover i {
    transform: translateX(4px);
}


/* TABLET */

@media (max-width: 991.98px) {

    .solars-service-v2 {
        padding: 85px 0;
    }

    .solars-service-v2-header {
        grid-template-columns: 1fr;

        gap: 25px;

        margin-bottom: 45px;
    }

    .solars-service-v2-header h2 {
        font-size: 40px;
    }

    .solars-service-v2-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .solars-service-v2-bottom {
        align-items: flex-start;

        flex-direction: column;

        gap: 25px;
    }

}


/* MOBILE */

@media (max-width: 575.98px) {

    .solars-service-v2 {
        padding: 65px 0;
    }

    .solars-service-v2-header {
        margin-bottom: 35px;
    }

    .solars-service-v2-header h2 {
        font-size: 31px;
    }

    .solars-service-v2-header > p {
        font-size: 14px;
    }

    .solars-service-v2-grid {
        grid-template-columns: 1fr;
    }

    .service-v2-card {
        min-height: 230px;

        padding: 23px;
    }

    .service-v2-card-top {
        margin-bottom: 35px;
    }

    .service-v2-card-line {
        left: 23px;
    }

    .solars-service-v2-bottom {
        padding: 25px 22px;

        gap: 25px;
    }

    .service-v2-bottom-content h3 {
        font-size: 21px;
    }

    .service-v2-bottom-content p {
        font-size: 13px;
    }

    .service-v2-button {
        width: 100%;
    }

}

/* =========================================================
   SOLARS CONTACT V2 — REBUILT
   ========================================================= */

.solars-contact-v2 {
    position: relative;
    padding: 115px 0 100px;
    background: #FFFFFF;
    color: #01050A;
    overflow: hidden;
}

.solars-contact-v2::before {
    content: "";
    position: absolute;
    width: 680px;
    height: 680px;
    right: -330px;
    top: -260px;
    border: 1px solid rgba(49, 110, 61, .14);
    border-radius: 50%;
    pointer-events: none;
}

.solars-contact-v2::after {
    content: "";
    position: absolute;
    width: 440px;
    height: 440px;
    right: -210px;
    top: -140px;
    border: 1px solid rgba(242, 180, 85, .12);
    border-radius: 50%;
    pointer-events: none;
}

.solars-contact-v2 .container {
    position: relative;
    z-index: 2;
}

.solars-contact-v2 .row {
    --bs-gutter-x: 4.5rem;
}

/* LEFT */

.solars-contact-v2 .solars-section-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
    color: #F2B455;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.solars-contact-v2 .solars-section-label span {
    width: 32px;
    height: 2px;
    background: #316E3D;
}

.solars-contact-title {
    max-width: 520px;
    margin: 0 0 25px;
    color: #01050A;
    font-size: 50px;
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -1px;
}

.solars-contact-title span {
    color: #316E3D;
}

.solars-contact-lead {
    max-width: 500px;
    margin: 0 0 13px;
    color: rgba(1,5,10,.78);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.55;
}

.solars-contact-text {
    max-width: 500px;
    margin: 0;
    color: rgba(1,5,10,.58);
    font-size: 14px;
    line-height: 1.8;
}

/* NOTE */

.solars-contact-note {
    max-width: 500px;
    margin-top: 30px;
    padding: 17px 0;
    display: flex;
    align-items: center;
    gap: 14px;
    border-top: 1px solid #E1E6E2;
    border-bottom: 1px solid #E1E6E2;
}

.solars-contact-note-icon {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(49,110,61,.16);
    color: #316E3D;
    font-size: 13px;
}

.solars-contact-note strong {
    display: block;
    margin-bottom: 3px;
    color: #01050A;
    font-size: 13px;
    font-weight: 700;
}

.solars-contact-note span {
    display: block;
    color: #737B76;
    font-size: 11px;
}

/* CONTACT DETAILS */

.solars-contact-info {
    max-width: 500px;
    margin-top: 35px;
}

.solars-contact-brand {
    margin-bottom: 18px;
    color: #8A928D;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 3px;
}

.solars-contact-info > a {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 13px 0;
    border-top: 1px solid #E1E6E2;
    color: #01050A;
    text-decoration: none;
    transition: color .2s ease;
}

.solars-contact-info > a:last-of-type {
    border-bottom: 1px solid #E1E6E2;
}

.solars-contact-info > a:hover {
    color: #F2B455;
}

.solars-contact-info > a span,
.solars-socials > span {
    color: #8A928D;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.solars-contact-info > a {
    font-size: 14px;
    font-weight: 600;
}

/* SOCIALS */

.solars-socials {
    padding-top: 18px;
}

.solars-socials > div {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 10px;
}

.solars-socials a {
    color: #555E58;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: color .2s ease;
}

.solars-socials a:hover {
    color: #F2B455;
}

.solars-address {
    margin-top: 20px;
    color: #737B76;
    font-size: 11px;
}

/* FORM CARD */

.solars-form-card {
    position: relative;
    padding: 45px;
    background: #fff;
    border: 1px solid #E1E6E2;
    color: #01050A;
    box-shadow: 0 25px 70px rgba(0,0,0,.20);
}

.solars-form-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: #316E3D;
}

.solars-form-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: -45px -45px 38px;
    border-bottom: 1px solid #E1E6E2;
}

.solars-form-tab {
    position: relative;
    min-height: 72px;
    padding: 15px 22px;
    border: 0;
    background: #F5F7F5;
    color: #8A928D;
    text-align: left;
    font-family: inherit;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.25;
    cursor: pointer;
    transition: background .2s ease, color .2s ease;
}

.solars-form-tab span {
    display: block;
    margin-top: 5px;
    color: #AEB6B0;
    font-size: 10px;
    font-weight: 400;
}

.solars-form-tab:hover {
    color: #01050A;
}

.solars-form-tab.active {
    background: #fff;
    color: #01050A;
}

.solars-form-tab.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 3px;
    background: #316E3D;
}

.solars-form-tab.active span {
    color: #316E3D;
}

/* FORM CONTENT */

.solars-consultation-form,
.solars-service-form {
    display: none;
}

.solars-consultation-form.active,
.solars-service-form.active {
    display: block;
}

.solars-form-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 28px;
}

.solars-form-number {
    display: block;
    margin-bottom: 7px;
    color: #F2B455;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
}

.solars-form-top h3 {
    margin: 0;
    color: #01050A;
    font-size: 25px;
    font-weight: 800;
    line-height: 1.2;
}

.solars-form-required {
    flex-shrink: 0;
    color: #A1A8A3;
    font-size: 9px;
    white-space: nowrap;
}

/* GROUPS */

.solars-form-group {
    margin-bottom: 23px;
}

.solars-form-group > label,
.solars-input-group > label {
    display: block;
    margin-bottom: 8px;
    color: #01050A;
    font-size: 11px;
    font-weight: 800;
}

.solars-radio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.solars-radio-grid.solars-radio-grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.solars-radio {
    position: relative;
    min-height: 45px;
    margin: 0;
    padding: 0 12px;
    display: flex;
    align-items: center;
    gap: 9px;
    border: 1px solid #E1E6E2;
    background: #F7F9F7;
    color: #555E58;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    transition: border-color .2s ease, background .2s ease, color .2s ease;
}

.solars-radio:hover {
    border-color: #B8CDBB;
    background: #fff;
}

.solars-radio input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.solars-radio-mark {
    width: 14px;
    height: 14px;
    flex: 0 0 14px;
    border: 1px solid #B8C0BA;
    border-radius: 50%;
    background: #fff;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.solars-radio input:checked + .solars-radio-mark {
    border: 4px solid #316E3D;
    box-shadow: 0 0 0 1px #316E3D;
}

.solars-radio:has(input:checked) {
    border-color: #316E3D;
    background: #F3F7F3;
    color: #01050A;
}

/* INPUTS */

.solars-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.solars-input-group {
    margin-bottom: 18px;
}

.solars-input-group input,
.solars-input-group textarea,
.solars-input-group select {
    width: 100%;
    display: block;
    padding: 12px 14px;
    border: 1px solid #E1E6E2;
    border-radius: 0;
    outline: none;
    background: #F7F9F7;
    color: #01050A;
    font-family: inherit;
    font-size: 12px;
    box-shadow: none;
    transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.solars-input-group input {
    height: 48px;
}

.solars-input-group textarea {
    min-height: 105px;
    resize: vertical;
    line-height: 1.5;
}

.solars-input-group input::placeholder,
.solars-input-group textarea::placeholder {
    color: #A1A8A3;
}

.solars-input-group input:focus,
.solars-input-group textarea:focus,
.solars-input-group select:focus {
    border-color: #316E3D;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(49,110,61,.08);
}

/* SUBMIT */

.solars-form-submit {
    display: flex;
    align-items: center;
    gap: 18px;
    padding-top: 4px;
}

.solars-submit-btn {
    min-height: 52px;
    padding: 0 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 0;
    border-radius: 0;
    background: #316E3D;
    color: #fff;
    font-family: inherit;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .5px;
    cursor: pointer;
    transition: background .2s ease, transform .2s ease;
}

.solars-submit-btn:hover {
    background: #F2B455;
    color: #01050A;
    transform: translateY(-2px);
}

.solars-submit-btn i {
    font-size: 10px;
}

/* TELEGRAM CTA */

.solars-contact-calculator {
    position: relative;
    z-index: 2;
    margin-top: 20px;
    padding: 30px 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    background: #F5F7F5;
    border: 1px solid #E1E6E2;
}

.solars-contact-calculator-content {
    max-width: 720px;
}

.solars-contact-calculator-content > span {
    display: block;
    margin-bottom: 9px;
    color: #316E3D;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
}

.solars-contact-calculator-content h3 {
    margin: 0 0 8px;
    color: #01050A;
    font-size: 22px;
    font-weight: 800;
}

.solars-contact-calculator-content p {
    margin: 0;
    color: #737B76;
    font-size: 13px;
    line-height: 1.7;
}

.solars-telegram-btn {
    min-height: 52px;
    flex-shrink: 0;
    padding: 0 23px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #01050A;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    transition: background .2s ease, transform .2s ease;
}

.solars-telegram-btn:hover {
    background: #316E3D;
    color: #fff;
    transform: translateY(-2px);
}

/* CONTACT RESPONSIVE */

@media (max-width: 991.98px) {
    .solars-contact-v2 {
        padding: 85px 0;
    }

    .solars-contact-v2 .row {
        --bs-gutter-x: 1.5rem;
    }

    .solars-contact-title {
        font-size: 42px;
    }

    .solars-form-card {
        margin-top: 15px;
    }

    .solars-contact-calculator {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 767.98px) {
    .solars-contact-v2 {
        padding: 70px 0;
    }

    .solars-contact-title {
        font-size: 36px;
    }

    .solars-contact-lead {
        font-size: 16px;
    }

    .solars-form-card {
        padding: 30px 22px;
    }

    .solars-form-tabs {
        margin: -30px -22px 30px;
    }

    .solars-form-tab {
        min-height: 66px;
        padding: 13px 14px;
        font-size: 11px;
    }

    .solars-form-tab span {
        font-size: 9px;
    }

    .solars-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .solars-radio-grid,
    .solars-radio-grid.solars-radio-grid-2 {
        grid-template-columns: 1fr;
    }

    .solars-form-top {
        flex-direction: column;
        gap: 8px;
    }

    .solars-form-top h3 {
        font-size: 22px;
    }

    .solars-form-submit {
        align-items: stretch;
        flex-direction: column;
        gap: 12px;
    }

    .solars-submit-btn {
        width: 100%;
    }

    .solars-contact-calculator {
        padding: 24px 22px;
    }

    .solars-telegram-btn {
        width: 100%;
    }
}

@media (max-width: 575.98px) {
    .solars-contact-title {
        font-size: 32px;
    }

    .solars-contact-note {
        align-items: flex-start;
    }

    .solars-socials > div {
        gap: 13px;
    }
}


.solars-contact-phone {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 13px 0;
    border-top: 1px solid #E1E6E2;
}

.solars-contact-phone > span {
    color: #8A928D;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.solars-contact-phone-numbers {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
}

.solars-contact-phone-numbers a {
    color: #01050A;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.solars-contact-phone-numbers a:hover {
    color: #F2B455;
}


/* =========================================================
   SITE CONTEXT SWITCHER — ГОЛОВНА / ДЛЯ ДОМУ / ДЛЯ БІЗНЕСУ
   ========================================================= */

.solars-context-switcher {
    display: inline-flex;
    flex-wrap: wrap;
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(1, 5, 10, .45);
    backdrop-filter: blur(8px);
}

.solars-context-switcher a {
    min-height: 44px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid rgba(255, 255, 255, .18);
    color: rgba(255, 255, 255, .68);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .8px;
    text-decoration: none;
    transition: background-color .2s ease, color .2s ease;
}

.solars-context-switcher a:last-child {
    border-right: 0;
}

.solars-context-switcher a:hover {
    background: rgba(255, 255, 255, .10);
    color: #FFFFFF;
}

.solars-context-switcher a.active {
    background: #316E3D;
    color: #FFFFFF;
}

.solars-context-dropdown {
    height: 100px;
    display: flex;
    align-items: center;
}

.solars-context-toggle {
    height: 100px;
    padding: 0 17px;
    border: 0;
    background: transparent;
    color: #316E3D;
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .2px;
    white-space: nowrap;
    cursor: pointer;
}

.solars-context-toggle:hover,
.solars-context-toggle:focus {
    color: #24552E;
}

.solars-context-dropdown .dropdown-menu {
    min-width: 195px;
    margin-top: 0;
    padding: 8px 0;
    border: 1px solid #E1E6E2;
    border-radius: 0;
    background: #FFFFFF;
    box-shadow: 0 15px 35px rgba(1, 5, 10, .12);
}

.solars-context-dropdown .dropdown-item {
    padding: 11px 18px;
    color: #555E58;
    font-size: 13px;
    font-weight: 700;
}

.solars-context-dropdown .dropdown-item:hover {
    background: #F5F7F5;
    color: #316E3D;
}

.solars-context-dropdown .dropdown-item.active,
.solars-context-dropdown .dropdown-item:active {
    background: #316E3D;
    color: #FFFFFF;
}

@media (max-width: 991.98px) {
    .solars-context-dropdown {
        width: 100%;
        height: auto;
        display: block;
    }

    .solars-context-toggle {
        width: 100%;
        height: auto;
        padding: 14px 25px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        text-align: left;
    }

    .solars-context-dropdown .dropdown-menu {
        position: static !important;
        width: calc(100% - 40px);
        margin: 0 20px 8px;
        transform: none !important;
        box-shadow: none;
    }
}

@media (max-width: 575.98px) {
    .solars-context-switcher {
        width: 100%;
    }

    .solars-context-switcher a {
        flex: 1 1 33.333%;
        min-width: 0;
        padding: 0 9px;
        font-size: 10px;
        letter-spacing: .3px;
        text-align: center;
    }

    .solars-context-toggle {
        padding: 13px 20px;
    }
}


/* =========================================================
   HERO — 3 КАРТКИ
   ========================================================= */

.header-hero-text {
    width: 100%;
    max-width: 1140px;
}

.header-hero-context {
    width: 100%;
    max-width: 1140px;

    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;

    gap: 14px;
    margin-top: 32px;
}

.hero-context-card {
    width: 100%;
    min-width: 0;
    min-height: 185px;
}

.hero-context-card-content {
    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.hero-context-card-content h3 {
    max-width: none;
}

/* Планшет */
@media (max-width: 991.98px) {

    .header-hero {
        height: auto;
        min-height: 820px;
    }

    .header-hero-content {
        padding: 70px 0;
    }

    .header-hero-context {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    /* Калькулятор займає весь другий рядок */
    .hero-context-card:nth-child(3) {
        grid-column: 1 / -1;
    }
}

/* Телефон */
@media (max-width: 767.98px) {

    .header-hero {
        height: auto;
        min-height: 0;
    }

    .header-hero-content {
        padding: 55px 0;
    }

    .header-hero-context {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .hero-context-card:nth-child(3) {
        grid-column: auto;
    }

    .hero-context-card {
        min-height: 145px;
    }
}

.solars-honeypot {
    position: absolute !important;

    width: 1px;
    height: 1px;

    padding: 0;
    margin: -1px;

    overflow: hidden;
    clip: rect(0, 0, 0, 0);

    white-space: nowrap;
    border: 0;
}

.solars-form-submit {
    display: grid;
    grid-template-columns: minmax(210px, 0.8fr) minmax(280px, 1.2fr);
    align-items: center;
    gap: 24px;
    width: 100%;
    margin-top: 24px;
}

.solars-form-submit .solars-submit-btn {
    width: 100%;
    margin: 0;
}

/* Згода */

.privacy-consent {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 11px;
    margin: 0;
    cursor: pointer;
}

.privacy-consent input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.privacy-consent-check {
    display: flex;
    flex: 0 0 22px;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    margin-top: 1px;
    color: transparent;
    background-color: #ffffff;
    border: 2px solid #d4d8d0;
    border-radius: 6px;
    transition:
        color 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.privacy-consent-check i {
    font-size: 11px;
}

.privacy-consent input:checked + .privacy-consent-check {
    color: #171a17;
    background-color: #f3cf39;
    border-color: #f3cf39;
}

.privacy-consent:has(input:focus-visible)
.privacy-consent-check {
    border-color: #d8b41f;
    box-shadow: 0 0 0 4px rgba(243, 207, 57, 0.22);
}

.privacy-consent-text {
    color: #6f756d;
    font-size: 12px;
    line-height: 1.5;
}

.privacy-consent-text a {
    color: #1d211c;
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: #f3cf39;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
}

.privacy-consent-text a:hover {
    color: #b18d00;
}

/* Планшет і телефон */

@media (max-width: 767px) {
    .solars-form-submit {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .privacy-consent {
        grid-row: 1;
    }

    .solars-form-submit .solars-submit-btn {
        grid-row: 2;
    }
}

@media (prefers-reduced-motion: reduce) {
    .privacy-consent-check {
        transition: none;
    }
}

/* FIX: секція "Про компанію" */

.solars-about-v2-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 80px;
    align-items: start;
}

.solars-about-v2-main,
.about-v2-content {
    width: 100%;
    max-width: none;
    min-width: 0;
}

.about-v2-content h3,
.about-v2-content p {
    width: auto;
    max-width: 100%;
    word-break: normal;
    overflow-wrap: normal;
}

.solars-about-v2-side {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    min-width: 0;
}

@media (max-width: 991.98px) {
    .solars-about-v2-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 575.98px) {
    .solars-about-v2-side {
        grid-template-columns: 1fr;
    }
}