
:root {
    --bg: #05080d;
    --bg-light: #0f141d;

    --primary: #8bc53f;
    --primary-hover: #79af34;

    --text: #ffffff;
    --text-muted: #b5bcc8;

    --container: 1440px;
}

* {
    box-sizing: border-box;
}

body.admin-bar .hero {
    padding-top: 160px;
}

body {
    margin: 0;

    color: var(--text);

    font-family: Inter, sans-serif;

    background:
        linear-gradient(
            90deg,
            rgba(5, 8, 13, 0.92) 0%,
            rgba(5, 8, 13, 0.85) 40%,
            rgba(5, 8, 13, 0.55) 70%,
            rgba(5, 8, 13, 0.75) 100%
        ),
        url('../images/boiler-bg.jpg');

    background-size: cover;

    background-position: center center;

    background-repeat: no-repeat;

    background-attachment: scroll;
}

.site-wrapper {
    position: relative;

    min-height: 100vh;
}

img {
    max-width: 100%;

    display: block;
}

a {
    color: inherit;

    text-decoration: none;
}

.container {
    width: min(100% - 40px, var(--container));

    margin-inline: auto;
}
.site-header {
    position: fixed;

    width: 100%;

    background: rgba(5,8,13,.55);

    backdrop-filter: blur(16px);
}

.header-inner {
    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 24px 0;
}

.site-logo a {
    font-size: 24px;

    font-weight: 800;

    font-family: Montserrat, sans-serif;
}



.header-menu {
    display: flex;

    gap: 40px;

    list-style: none;

    margin: 0;

    padding: 0;
}

.header-btn {
    background: var(--primary);

    color: #000;

    padding: 14px 24px;

    border-radius: 8px;

    font-weight: 600;
}

.hero {
    min-height: calc(100vh - 80px);

    display: flex;

    align-items: center;

    padding: 90px 0 120px;

    position: relative;

     overflow: hidden;
}

/*.hero::after {
    content: '1';

    position: absolute;

    right: 5%;

    top: 50%;

    transform: translateY(-50%);

    font-size: 500px;

    font-family: Montserrat;

    font-weight: 800;

    color: transparent;

    -webkit-text-stroke: 2px rgba(139,197,63,.45);

    z-index: 1;
}*/

.hero::before {
    content: '';

    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at 70% 50%,
            rgba(139, 197, 63, 0.08),
            transparent 40%
        );

    pointer-events: none;
}

.hero-number {
    position: absolute;

    right: -70px;

    top: 55%;

    transform: translateY(-50%);

    width: 280px;

    opacity: 0.12;

    z-index: 1;

    pointer-events: none;
}

/*.hero-number img {
    width: 450px;

    height: auto;

    opacity: 0.35;

    display: block;
}*/

.hero-content {
    position: relative;

    z-index: 2;

    max-width: 650px;
}


.hero-image {
    position: relative;

    z-index: 2;
}

.hero-grid {
    display: grid;

    grid-template-columns: 1.1fr 0.9fr;

    gap: 120px;

    align-items: center;
}

.hero-subtitle {
    display: inline-block;

    color: var(--primary);

    margin-bottom: 20px;
}

.hero-title {
    font-size: clamp(72px, 5vw, 96px);

    line-height: .95;

    letter-spacing: -.04em;
}

.hero-title span {
    color: var(--primary);
}

.hero-description {
    color: var(--text-muted);

    line-height: 1.8;

    max-width: 600px;

    margin-bottom: 32px;
}

.hero-button {
    display: inline-flex;

    align-items: center;

    gap: 12px;

    padding: 20px 40px;

    background: var(--primary);

    color: #000;

    border-radius: 12px;

    font-weight: 700;

    transition: .3s;
    box-shadow: 0 10px 30px rgba(139, 197, 63, 0.25);
    transition: all .3s ease;
}

.hero-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(139, 197, 63, 0.35);
    background: var(--primary-hover);

    transform: translateY(-2px);
}

.hero-button-arrow {
    font-size: 22px;

    line-height: 1;
}

.hero-image img {
    width: 100%;

    max-width: 650px;

    margin-left: auto;

    border-radius: 24px;

    object-fit: cover;

    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
}



.advantages {
    margin-top: -120px;

    position: relative;

    z-index: 10;
}

.advantages-grid {
    display: flex;

    background: rgba(8, 12, 20, 0.85);

    backdrop-filter: blur(20px);

    border: 1px solid rgba(255,255,255,.08);

    border-radius: 24px;

    overflow: hidden;
}

.advantage-card {
    flex: 1;
    min-height: 220px;
    background: transparent;

    border-radius: 0;

    border-right: 1px solid rgba(255,255,255,.08);
}

.advantage-card:last-child {
    border-right: none;
}

.advantage-card:hover {
    transform: translateY(-8px);

    border-color: rgba(139, 197, 63, 0.4);
}

.advantage-icon {
    margin-bottom: 25px;
}

.advantage-icon img {
    width: 60px;

    height: 60px;

    object-fit: contain;
}

.advantage-card h3 {
    margin: 0 0 15px;

    font-family: Montserrat, sans-serif;

    font-size: 20px;
}

.advantage-card p {
    color: var(--text-muted);

    line-height: 1.7;

    margin: 0;
}

.contacts {
    padding: 120px 0;
}

.contacts-wrapper {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    background: rgba(8, 12, 20, 0.85);

    border: 1px solid rgba(255,255,255,.08);

    border-radius: 32px;

    padding: 60px;

    backdrop-filter: blur(20px);
}

.contacts-subtitle {
    display: inline-block;

    color: var(--primary);

    margin-bottom: 20px;
}

.contacts-title {
    margin: 0 0 25px;

    font-size: 48px;

    line-height: 1.1;
}

.contacts-title span {
    color: var(--primary);
}

.contacts-description {
    color: var(--text-muted);

    line-height: 1.8;
}

.contacts-form input,
.contacts-form textarea {
    width: 100%;

    padding: 18px 20px;

    background: rgba(255,255,255,.03);

    border: 1px solid rgba(255,255,255,.08);

    border-radius: 12px;

    color: #fff;

    font-size: 16px;
}

.contacts-form textarea {
    min-height: 160px;

    resize: vertical;
}

.contacts-form button,
.contacts-form .wpforms-submit {
    background: var(--primary) !important;

    color: #000 !important;

    border: none !important;

    border-radius: 12px !important;

    padding: 18px 36px !important;

    font-weight: 700 !important;

    cursor: pointer;
}

@media (max-width: 992px) {

    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 576px) {

    .advantages-grid {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 768px) {

    .hero-number {
        width: 180px;

        right: -40px;

        top: 45%;

        opacity: 0.12;
    }

}

@media (max-width: 992px) {

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .header-menu {
        display: none;
    }

}

@media (max-width: 768px) {

    .advantages {
        margin-top: 40px;
    }

}

@media (max-width: 768px) {

    .hero {
        padding: 120px 0 80px;
    }

    .hero-title {
        font-size: 64px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

}

@media (max-width: 768px) {

    .header-inner {
        flex-wrap: wrap;
        gap: 20px;
    }

    .header-btn {
        padding: 12px 20px;

        font-size: 14px;
    }

}

@media (max-width: 768px) {

    .advantages {
        margin-top: 40px;
    }

}

@media (max-width: 768px) {

    .hero-number {
        width: 220px;

        right: -40px;

        top: 55%;

        opacity: 0.08;
    }

}

@media (max-width: 768px) {

    .header-inner {
        padding: 16px 0;
    }

    .site-logo a {
        font-size: 18px;
    }

    .header-btn {
        padding: 12px 18px;
        font-size: 14px;
    }

}

@media (max-width: 768px) {

    .hero {
        padding: 60px 0 100px;
    }

}

@media (max-width: 768px) {

    .hero-title {
        font-size: 64px;

        line-height: 0.95;
    }

}

@media (max-width: 768px) {

    .hero {
        min-height: auto;
    }

}
@media (max-width: 768px) {

    .site-header {
        position: fixed;

        top: 0;

        left: 0;

        width: 100%;

        z-index: 999;
    }

    .header-inner {
        flex-direction: column;

        gap: 16px;

        padding: 16px 0;
    }

}
@media (max-width: 768px) {

    .hero {
        padding-top: 180px;
    }

}
@media (max-width: 768px) {

    .hero-title {
        font-size: 48px;

        line-height: 0.95;
    }

}
@media (max-width: 768px) {

    .header-btn {
        padding: 12px 18px;

        font-size: 14px;
    }

}
@media (max-width: 768px) {

    .hero-subtitle {
        display: block;

        margin-bottom: 24px;
    }

}
@media (max-width: 768px) {

    .advantages {
        margin-top: 40px;
    }

    .advantages-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;

        background: transparent;
        border: none;
        backdrop-filter: none;
    }

    .advantage-card {
        padding: 25px 20px;

        background: rgba(8, 12, 20, 0.85);

        backdrop-filter: blur(20px);

        border: 1px solid rgba(255,255,255,.08);

        border-radius: 20px;
    }

    .advantage-card h3 {
        font-size: 24px;

        margin: 15px 0 10px;
    }

    .advantage-card p {
        font-size: 15px;

        line-height: 1.5;
    }

    .advantage-icon img {
        width: 50px;
        height: 50px;
    }

}
@media (max-width: 430px) {

    .advantages-grid {
        grid-template-columns: 1fr;
    }

}
@media (max-width: 768px) {

    .hero-button {
        width: 100%;

        justify-content: center;

        padding: 18px 24px;

        font-size: 18px;
    }

}
@media (max-width: 768px) {

    .hero {
        padding: 180px 0 80px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-title {
        font-size: 64px;

        line-height: .95;
    }

    .hero-button {
        width: 100%;

        justify-content: center;

        padding: 18px 24px;

        font-size: 18px;
    }

}
@media (max-width: 768px) {

    .hero {
        padding: 120px 0 80px;
    }

}

@media (max-width: 768px) {

    .hero-title {
        font-size: 58px;

        line-height: 0.95;
    }

}
@media (max-width: 768px) {

    .hero-description {
        max-width: 100%;

        font-size: 18px;

        line-height: 1.7;
    }

}
@media (max-width: 768px) {

    .advantages {
        margin-top: -40px;
    }

}
@media (max-width: 768px) {

    .hero-button {
        display: flex;

        width: 100%;

        justify-content: center;

        padding: 18px 24px;

        font-size: 18px;
    }

}

@media (max-width: 768px) {

    .contacts-wrapper {
        grid-template-columns: 1fr;

        padding: 40px 25px;

        gap: 40px;
    }

    .contacts-title {
        font-size: 36px;
    }

}
@media (max-width: 768px) {

    .contacts-wrapper {
        grid-template-columns: 1fr;

        padding: 40px 25px;

        gap: 40px;
    }

    .contacts-title {
        font-size: 36px;
    }

}