﻿/* Переменные */
:root {
    --color-primary: #FC9D37;
    --color-secondary: #9F9F9F;
    --color-tertiary: #E5E5E5;
    --color-bg: #fff;
    --color-bg-glass: rgba(255, 255, 255, 0.06);
    --color-border: rgba(255, 255, 255, 0.16);
    --color-text-dark: #404040;
    --color-text-light: #fff;
    --color-text-grey: #9F9F9F;
    --color-text-orange: #FC9D37;
    --color-nav-accent: #FC9D37;
    --color-nav-accent-white: #fff;
    --font-main: 'Roboto', Arial, sans-serif;
    --font-accent: 'Montserrat', Arial, sans-serif;
}

body {
    margin: 0;
    font-family: var(--font-main);
    background: #fff;
    color: var(--color-text-dark);
}

section.hero,
section.trust-info,
section.intro,
section.technic-types,
section.warning,
section.cta,
section.pricing-table,
section.asn-products,
section.install-steps,
section.benefits {
    margin-bottom: 60px;
}

.section-title {
    font-size: 32px;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 24px;
    color: #404040;
    width: auto;

    font-family: Roboto;
    font-weight: 600;
    font-size: 32px;
    line-height: 120%;
    text-align: center;
    text-transform: uppercase;
}

.btn {
    font-family: var(--font-main);
    font-size: 15px;
    font-weight: 400;
    border-radius: 6px;
    padding: 10px 20px;
    border: 1px solid var(--color-text-light);
    cursor: pointer;
    width: 240px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background 0.2s, color 0.2s;
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-text-light);
    width: 240px;
    height: 48px;
}

.btn-primary:hover {
    background: #ffb25a;
}

.btn-secondary {
    background: var(--color-secondary);
    color: var(--color-text-light);
    width: 240px;
    height: 48px;
}

.btn-secondary:hover {
    background: #bdbdbd;
}

.btn-download {
    background: var(--color-tertiary);
    color: var(--color-text-grey);
    border: none;
    width: 320px;
    height: 48px;
    padding: 8px 16px;
    font-size: 14px;
    display: inline-flex;
}

.btn-view {
    background: var(--color-bg);
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
    width: auto;
    height: auto;
    padding: 8px 16px;
    font-size: 14px;
    display: inline-flex;
}

.btn-icon {
    width: 24px;
    height: 24px;
}

/* Hero */
.hero {
    background: linear-gradient(144.29deg, rgba(255, 255, 255, 0.5) 30.88%, rgba(0, 0, 0, 0.5) 63.54%), url('/images/hero-bg.webp') center/cover no-repeat;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 40px 0 0 0;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
    padding-bottom: 70px;
}

.hero-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 50px;
    font-size: 14px;
    font-weight: 500;
    width: 100%;
    max-width: 1276px;
    padding-left: 16px;
    box-sizing: border-box;

    font-family: Roboto;
    font-weight: 500;
    font-size: 15px;
    flex-wrap: wrap;

}

.breadcrumbs-item {
    color: var(--color-text-dark);
    opacity: 0.8;
}

.breadcrumbs-item--active {
    font-weight: 700;
    opacity: 1;
}

.breadcrumb-separator img {
    width: 10px;
    height: 10px;
    vertical-align: middle;
}

.hero-content-block {
    max-width: 1276px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    box-sizing: border-box;
    padding-left: 16px;
    padding-right: 16px;
}

.hero-title {
    font-size: 42px;
    font-weight: 900;
    text-transform: uppercase;
    color: #ffffff !important;
    background: var(--color-bg-glass);
    border: 1px solid var(--color-border);
    border-radius: 6px;
    padding: 10px 0;
    max-width: 860px;
    text-align: center;
    margin: 0;
    backdrop-filter: blur(16.2px);

    font-family: Roboto;
    line-height: 120%;

}

.hero-subtext {
    font-size: 18px;
    font-weight: 500;
    font-variant: small-caps;
    color: #ffffff;
    background: var(--color-bg-glass);
    border: 1px solid var(--color-border);
    border-radius: 6px;
    padding: 10px 10px;
    max-width: 860px;
    text-align: center;
    margin: 0;
    backdrop-filter: blur(16.2px);

    font-family: Roboto;
    line-height: 120%;
    text-transform: uppercase;

}

.hero-buttons {
    display: flex;
    gap: 60px;
    justify-content: center;
    align-items: center;
}
.hero-buttons .btn.btn-primary {
    border: 1px solid var(--Main-white, #FFFFFF) !important;
    background: #FC9D37 !important;
    font-family: Roboto;
    font-weight: 400;
    font-size: 13px;
    line-height: 120%;
    text-align: center;
    font-variant: small-caps;
    text-transform: uppercase;
    color: white !important;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 260px;
    white-space: unset;
}
.hero-buttons .btn.btn-primary:hover,
.hero-buttons .btn.btn-primary:focus,
.hero-buttons .btn.btn-primary:active {
    box-shadow: unset !important;
    background: #ff9012 !important;
}
.hero-buttons .btn.btn-secondary {
    border: 1px solid var(--Main-white, #FFFFFF) !important;
    background: #9F9F9F !important;
    font-family: Roboto;
    font-weight: 400;
    font-size: 13px;
    line-height: 120%;
    text-align: center;
    font-variant: small-caps;
    text-transform: uppercase;
    color: white !important;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 260px;
    white-space: unset;
}
.hero-buttons .btn.btn-secondary:hover,
.hero-buttons .btn.btn-secondary:focus,
.hero-buttons .btn.btn-secondary:active {
    box-shadow: unset !important;
    background: #ff9012 !important;
}

.hero-nav {
    display: flex;
    gap: 20px;
    width: 100%;
    max-width: 1276px;
    margin-top: 30px;
    box-sizing: border-box;
    overflow-x: auto;
    justify-content: center;
}

a.hero-nav-item {
    display: block;
    padding: 10px 16px;
    border-left: 6px solid var(--color-nav-accent);
    color: var(--color-text-light) !important;
    border-radius: 10px 10px 10px 10px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: background 0.2s, color 0.2s;

    font-family: Roboto;
    line-height: 120%;
    text-align: center;
    font-variant: small-caps;
    text-transform: uppercase;

}

a.hero-nav-item:hover {
    color: #000000 !important;
    border-left: 6px solid var(--color-nav-accent-white);
    background: rgba(255, 255, 255, 0.4);
}

/* Trust-Info */
.trust-info {
    background: var(--color-bg);
    border-radius: 6px;
    box-shadow: 0px 4px 18px 0px rgba(0, 0, 0, 0.1);
    padding: 0px 20px;
    max-width: 1236px;
    margin: 0 auto 60px auto;

    font-family: Roboto;
    font-weight: 500;
    font-size: 18px;
    line-height: 120%;
    text-align: center;

}
.trust-info-inner {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.trust-info-img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.trust-info-text {
    font-size: 18px;
    font-weight: 500;
    color: var(--color-text-dark);
}

/* Intro */
.intro {
    max-width: 1276px;
    margin: 0 auto 60px auto;
    background: var(--color-bg);
    border-radius: 6px;
    padding: 40px 20px;
    box-sizing: border-box;
}

.intro-label {
    text-transform: uppercase;
    margin-bottom: 20px;
    font-family: Roboto;
    font-weight: 500;
    font-size: 14px;
    line-height: 120%;
    
    font-variant: small-caps;

}

.intro-content {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    align-items: flex-start;
}

.intro-paragraph {
    flex: 1 1 30%;
    font-size: 15px;
    color: var(--color-text-dark);
    margin-bottom: 10px;
    font-family: Roboto;
    font-weight: 400;
    line-height: 120%;
    
}

.intro-paragraph--right {
    border-left: 6px solid var(--color-nav-accent);
    background: var(--color-bg);
    color: var(--color-text-dark);
    border-radius: 10px 10px 10px 10px;
    /* border: 1px solid var(--color-primary);*/
    border-radius: 10px;
    padding: 10px 20px;
    /*background: #fff7ed;*/
    display: flex;
    flex-direction: column;
    gap: 10px;

    font-family: Roboto;
    font-weight: 500;
    font-size: 12px;
    line-height: 140%;
    
}

.intro .btn.btn-download {
    border: 1px dotted #E5E5E5 !important;
    background: #fff !important;
    font-family: Roboto;
    font-weight: 400;
    font-size: 13px;
    line-height: 120%;
    text-align: center;
    font-variant: small-caps;
    text-transform: uppercase;
    color:grey !important;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    white-space: unset;
}
.intro .btn.btn-download:hover,
.intro .btn.btn-download:focus,
.intro .btn.btn-download:active {
    box-shadow: unset !important;
    color:white !important;
    background: #ff9012 !important;
}

/* Technic-Types */
.technic-types {
    max-width: 1276px;
    margin: 0 auto 60px auto;
}
.technic-types .section-title {
    max-width: 900px;
    margin: 0 auto;
}

.technic-types-subtitle {
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    font-size: 18px;
    color: var(--color-text-dark);
    margin-bottom: 40px;

    font-family: Roboto;
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 70px;
}

.technic-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    align-items: stretch;
    width: 100%;
    max-width: 1276px;
    margin: 0 auto;
    padding: 0 20px;
}

.technic-card {
    background: var(--color-bg);
    border-radius: 6px;
    padding: 32px 24px 24px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: calc(100% / 3 - 40px*2/3 );
    min-height: 420px;
    box-sizing: border-box;
    transition: box-shadow 0.2s;
    gap: 10px;
    border: 1px dotted #E5E5E5;
}

.technic-card img {
    width: 240px;
    height: 240px;
    object-fit: contain;
    margin-bottom: 24px;
}

.technic-card-title {
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    font-family: Roboto;
    font-weight: 500;
    font-size: 18px;
    line-height: 120%;
    text-align: center;

}

.technic-card-desc {
    font-size: 15px;
    color: var(--color-text-dark);
    text-align: center;
    font-family: Roboto;
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    text-align: center;

}
.technic-card-hr {
    width: 120px;
    margin: 0 auto;
    height: 2px;
    background: #FC9D37;
    margin-bottom: 10px;
}

.technic-card .btn-view {
    margin-top: auto;
    width: 100%;
    justify-content: center;
    display: flex;
    align-items: center;
    gap: 8px;
    border: none;
    background: var(--color-bg);
    color: var(--color-primary);
    box-shadow: none;
    padding: 12px 0;
    font-weight: 500;

    font-family: Roboto;
    font-weight: 500;
    font-size: 14px;
    line-height: 120%;

}
.technic-card .btn-view:hover,
.technic-card .btn-view:focus,
.technic-card .btn-view:active {
    box-shadow: unset !important;
    color:var(--color-primary) !important;
    background: var(--color-bg) !important;
}

.technic-card .btn-view img {
    margin: 0;
    width: 22px;
    height: 22px;
    display: block;
}

/* Warning */
.warning {
    max-width: 1276px;
    margin: 0 auto 60px auto;
    padding: 0 20px;
}

.warning-label {
    color: #FC3A37;
    margin-bottom: 12px;

    font-family: Roboto;
    font-weight: 600;
    font-size: 16px;
    line-height: 140%;
}

.warning-text {
    color: #222;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
    font-family: Roboto;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
}

.warning-text br {
    display: block;
    margin-top: 16px;
    content: "";
}

/* CTA */
.cta {
    background: linear-gradient(90deg, #fff 38%, #ffeed5 51%, #fff 76%);
    border-radius: 6px;
    max-width: 1920px;
    margin: 0 auto 60px auto;
    padding: 56px 0;
    box-sizing: border-box;
}

.cta-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    max-width: 1276px;
    margin: 0 auto;
    gap: 100px;
    padding:0 20px;
}

.cta-left {
    flex: 1 1 60%;
    min-width: 0;
}

.cta-title {
    margin-bottom: 24px;
    font-family: Roboto;
    font-weight: 600;
    font-size: 20px;
    line-height: 120%;
    text-transform: uppercase;

}

.cta-desc {
    color: #222;
    margin-bottom: 0;
    text-align: left;
    font-family: Roboto;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;

}

.cta-list {
    margin: 16px 0 16px 0;
    padding-left: 20px;
}

.cta-list li {
    font-size: 16px;
    color: #222;
    margin-bottom: 4px;
    list-style: disc;
}

.cta-right {
    flex: 0 0 340px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    min-width: 250px;
    margin-top: auto;
    margin-bottom: auto;
}

.cta-action-title {
    color: #222;
    text-align: center;
    margin-bottom: 0;
    font-family: Roboto;
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    text-align: center;

}

.btn.btn-primary {
    background: #FC9D37;
    color: #fff;
    border: none;
    border-radius: 6px;
    width: 100%;
    height: 48px;
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 0 0;
    box-shadow: none;
}

.btn.btn-primary:hover {
    background: #ffb25a;
}


.cta .btn.btn-primary {
    border: 1px solid var(--Main-white, #FFFFFF) !important;
    background: #FC9D37 !important;
    font-family: Roboto;
    font-weight: 400;
    font-size: 13px;
    line-height: 120%;
    text-align: center;
    font-variant: small-caps;
    text-transform: uppercase;
    color: white !important;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 260px;
    white-space: unset;
    margin: 0 auto;
}
.cta .btn.btn-primary:hover,
.cta .btn.btn-primary:focus,
.cta .btn.btn-primary:active {
    box-shadow: unset !important;
    background: #ff9012 !important;
}

.cta-action-subtext {
    font-size: 15px;
    color: #222;
    text-align: center;
    font-family: Roboto;
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    text-align: center;
}

.cta-phone {
    font-size: 28px;
    font-weight: 700;
    color: #222;
    text-align: center;
    margin-top: 0;
}
.cta-phone a {
    color: #404040 !important;
    font-family: Roboto;
    font-weight: 500;
    font-size: 28px;
    line-height: 120%;
    text-align: center;
}

/* Pricing Table */
.pricing-table {
    max-width: 1276px;
    margin: 0 auto 60px auto;
}

.pricing-table .section-title {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-table-subtitle {
    font-family: Roboto;
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    
    text-align: center;

    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-table-table {
    width: 95%;
    margin: 0 auto;
    border-collapse: separate;
    border-spacing: 0;
    background: none;
    border-radius: 10px;
    box-shadow: 0 6px 32px 0 rgba(0, 0, 0, 0.08);
    overflow: hidden;
    font-size: 17px;
}

.pricing-table-table th {
    background: #FC9D37;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    padding: 18px 0;
    text-align: center;
    border: none;
}

.pricing-table-table td {
    color: #404040;
    font-size: 14px;
    padding: 16px 0;
    text-align: center;
    border: none;
}

.pricing-table-table tr:nth-child(even) td {
    background: #f5f5f5;
}

.pricing-table-table tr:nth-child(odd) td {
    background: #fff;
}

.pricing-table-table tr:first-child th:first-child {
    border-radius: 10px 0 0 0;
}

.pricing-table-table tr:first-child th:last-child {
    border-radius: 0 10px 0 0;
}

.pricing-table-table tr:last-child td:first-child {
    border-radius: 0 0 0 10px;
}

.pricing-table-table tr:last-child td:last-child {
    border-radius: 0 0 10px 0;
}

.pricing-table-table th:nth-child(2),
.pricing-table-table td:nth-child(2) {
    text-align: center;
}

.pricing-table-table th:nth-child(1),
.pricing-table-table td:nth-child(1) {
    text-align: left;
    padding-left: 24px;
}

/* ASN-Products */
.asn-products {
    max-width: 1276px;
    margin: 0 auto 60px auto;
}

.asn-products-subtitle {
    color: #404040;
    font-family: Roboto;
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    text-align: center;
    margin: 0 auto;
    max-width: 820px;
    margin-bottom: 30px;
}

.asn-products-slider {
    max-width: 1276px;
    margin: 0 auto;
    align-items: stretch;
    position: relative;
}

.asn-products-slider .slider-arrow {
    background: #fff;
    border: 1.5px solid #FC9D37;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px 0 rgba(252, 157, 55, 0.08);
    transition: background 0.2s;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    left: auto;
    right: auto;
}

.asn-products-slider .slider-arrow--left {
    left: 8px;
}

.asn-products-slider .slider-arrow--right {
    right: 8px;
}

.asn-products-slider .slider-arrow img {
    width: 24px;
    height: 24px;
}
.asn-product-card-wrap {
    padding: 10px;
}
.asn-product-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border: 1px dotted #E5E5E5;
    border-radius: 6px;
    padding: 20px;
    position: relative;
    gap: 0;
}

.asn-product-title {
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 8px;
    font-family: Roboto;
    font-weight: 500;
    font-size: 16px;
    line-height: 120%;
    text-align: center;
}

.asn-product-img {
    width: 200px;
    height: 200px;
    object-fit: contain;
    margin-bottom: 8px;
}

.asn-product-separator {
    width: 120px;
    height: 2px;
    background: #FC9D37;
    border-radius: 1px;
    margin: 8px auto;
    margin-bottom: 14px;
}

.asn-product-desc {
    font-size: 14px;
    color: #404040;
    text-align: center;
    margin-bottom: 15px;
    font-family: Roboto;
    font-weight: 400;
    font-size: 14px;
    line-height: 120%;
    text-align: center;

}

.asn-product-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    align-items: stretch;
    margin: 0 auto;
    max-width: 230px;
}

.asn-product-buttons .btn {
    width: 100%;
    min-width: 0;
}

.asn-product-buttons .btn.btn-primary {
    border: 0 !important;
    background: #FC9D37 !important;
    font-family: Roboto;
    font-weight: 400;
    font-size: 13px;
    line-height: 120%;
    text-align: center;
    font-variant: small-caps;
    text-transform: uppercase;
    color: white !important;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 260px;
    white-space: unset;
    height: 42px;
}
.asn-product-buttons .btn.btn-primary:hover,
.asn-product-buttons .btn.btn-primary:focus,
.asn-product-buttons .btn.btn-primary:active {
    box-shadow: unset !important;
    background: #ff9012 !important;
}
.asn-product-buttons .btn.btn-secondary {
    border: 0 !important;
    background: #9F9F9F !important;
    font-family: Roboto;
    font-weight: 400;
    font-size: 13px;
    line-height: 120%;
    text-align: center;
    font-variant: small-caps;
    text-transform: uppercase;
    color: white !important;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 260px;
    white-space: unset;
    height: 42px;
}
.asn-product-buttons .btn.btn-secondary:hover,
.asn-product-buttons .btn.btn-secondary:focus,
.asn-product-buttons .btn.btn-secondary:active {
    box-shadow: unset !important;
    background: #ff9012 !important;
}

/* Install-Steps */
.install-steps {
    max-width: 1276px;
    margin: 0 auto 60px auto;
    padding: 0 16px;
}

.install-steps-title {
    margin-top: 60px;
    color: #404040;
    letter-spacing: 0.01em;
    font-family: Roboto;
    font-weight: 600;
    font-size: 32px;
    line-height: 120%;
    
    text-align: center;
    text-transform: uppercase;

}

.install-steps-subtitle {
    text-align: center;
    margin-bottom: 48px;
    font-weight: 400;
    line-height: 1.4;
    font-family: Roboto;
    font-size: 16px;
    line-height: 120%;
    text-align: center;

}

.install-steps-list {
    display: flex;
    gap: 0;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
    padding: 48px 0 0 0;
}

.install-step {
    flex: 1 1 0;
    max-width: 320px;
    min-width: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 24px 48px 24px;
    box-sizing: border-box;
    text-align: center;
}

.install-step:last-child {
    border-right: none;
}

.install-step-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 24px;
}

.install-step-title {
    color: #FC9D37;
    margin-bottom: 12px;
    border-top: 1px solid #E5E5E5;
    width: 100%;
    padding-top: 10px;
    font-family: Roboto;
    font-weight: 500;
    font-size: 16px;
    line-height: 120%;
    text-align: center;
}

.install-step-desc {
    font-weight: 400;
    line-height: 1.5;
    font-family: Roboto;
    font-size: 14px;
    line-height: 120%;
    text-align: center;
}

@media (max-width: 1200px) {
    .install-steps-list {
        flex-wrap: wrap;
        gap: 24px 0;
    }

    .install-step {
        min-width: 50%;
        max-width: 50%;
        border-right: none;
        border-bottom: 1px solid #E5E5E5;
        padding-bottom: 32px;
    }

    .install-step:nth-child(2n) {
        border-right: none;
    }

    .install-step:last-child,
    .install-step:nth-last-child(2) {
        border-bottom: none;
    }
}

@media (max-width: 700px) {
    .hero-title {
        font-size: 32px;
    }
    .hero-subtext {
        font-size: 14px;
    }
    .hero-buttons {
        gap: 20px;
        justify-content: space-between;
        flex-direction: column;
    }
    .hero-buttons .btn.btn-primary {
        width: 100%;
        max-width: 600px;
        font-size: 11px;
    }
    .hero-buttons .btn.btn-secondary {
        width: 100%;
        max-width: 600px;
        font-size: 11px;
    }
    .hero-nav-item {
        min-width: 250px;
    }
    .hero-nav {
        display: none;
        justify-content: flex-start;
        padding-bottom: 10px;
    }

    .hero-breadcrumbs {
        display: none;
    }

    .trust-info {
        margin-bottom: 30px;
    }
    .trust-info-text {
        font-size: 14px;
        padding: 20px 0;
    }
    .section-title {
        font-size: 20px;
    }
    .technic-cards {
        gap: 10px;
        padding: 0;
    }

    .technic-types-subtitle {
        margin-bottom: 30px;
    }

    .intro-content {
        gap: 0;
    }
    .intro-paragraph {
        flex: auto;
    }

    .technic-card {
        width: 100%;
    }
    .cta {
        background:  linear-gradient(90deg, #fff 3%, #ffeed5 57%, #fff 93%);
    }
    .cta-right {
        flex: auto;
    }

    .install-steps-list {
        flex-direction: column;
        gap: 0;
        border: none;
        padding: 0;
    }

    .install-step {
        min-width: 100%;
        max-width: 100%;
        border: none;
        padding: 32px 0;
    }
}

/* Lead-Form */
.lead-form {
    max-width: 1600px;
    margin: 0 auto 60px auto;
    padding: 0 16px;
}

.lead-form-header {
    text-align: center;
    margin-bottom: 40px;
}

.lead-form-main-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
}

.lead-form-main-subtitle {
    font-size: 20px;
    color: #404040;
    font-weight: 400;
    margin-bottom: 0;
}

.lead-form-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 32px 0 rgba(0, 0, 0, 0.10);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
    min-height: 480px;
    max-width: 1600px;
    margin: 0 auto;
    overflow: hidden;
}

.lead-form-img {
    flex: 0 0 480px;
    height: 480px;
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    padding: 0;
    background: #fff;
}

.lead-form-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    background: #fff;
    display: block;
}

.lead-form-content {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 56px;
    height: 100%;
    min-width: 0;
}

.lead-form-title {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.lead-form-subtitle {
    font-size: 18px;
    color: #404040;
    text-align: center;
    margin-bottom: 32px;
}

.lead-form-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
}

.lead-form-fields-row {
    display: flex;
    flex-direction: row;
    gap: 18px;
    width: 100%;
}

.lead-form-form input[type="text"],
.lead-form-phone-group {
    flex: 1 1 0;
    min-width: 0;
}

.lead-form-form input[type="text"] {
    padding: 18px 24px;
    border: 1px solid #E5E5E5;
    border-radius: 6px;
    font-size: 18px;
    font-family: var(--font-main);
    width: 100%;
    height: 56px;
}

.lead-form-phone-group {
    display: flex;
    align-items: center;
    border: 1px solid #E5E5E5;
    border-radius: 6px;
    background: #fff;
    padding: 0 0 0 16px;
    height: 56px;
    margin-bottom: 0;
}

.lead-form-flag {
    margin-right: 8px;
    display: flex;
    align-items: center;
}

.lead-form-phone-group input[type="tel"] {
    border: none;
    outline: none;
    font-size: 18px;
    font-family: var(--font-main);
    background: transparent;
    width: 100%;
    padding: 18px 24px 18px 0;
    height: 56px;
}

.lead-form-form button[type="submit"] {
    width: 320px;
    height: 56px;
    font-size: 20px;
    font-weight: 700;
    background: #FC9D37;
    color: #fff;
    border: none;
    border-radius: 8px;
    margin-top: 0;
    box-shadow: 0 2px 8px 0 rgba(252, 157, 55, 0.08);
    transition: background 0.2s;
    align-self: flex-end;
}

.lead-form-form button[type="submit"]:hover {
    background: #ffb25a;
}

.lead-form-consent {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: #404040;
    margin-top: 8px;
    justify-content: flex-start;
}

.lead-form-consent a {
    color: #FC9D37;
    text-decoration: underline;
}

@media (max-width: 1200px) {
    .lead-form-card {
        flex-direction: column;
        min-height: 0;
        max-width: 100vw;
    }

    .lead-form-img {
        width: 100%;
        height: 240px;
        flex: none;
    }

    .lead-form-img img {
        height: 240px;
    }

    .lead-form-content {
        padding: 32px 16px;
        height: auto;
    }

    .lead-form-form button[type="submit"] {
        width: 100%;
        align-self: stretch;
    }

    .lead-form-fields-row {
        flex-direction: column;
        gap: 12px;
    }
}

/* Benefits */
.benefits {
    width: 100%;
    background: linear-gradient(90deg, #fff 38%, #ffeed5 51%, #fff 76%);
    padding: 0;
    margin: 0 auto 60px auto;
    margin-top: 60px;
}

.benefits-inner {
    display: flex;
    max-width: 1276px;
    margin: 0 auto;
    padding: 56px 32px;
    align-items: flex-start;
    position: relative;
    background: none;
}

.benefits-left {
    flex: 0 0 38%;
    max-width: 38%;
    padding-right: 40px;
}

.benefits-title {
    margin-bottom: 24px;
    color: #222;
    font-family: Roboto;
    font-weight: 600;
    font-size: 20px;
    line-height: 120%;
    text-transform: uppercase;
}

.benefits-desc {
    color: #404040;
    font-family: Roboto;
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: 0%;
;
}

.benefits-divider {
    width: 2px;
    background: #9F9F9F;
    height: auto;
    min-height: 420px;
    align-self: stretch;
    margin: 0 56px;
}

.benefits-right {
    flex: 1 1 0;
    max-width: 62%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px 56px;
    width: 100%;
}

.benefit-item {
    display: flex;
    flex-direction: row;
    gap: 24px;
}

.benefit-icon {
    width: 56px;
    height: 56px;
    flex: none;
    border-radius: 100px;
    box-shadow: 0 2px 8px 0 rgba(252, 157, 55, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    border: 1px solid var(--Main-black, #404040)
}

.benefit-icon img {
    width: 24px;
    height: 24px;
}

.benefit-item-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.benefit-item-title {
    color: #222;
    margin-bottom: 8px;
    font-family: Montserrat;
    font-weight: 500;
    font-size: 16px;
    line-height: 120%;

}

.benefit-item-desc {
    font-size: 14px;
    color: #404040;
    font-family: Montserrat;
    font-weight: 400;
    font-size: 14px;
    line-height: 120%;
}

@media (max-width: 1100px) {
    .benefits-inner {
        flex-direction: column;
        padding: 32px 8px;
    }

    .benefits-left,
    .benefits-right {
        max-width: 100%;
        padding: 0;
    }

    .benefits-divider {
        display: none;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .benefit-item {
        align-items: flex-start;
        gap: 18px;
    }
}

/* Licenses */
.licenses {
    max-width: 1276px;
    margin: 0 auto 60px auto;
    padding: 48px 32px 40px 32px;
    position: relative;
}

.licenses-subtitle {
    font-size: 16px;
    color: #404040;
    text-align: center;
    margin-bottom: 32px;
    font-weight: 400;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.licenses-slider {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    min-height: 370px;
    gap: 0;
}

.licenses-slides {
    display: flex;
    flex-direction: row;
    gap: 24px;
    overflow: hidden;
    width: 100%;
    scroll-behavior: smooth;
}

.license-slide {
    min-width: 270px;
    max-width: 270px;
    height: 370px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.2s;
}

.license-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.licenses-slider .slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    background: #fff;
    border: 1.5px solid #FC9D37;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px 0 rgba(252, 157, 55, 0.08);
    transition: background 0.2s;
}

.licenses-slider .slider-arrow--left {
    left: -24px;
}

.licenses-slider .slider-arrow--right {
    right: -24px;
}

.licenses-slider .slider-arrow img {
    width: 24px;
    height: 24px;
}

@media (max-width: 900px) {
    .licenses {
        padding: 24px 4px 24px 4px;
    }

    .licenses-slides {
        gap: 12px;
    }

    .license-slide {
        min-width: 180px;
        max-width: 180px;
        height: 220px;
    }
}

/* Penalties */
.penalties {
    max-width: 1276px;
    margin: 0 auto 60px auto;
}

.penalties-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--color-bg);
    border-radius: 6px;
    overflow: hidden;
}

.penalties-table th,
.penalties-table td {
    border: 1px solid #E5E5E5;
    padding: 12px 16px;
    text-align: center;
}

.penalties-table th {
    background: var(--color-primary);
    color: var(--color-text-light);
    font-weight: 600;
}

/* FAQ */
.faq {
    max-width: 1276px;
    width: 100%;
    margin: 0 auto 60px auto;
    padding: 48px 32px 40px 32px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.faq-item {
    padding: 0 0 0 0;
    transition: box-shadow 0.2s;
    position: relative;
}

.faq-item:not(:last-child)::after {
    content: '';
    display: block;
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 0;
    height: 1px;
    background: #E5E5E5;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 18px;
    font-weight: 700;
    color: #222;
    cursor: pointer;
    padding: 24px 32px 24px 24px;
    border-radius: 8px;
    transition: background 0.2s;
    user-select: none;
}

.faq-chevron img {
    width: 28px;
    height: 28px;
    transition: transform 0.3s;
    display: block;
}

.faq-item.open .faq-chevron img {
    transform: rotate(180deg);
    content: url('icons/chevron-up-icon.svg');
}

.faq-item:not(.open) .faq-chevron img {
    content: url('icons/chevron-down-icon.svg');
}

.faq-answer {
    font-size: 16px;
    color: #404040;
    padding: 0 32px 24px 56px;
    display: none;
    animation: fadeIn 0.3s;
}

.faq-item.open .faq-answer {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@media (max-width: 700px) {
    .faq {
        padding: 24px 4px 24px 4px;
    }

    .faq-question {
        font-size: 16px;
        padding: 16px 16px 16px 12px;
    }

    .faq-answer {
        font-size: 15px;
        padding: 0 12px 16px 32px;
    }

    .benefits {
        background:  linear-gradient(90deg, #fff 3%, #ffeed5 57%, #fff 93%);
    }
    .benefits-left {
        margin-bottom: 30px;
    }
}

@media (max-width: 1400px) {
    .asn-products {
        max-width: 100vw;
        padding: 0 16px;
    }

    .asn-products-slider {
        gap: 12px;
    }

    .asn-product-card {
        padding: 14px;
    }

    .asn-product-img {
        width: 140px;
        height: 140px;
    }

    .cta,
    .trust-info,
    .intro,
    .technic-types,
    .warning,
    .pricing-table,
    .asn-products,
    .install-steps,
    .lead-form,
    .benefits,
    .licenses,
    .penalties,
    .faq {
        max-width: 100vw;
        padding-left: 16px;
        padding-right: 16px;
    }
}

@media (max-width: 900px) {
    .asn-products-slider {
        gap: 8px;
        min-height: 260px;
    }

    .asn-product-card {
        padding: 8px;
    }

    .asn-product-img {
        width: 90px;
        height: 90px;
    }

    .lead-form {
        flex-direction: column;
        align-items: stretch;
    }

    .lead-form-img img {
        width: 100%;
        height: 240px;
    }

    .cta-content {
        flex-direction: column;
        align-items: stretch;
        gap: 32px;
    }

    .cta-right {
        align-items: stretch;
        min-width: 0;
    }

    .cta {
        padding: 32px 0;
    }

    .section-title {
        font-size: 28px;
    }

    .pricing-table-table {
        font-size: 15px;
    }

    .pricing-table-subtitle {
        font-size: 15px;
    }
}

@media (max-width: 1200px) {
    .cta-content {
        padding-left: 32px;
        padding-right: 32px;
    }
}

.btn-view img {
    width: 24px;
    height: 24px;
    margin-right: 8px;
    vertical-align: middle;
}

.asn-products .slick-initialized .slick-slide,
.cert-list-wrap .slick-initialized .slick-slide {
    height: max-content;
}
.cert-list-wrap .slick-slide img {
    display: block;
    height: 395px;
}
.service-price-block {
    max-width: 100%;
    overflow-x: auto;
}

.forest_popup_wrap {
    display: flex;
    background: rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: all 0.4s;
    box-sizing: border-box;
    font-family: Roboto;
}
.forest_popup_wrap.forest_popup_wrap_show {
    visibility: visible;
    opacity: 1;
}
.forest_popup {
    width: 741px;
    background: #FFFFFF;
    box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.4);
    border-radius: 19px;
    position: relative;
}
.forest_popup .offer {
    position: absolute;
    top: -41px;
    right: 380px;
    z-index: 0;
}
.forest_popup .xclose {
    position: absolute;
    cursor: pointer;
    top: -22px;
    right: -22px;
    z-index: 0;
}
.forest_popup .content {
    margin-top: 58px;
    margin-left: 307px;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    max-width: 391px;
}
.forest_popup .content .title {
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 100%;
    color: #404040;
    margin-bottom: 14px;
    text-align: center;
}
.forest_popup .content .subtitle {
    font-style: normal;
    font-weight: 300;
    font-size: 14px;
    line-height: 100%;
    color: #404040;
    margin-bottom: 42px;
    text-align: center;
}
.screen-reader-response {
    display: none;
}
.forest_popup .input-item {
    text-align: center;
}
.forest_popup .content input[type="text"] {
    border: none;
    outline: none;
    border-bottom: 1px solid rgba(64, 64, 64, 0.4);
    margin-bottom: 34px;
    padding-bottom: 7.5px;
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 88.9%;
    color: #000000;
    width: 100%;
    font-family: Roboto;
}
.forest_popup .btn-item {
    text-align: center;
}
.forest_popup .content input[type="submit"] {
    background: #FFCC10;
    border-radius: 6px;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    text-align: center;
    text-transform: uppercase;
    color: #404040;
    padding: 17px 60px;
    margin-top: 12px;
    border: 0;
    font-family: Roboto;
}
.forest_popup label span {
    font-weight: 400 !important;
    font-size: 12px;
}
.forest_popup strong {
    font-weight: 400 !important;
}
.technic-popup-content-wrap {
    display: none;
}
.technic-popup-content {
    
}
.technic-popup-content-title {
    font-family: Roboto;
    font-weight: 500;
    font-size: 16px;
    line-height: 120%;
    margin-bottom: 15px;
}
.technic-popup-content-text {
    font-family: Roboto;
    font-weight: 400;
    font-style: Regular;
    font-size: 15px;
    line-height: 120%;
}
.technic-popup-content-text p {
    margin: 5px 0;
}
.technic-popup-content-text ul {
    padding: 0 17px;
    margin: 0;
    margin-bottom: 5px;
}
.technic-popup-content-text li {

}
.forest_technic_info_popup_content-wrap {
    
}
.forest_technic_info_popup_content {
    background: white;
    border-radius: 6px;
    border: 1px solid #E5E5E5;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    box-shadow: 1px 1px 20px 0px #0000001A;
    padding: 20px;
}
.forest_technic_info_popup_content-close {
    display: flex;
    justify-content: flex-end;
    padding-right: 10px;
    position: relative;
    top: 9px;
    height: 0;
}
.forest_technic_info_popup_content-close svg {
    cursor: pointer;
}

.forest .wpcf7-form-control-wrap {
    width: 33.33% !important;
}
.forest .wpcf7-form-control-wrap .services-form-input {
    width: 100% !important;
}
.forest_form .wpcf7-spinner,
.forest .wpcf7-spinner {
    display: none !important;
}
.forest_form .wpcf7 form.init .wpcf7-response-output,
.forest .wpcf7 form.init .wpcf7-response-output {
    display: block;
    border: 0;
    margin: 0;
}
.forest_form .wpcf7 form.sent .wpcf7-response-output,
.forest .wpcf7 form.sent .wpcf7-response-output {
    border-color: #46b450;
    background: white;
    max-width: 500px;
    margin: 0 auto;
    border-radius: 6px;
    text-align: center;
    margin-top: 20px;
}

#cookie-banner {
    z-index: 999999;
}

#elementor-popup-modal-1838 .dialog-widget-content {
    border-radius: 16px;
}
#elementor-popup-modal-1838 .dialog-message {
    max-width: 447px;
}
#elementor-popup-modal-1838 section.elementor-section.elementor-top-section {
    margin-bottom: 0;
}
#elementor-popup-modal-1838 section.elementor-section.elementor-top-section .elementor-element.elementor-element-7094a01 .elementor-text-editor {
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 100%;
    color: #404040;
    margin-bottom: 14px;
    text-align: center;
    font-family: Roboto;
}
#elementor-popup-modal-1838 section.elementor-section.elementor-top-section .aep-cf7 .wpcf7 input[type="text"],
#elementor-popup-modal-1838 section.elementor-section.elementor-top-section .aep-cf7 .wpcf7 input[type="tel"] {
    border: none;
    outline: none;
    border-bottom: 1px solid rgba(64, 64, 64, 0.4);
    margin-bottom: 14px;
    padding-bottom: 7.5px;
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 88.9%;
    color: #000000;
    width: 100%;
    font-family: Roboto;
}
#elementor-popup-modal-1838 section.elementor-section.elementor-top-section .aep-cf7 .wpcf7 input[type="submit"] {
    background: #FFCC10;
    border-radius: 6px;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    text-align: center;
    text-transform: uppercase;
    color: #404040;
    padding: 17px 60px;
    margin-top: 12px;
    border: 0;
    font-family: Roboto;
}
@media (max-width: 700px) {
    .forest_popup_wrap.forest_popup_wrap_show:not(.forest_form) {
        z-index: 999999;
        display: block;
        overflow: auto;
    }
    
    .forest .wpcf7-form-control-wrap {
        width: 100% !important;
    }
    
    .hero {
        padding-top: 100px;
    }
    
}
@media (max-width: 1050px) {
    .forest_popup {
        width: unset;
    }
    .forest_popup .offer {
        display: none;
    }
    .forest_popup .content {
        margin: 0 auto;
        padding: 20px 40px;
    }
}
@media (max-width: 600px) {
    .forest_popup {
        max-width: 90%;
        height: auto;
    }
    .forest_popup .xclose {
        right: 5px;
        top: -30px;
    }
    .forest_popup .content {
        padding: 22px;
    }
    .forest_popup .content input[type="text"] {
        width: 100%;
        padding: 0;
        padding-bottom: 8px;
    }
    .forest_popup .content input[type="submit"] {
        padding: 17px 20px;
        margin: 0 auto;
        margin-top: 12px;
        display: block;
        box-sizing: border-box;
    }
    .forest_popup_wrap.forest_popup_wrap_show
}