

html{
  scroll-behavior: smooth;
  scroll-padding-top: 150px;
}


* {
  -webkit-box-sizing: border-box;
		  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: "montserrat", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
  transition: 0.3s;
}

#wpadminbar {
  position: relative!important;
}

p {
  font-size: 17px !important;
}

body {
 
  background-color: #1B1B1B;
 
}

:root {
  --color-primary: #F4CD47;
  --color-dark: #1B1B1B;
  --color-darker: #000000;
  --color-grey: #353535;
  --color-light-grey: #939393;
  --color-white: #FFFFFF;
  --font-family: 'Montserrat', sans-serif;
}



.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0;
  overflow: visible;
}

@media screen and (max-width: 500px) {
  .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 10px;
    overflow: hidden;
  }
}


        .hero-section {
            position: relative;
            min-height: 100vh;
            width: 100%;
        }

        /* Фоновое изображение */
        .background-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 0;
        }

        /* Затемнение фона */
        .overlay-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            z-index: 1;
        }

        /* Навбар */
        .navbar {
            position: relative;
            width: 100%;
            background: transparent;
            z-index: 100;
            padding: 20px 40px;
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
            z-index: 3;
        }

        .logo {
            font-size: 24px;
            font-weight: bold;
            color: white;
            text-decoration: none;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }

        /* Десктопное меню */
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 40px;
            margin: 0;
            padding: 0;
        }

        .nav-menu li a {
            text-decoration: none;
            color: white;
            font-weight: 500;
            font-size: 16px;
            transition: color 0.3s;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
            border-radius: 100px;
        }

        .nav-menu li a:hover {
            color: #ffd700;
        }

        .contact-btn {
            background: var(--color-primary);
            color: #333 !important;
            padding: 15px 25px;
            border-radius: 5px;
            transition: background 0.3s;
            text-shadow: none !important;
            font-weight: 600;
        }

        .contact-btn:hover {
            background: #ffed4a;
            color: #333 !important;
        }

        /* Бургер-меню */
        .burger {
            display: none;
            cursor: pointer;
            z-index: 1001;
        }

        .burger div {
            width: 25px;
            height: 3px;
            background: white;
            margin: 5px;
            transition: all 0.3s ease;
        }

        /* Затемнение фона при открытом меню */
        .menu-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.7);
            z-index: 998;
            opacity: 0;
            transition: opacity 0.3s;
            pointer-events: none;
        }

        .menu-overlay.active {
            display: block;
            opacity: 1;
            pointer-events: all;
        }

        /* Hero секция */
        .hero {
            position: relative;
            z-index: 2;
            padding: 40px 0px 80px;
            max-width: 1400px;
            margin: 0 auto;
            min-height: calc(100vh - 80px);
            display: flex;
            align-items: center;
        }

        .hero-container {
            display: grid;
            grid-template-columns: 1.5fr 1fr;
            gap: 60px;
            align-items: center;
            width: 100%;
        }

        /* Левая часть */
        .hero-content {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .hero-title p {
    font-weight: 700;
    font-size: 3rem !important;
    color: #fff;
    text-transform: uppercase;
}
span.hero_span {
    color: var(--color-primary);
}


        .hero-subtitle p {
    font-size: 18px;
    color: rgb(255 255 255 / 90%);
    margin-bottom: 30px;
    font-weight: 200;
}

        /* Контейнер для кнопок с текстом */
        .buttons-container {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-bottom: 0;
        }

        /* Строка с кнопкой и текстом */
        .button-row {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .hero-btn {
            padding: 15px 30px;
            border: none;
            border-radius: 100px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            min-width: 200px;
            font-family: inherit;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        /* Иконки для кнопок */
        .btn-icon {
            font-size: 20px;
            line-height: 1;
        }

        .hero-btn.primary {
            background: var(--color-primary);
            color: #333;
        }

        .hero-btn.primary:hover {
            background: #ffed4a;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
        }

        .hero-btn.secondary {
            background: transparent;
            border: 2px solid var(--color-primary);
            color: var(--color-primary);
        }

        .hero-btn.secondary:hover {
            background: #ffd700;
            color: #333;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
        }

        /* Текст справа от кнопки */
        .button-text {
            color: rgba(255,255,255,0.9);
            font-size: 14px;
            line-height: 1.5;
            text-shadow: 0 1px 2px rgba(0,0,0,0.5);
            flex: 1;
        }

        /* Правая часть */
        .hero-image-wrapper {
            position: relative;
            z-index: 2;
        }

        .hero-image {
            width: 100%;
            height: auto;
           
            display: block;
        }

        /* Модальные окна */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            z-index: 2000;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .modal.active {
            display: flex;
            opacity: 1;
        }

        .modal-content {
            background: white;
            padding: 40px;
            border-radius: 15px;
            max-width: 500px;
            width: 90%;
            position: relative;
            transform: scale(0.7);
            transition: transform 0.3s ease;
            box-shadow: 0 30px 60px rgba(0,0,0,0.3);
        }

        .modal.active .modal-content {
            transform: scale(1);
        }

        .modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 2px solid #f0f0f0;
        }

        .modal-header h2 {
            font-size: 24px;
            color: #333;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .modal-close {
            background: none;
            border: none;
            font-size: 30px;
            cursor: pointer;
            color: #999;
            transition: color 0.3s;
            line-height: 1;
        }

        .modal-close:hover {
            color: #333;
        }

        .modal-body {
            margin-bottom: 30px;
        }

        .modal-body p {
            margin-bottom: 15px;
            color: #666;
            line-height: 1.6;
        }

        .modal-body ul {
            margin-left: 20px;
            margin-bottom: 15px;
            color: #666;
        }

        .modal-body li {
            margin-bottom: 8px;
        }

        .modal-footer {
            text-align: right;
        }

        .modal-btn {
            padding: 12px 30px;
            background: var(--color-primary);
            color: #333;
            border: none;
            border-radius: 5px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }

        .modal-btn:hover {
            background: #ffed4a;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
        }

        /* Мобильная версия */
        @media screen and (max-width: 768px) {
            .navbar {
                padding: 15px 20px;
            }

            /* Бургер */
            .burger {
                display: block;
            }

            /* Мобильное меню */
            .nav-menu {
                position: fixed;
                right: -100%;
                top: 0;
                flex-direction: column;
                background: rgba(0, 0, 0, 0.95);
                backdrop-filter: blur(10px);
                width: 300px;
                height: 100vh;
                padding: 80px 30px 40px;
                box-shadow: -5px 0 30px rgba(0,0,0,0.5);
                transition: right 0.3s ease;
                z-index: 1000;
                gap: 20px;
                list-style: none;
            }

            .nav-menu.active {
                right: 0;
            }

            .nav-menu li a {
                font-size: 18px;
                color: white;
                display: block;
                padding: 10px 0;
            }

            .contact-btn {
                display: inline-block;
                width: auto;
                background: var(--color-primary);
                color: #333 !important;
                margin-top: 10px;
            }

            /* Анимация бургера */
            .burger.active .line1 {
                transform: rotate(-45deg) translate(-5px, 6px);
            }

            .burger.active .line2 {
                opacity: 0;
            }

            .burger.active .line3 {
                transform: rotate(45deg) translate(-5px, -6px);
            }

            /* Hero секция */
            .hero {
                padding: 20px 20px 60px;
            }

            .hero-container {
                grid-template-columns: 1fr;
                gap: 30px;
                text-align: center;
            }

            .hero-title {
                font-size: 36px;
            }

            .hero-subtitle {
                font-size: 16px;
                margin-bottom: 20px;
            }

            /* Адаптация кнопок с текстом на мобилках */
            .buttons-container {
                gap: 25px;
                margin-bottom: 0;
            }

            .button-row {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }

            .hero-btn {
                min-width: 100%;
            }

            .button-text {
                text-align: left;
                width: 100%;
                padding-left: 0;
            }

            .hero-image-wrapper {
                order: -1;
            }

            .hero-image {
                max-width: 100%;
                height: auto;
            }

            /* Модальные окна на мобилках */
            .modal-content {
                padding: 30px 20px;
                width: 95%;
            }

            .modal-header h2 {
                font-size: 20px;
            }
        }

        /* Очень маленькие экраны */
        @media screen and (max-width: 480px) {
            .hero-title {
                font-size: 28px;
            }

            .hero-subtitle {
                font-size: 14px;
            }

            .button-text {
                font-size: 13px;
            }

            .hero-btn {
                min-width: 100%;
                font-size: 14px;
                padding: 12px 20px;
            }

            .nav-menu {
                width: 100%;
                max-width: none;
            }
        }

        /* Для планшетов */
        @media screen and (min-width: 769px) and (max-width: 1024px) {
            .hero {
                padding: 40px 30px;
            }

            .hero-container {
                gap: 30px;
            }

            .hero-title {
                font-size: 42px;
            }

            .button-row {
                gap: 15px;
            }

            .hero-btn {
                min-width: 180px;
                padding: 12px 20px;
            }
        }







/* Benefits Section */
.benefits {
  padding: 100px 0;
  background-color: var(--color-dark);
}

.benefits__content {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

/* Top Section: Image Left, Text Right */
.benefits__top {
  display: grid;
  grid-template-columns: 327px 1fr;
  gap: 40px;
  align-items: start;
}

.benefits__image-left {
  border-radius: 20px;
  overflow: hidden;
}

.benefits-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Bottom Section: Statistics Left, Image Right */


.benefits__image-right {
  border-radius: 20px;
  overflow: hidden;
}

.section-title {
  font-size: 49px;
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 1.2;
}

.section-title--yellow {
  color: var(--color-primary);
}

.section-title--white {
  color: var(--color-white);
}

.section-title--grey {
  color: var(--color-light-grey);
  font-size: 67px;
}

.benefits-list {
    list-style: none;
    margin-bottom: 30px;
    color: #ffffff;
    font-size: 1.5rem;
    line-height: 3;
}





.benefits-description p {
    font-size: 2rem !important;
    font-weight: 300;
    margin-bottom: 50px;
    line-height: normal;
    color: var(--color-primary);
}

.statistics {
    display: flex;
    gap: 20px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 100px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 15px;
}

.stat-text {
  font-size: 20px;
  font-weight: 300;
  color: var(--color-white);
  line-height: 1.4;
}