/* ===== VARIABLES ===== */
:root {
    --orange: #ed6c05;
    --green: #009453;
    --dark: #3c3c3b;
    --gray: #6d6d6d;
    --light-gray: #e0e0e0;
    --white: #ffffff;
    --max-w: 1200px;
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
    display: flex;
    align-items: center;
    flex-direction: column;
}
.hero .container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.hero h1 {
    font-size: 52px;
    font-weight: 500;
    margin-bottom: 20px;
}
.hero-text {
    line-height: 1.6;
}
.accent {
    color: rgb(255, 133, 98);
}
.hero-contact {
    margin-bottom: 30px;
}
.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.hero-media {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.hero-bg {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.hero-bg {
    top: 100px;
    width: 100%;
    max-width: 1680px;
    height: 100%;
    z-index: 1;
}

.hero-bg {
    will-change: transform;
    transform: scale(1.1);
}

.hero-content{
    display: flex;
    justify-content: space-evenly;
    padding: 90px;
    align-items: center;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
    height: 55px;
    font-weight: 700;
    border: 2px solid transparent;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    border-bottom: none;
    text-decoration: none;
}
.btn:hover {
    border-bottom: none;
}
.btn-orange {
    background: var(--orange);
    color: var(--white);
}
.btn-orange:hover {
    color: var(--white);
    opacity: 0.85;
}
.btn-green {
    background: var(--green);
    color: var(--white);
}
.btn-green:hover {
    background: var(--green);
    opacity: 0.85;
    color: var(--white);
}

/* ==========================================================================
   SUPPORT BANNER
   ========================================================================== */
.support-banner {
    background: var(--white);
    padding: 40px 0;
}
.support-banner .container {
    text-align: center;
}

/* ==========================================================================
   SECTION TITLE
   ========================================================================== */
.section-title {
    font-size: 52px;
    font-weight: 700;
    text-align: center;
    padding: 60px 0 40px;
}

/* ==========================================================================
   TABS
   ========================================================================== */
.tabs-section {
    padding: 0 0 40px;
}
.tabs-bar {
    display: flex;
    justify-content: center;
    border-bottom: 3px solid var(--light-gray);
    max-width: 760px;
    margin: 0 auto 40px;
}
.tab-btn {
    flex: 1;
    padding: 12px 20px;
    font-weight: 400;
    color: var(--gray);
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    margin-bottom: -3px;
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s;
}
.tab-btn:hover {
    color: var(--orange);
}
.tab-btn.active {
    color: var(--orange);
    font-weight: 600;
    border-bottom-color: var(--orange);
}
.tab-content {
    display: none;
}
.tab-content.active {
    display: block;
}

/* ==========================================================================
   PRODUCT CARDS
   ========================================================================== */
.cards-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}
.cards-row--single {
    grid-template-columns: 1fr;
    max-width: 380px;
}
.card {
    background: var(--white);
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 30px;
    display: flex;
    flex-direction: column;
    min-height: 380px;
}
.card--placeholder {
    visibility: hidden;
}
.card-icon {
    width: 120px;
    height: 127px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.25;
}
.card p {

    font-weight: 400;
    color: #2d2d2d;
    line-height: 1.6;
    flex: 1;
    margin-bottom: 20px;
}
.card-link {
    font-size: 20px;
    font-weight: 600;
    color: var(--orange);
    border-bottom: none;
    transition: color 0.2s;
}
.card-link:hover {
    color: var(--green);
    border-bottom: none;
}

.download-all-row {
    text-align: right;
    padding: 20px 0 60px;
}

/* ==========================================================================
   FEATURES
   ========================================================================== */
.features {
    padding: 80px 0;
}
.features .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.features h2 {
    font-size: 52px;
    font-weight: 500;
}
.features-list {
    font-size: 18px;
    line-height: 1.35;
}
.features-list p {
    margin-bottom: 16px;
}
.features-list .accent {
    color: var(--orange);
}

/* ==========================================================================
   ACCORDION
   ========================================================================== */
.accordion-section {
    padding: 40px 0;
}
.accordion-item {
    border-top: 1px solid var(--light-gray);
    /* border-bottom: 1px solid var(--light-gray); */
}
.accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    /* cursor: pointer; */
    gap: 20px;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 18px;
    color: var(--dark);
    line-height: 1.6;
}
.accordion-header {
    user-select: text;
    cursor: text;
}
.accordion-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    position: relative;
}
.accordion-icon::before,
.accordion-icon::after {
    content: '';
    position: absolute;
    background: var(--orange);
}
.accordion-icon::before {
    width: 24px;
    height: 2px;
    top: 11px;
    left: 0;
}
.accordion-icon::after {
    width: 2px;
    height: 24px;
    left: 11px;
    top: 0;
    transition: transform 0.3s;
}
.accordion-item.open .accordion-icon::after {
    transform: rotate(90deg);
}
.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.accordion-item.open .accordion-body {
    max-height: 2000px;
}
.accordion-body-inner {
    padding: 0 0 30px;
    font-size: 18px;
    line-height: 1.6;
    color: #2d2d2d;
}
.accordion-body-inner ul {
    list-style: disc;
    margin: 10px 0 10px 25px;
}
.accordion-body-inner li {
    margin-bottom: 5px;
    list-style: none;
}

/* ==========================================================================
   FORM SECTION
   ========================================================================== */
.form-section {
    padding: 80px 0 120px;
}
.form-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.form-section h2 {
    font-size: 52px;
    font-weight: 500;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contact-form input,
.contact-form textarea {
    font-size: 16px;
    font-weight: 300;
    color: var(--dark);
    background: var(--white);
    border: 1px solid var(--light-gray);
    padding: 12px 16px;
    height: 50px;
    outline: none;
    transition: border-color 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--orange);
}
.contact-form textarea {
    height: 120px;
    resize: vertical;
}
.contact-form label.checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--dark);
    cursor: pointer;
}
.contact-form label.checkbox input {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}
.form-submit {
    width: 200px;
    height: 50px;
    background: var(--orange);
    color: var(--white);
    border: none;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
}
.form-submit:hover {
    background: var(--green);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    border-top: 1px solid var(--light-gray);
    padding: 40px 0 60px;
}
.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}
.footer-text {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.6;
}
.footer-socials {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}
.footer-socials a {
    width: 30px;
    height: 30px;
    border-bottom: none;
}
.footer-socials a:hover {
    border-bottom: none;
}
.footer-socials svg {
    width: 30px;
    height: 30px;
}

/* ==========================================================================
   COOKIE BANNER
   ========================================================================== */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--white);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
    padding: 20px 25px;
    max-width: 600px;
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 1000;
    font-size: 18px;
    font-weight: 300;
}
.cookie-banner.hidden {
    display: none;
}
.cookie-btn {
    background: var(--orange);
    color: var(--white);
    border: none;
    padding: 10px 24px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.2s;
}
.cookie-btn:hover {
    background: var(--green);
}

/* ==========================================================================
   SCROLL TO TOP
   ========================================================================== */
.scroll-top {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
    transition: background 0.2s;
}
.scroll-top.visible {
    display: flex;
}
.scroll-top:hover {
    background: var(--orange);
}
.scroll-top:hover svg path {
    stroke: var(--white);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 980px) {
    .nav-list {
        display: none;
    }
    .burger {
        display: flex;
    }
    .header {
        height: 64px;
    }
    .hero {
        min-height: auto;
    }
    .hero .container {
        grid-template-columns: 1fr;
    }
    .hero h1 {
        font-size: 40px;
    }
    .hero-media {
        order: -1;
    }
    .section-title {
        font-size: 38px;
    }
    .cards-row {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    .cards-row--single {
        max-width: 400px;
    }
    .card--placeholder {
        display: none;
    }
    .features .container {
        grid-template-columns: 1fr;
        gap: 0px;
    }
    .features h2 {
        font-size: 40px;
    }
    .form-section .container {
        grid-template-columns: 1fr;
    }
    .form-section h2 {
        font-size: 40px;
    }
    .footer .container {
        flex-direction: column;
    }
    .tab-btn {
        font-size: 18px;
    }
    .hero-content {
        padding: 40px 0px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 32px;
    }
    .section-title {
        font-size: 30px;
    }
    .features h2 {
        font-size: 32px;
    }
    .form-section h2 {
        font-size: 32px;
    }
    .card h3 {
        font-size: 18px;
    }
    .card p {
        font-size: 14px;
    }
    .card-link {
        font-size: 16px;
    }
    .btn {
        height: 42px;
        font-size: 12px;
        padding: 0 20px;
    }
    .footer-text {
        font-size: 14px;
    }
    .cookie-banner {
        font-size: 14px;
        left: 10px;
        right: 10px;
        max-width: none;
    }
    .support-banner .container {
        font-size: 14px;
    }

    .tabs-bar {
        display: flex;
        justify-content: flex-start;
        border-bottom: 3px solid var(--light-gray);
        max-width: 480px;
        margin: 0 auto 40px;
        overflow-x: auto;
        overflow-y: hidden;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }
    
    .tab-btn {
        flex: 0 0 auto;
    }
}

.accordion-body-inner ul li::marker{
    content: none;
} 


@media (max-width: 1364px) {
    .hero-content{
        flex-direction: column;
        gap: 30px;
    }
    .page-head__outer.nwb-container{
        padding-top: 72px;
    }
    .container_box{
        padding-right: 0px;
        padding-left: 0px; 
    }
    .form-section .container {
        gap: 30px;
    }
}

.page-head__title{
    display: none;
}

.site-content__inner:after{
    content: none;
}

.hero-contact a, .accordion-body-inner a, .contact-form a{
    color: #ff8562;
}

.hero-contact a:hover, .accordion-body-inner a:hover, .contact-form a:hover{
    text-decoration: none;
}

.form-field {
    position: relative;
}

.form-field input,
.form-field textarea {
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 0;
}

.form-field-error {
    margin: 2px 0 0;
    padding: 0;
    font-size: 13px;
    line-height: 1.3;
    color: #e53935;
    display: none;
}

.form-field-error.visible {
    display: block;
}

.form-field input.invalid,
.form-field textarea.invalid {
    border-color: #e53935;
}

@media (min-width: 1365px) {
    .container_box{
        padding-right: 90px;
        padding-left: 90px;
    }
}

@media (max-width: 1719px) {
    .hero-buttons .btn{
        font-size: 16px;
    }
}

.smart-captcha{
    position: relative;
    top: -20px;
}

#bimCaptchaError{
    position: relative;
    top: -50px;
}