/* CSS Reset */
*,
*::before,
*::after {
 margin: 0;
    padding: 0;
 box-sizing: border-box;
}

html {
    font-size: 100%;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
    height: auto;
}

input,
button,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
    border: none;
    background: none;
}

a {
    text-decoration: none;
    color: inherit;
}

ul,
ol {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: normal;
    font-size: inherit;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

body {
    font-family: "Mulish", sans-serif;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
}

body.menu-open {
    overflow: hidden;
}

/* Защита от копирования и выделения */
* {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
}

/* Разрешить выделение для интерактивных элементов */
input,
textarea,
a,
button {
    -webkit-user-select: auto;
    -moz-user-select: auto;
    -ms-user-select: auto;
    user-select: auto;
}

/* Разрешить выделение текста в hero карточках */
.hero-card__content,
.hero-card__title,
.hero-card__list,
.hero-card__list li {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

/* Разрешить выделение текста в блоке "О нас" */
.about__text,
.about__title,
.about__description,
.stat-item,
.stat-number,
.stat-unit,
.stat-item__description {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

/* Разрешить выделение текста в блоке "География" */
.geography__header,
.geography__title,
.geography__text {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

/* Разрешить выделение текста в блоке "Этапы" */
.stages__list,
.stages__title,
.stages-list__item,
.stages-list__text {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

/* Разрешить выделение текста в форме */
.request__sidebar,
.request__title,
.request__subtitle,
.request-form,
.form-label,
.checkbox-label,
.checkbox-text {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

/* Разрешить выделение текста в футере */
.footer,
.footer__requisites,
.footer__list,
.footer__link,
.footer__legal-link {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

/* Защита изображений */
img {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
}

/* Container */
.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: #fff;
    padding: 20px 0;
    position: relative;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 999;
    pointer-events: none;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* Logo */
.header__logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.header__logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 63px;
    width: auto;
}

/* Navigation */
.header__nav {
    display: flex;
    align-items: center;
    gap: 32px;
    flex: 1;
    justify-content: center;
}

.nav-link {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    position: relative;
    padding-bottom: 4px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #333;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Contacts */
.header__contacts {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    flex-shrink: 0;
}

.header__contacts--mobile {
    display: none;
}

.contact-link {
    font-size: 14px;
    font-weight: 400;
    color: #333;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #FFD700;
}

/* Burger Menu */
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.burger-line {
    width: 100%;
    height: 3px;
    background-color: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
    display: block;
    position: relative;
}

.burger-menu.active {
    justify-content: center;
}

.burger-menu.active .burger-line:nth-child(1) {
    position: absolute;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.burger-menu.active .burger-line:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.burger-menu.active .burger-line:nth-child(3) {
    position: absolute;
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
}

/* Mobile Menu Overlay */
.header__nav {
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding: 60px 0;
    background: #fff;
}

.hero__cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.hero-card {
    background: #f5f5f5;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.hero-card__header {
    padding: 30px 30px 20px;
}

.hero-card__logo {
    height: 60px;
    width: auto;
}

.hero-card__content {
    padding: 0 30px 30px;
    flex: 1;
}

.hero-card__title {
    font-size: 30px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.3;
}

.hero-card__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hero-card__list li {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.hero-card__list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #333;
    font-weight: bold;
}

.hero-card__image {
    position: relative;
    height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: 50px 50px 0 0;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 30px;
    padding-right: 40px;
}

.hero-card__button {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50px;
    font-size: 16px;
    width: 250px;
    justify-content: space-between;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: "Mulish", sans-serif;
}

.hero-card__button:hover {
    background: #fff;
    transform: translateX(5px);
}

.button-icon {
    width: 32px;
    height: 32px;
    background: #1E352A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.button-icon svg {
    width: 16px;
    height: 16px;
}

/* About Section */
.about {
    padding: 80px 0;
    background: #fff;
}

.about__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.about__text {
    display: flex;
    flex-direction: column;
}

.about__title {
    font-size: 50px;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.2;
}

.about__description {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.6;
    margin: 0;
}

.about__stats {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.stat-item {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
}

.stat-item__number {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 12px;
}

.stat-number {
    font-size: 64px;
    font-weight: 700;
    color: #333;
    line-height: 1;
}

.stat-unit {
    font-size: 24px;
    font-weight: 400;
    color: #333;
    line-height: 1;
}

.stat-item__description {
    font-size: 18px;
    font-weight: 400;
    color: #333;
    line-height: 1.6;
    margin: 0;
}

.stat-divider {
    width: 100%;
    height: 1px;
    background: #e5e5e5;
    margin: 30px 0;
}

/* Geography Section */
.geography {
    padding: 80px 0;
    background: #fff;
}

.geography__content {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.geography__header {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.geography__title {
    font-size: 50px;
    font-weight: 700;
    color: #333;
    margin: 0;
    line-height: 1.2;
}

.geography__text {
    font-size: 20px;
    font-weight: 500;
    color: #333;
    line-height: 1.6;
    margin: 0;
}

.geography__map {
    position: relative;
    width: 100%;
}

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

.geography__overlay {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.overlay__header {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.overlay__logos {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
}

/* Stages Section */
.stages {
    padding: 80px 0;
    background: #fff;
    position: relative;
}

.stages::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 723px;
    height: 783px;
    background-image: url('../media/stages/sun.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 0;
    pointer-events: none;
}

.stages__content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.stages__image {
    position: relative;
}

.stages-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    display: block;
}

.stages__list {
    position: relative;
    padding-left: 0;
}

.stages__title {
    font-size: 50px;
    font-weight: 700;
    color: #333;
    margin: 0 0 50px 0;
    line-height: 1.2;
}

.stages-list {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    padding-left: 40px;
}

.stages-list::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    width: 2px;
    background: #2d5016;
    height: calc(100% - 120px);
}

.stages-list__item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    position: relative;
    padding-left: 0;
}

.stages-list__item:last-child {
    margin-bottom: 0;
}

.stages-list__number {
    width: 20px;
    height: 20px;
    background: #2d5016;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    flex-shrink: 0;
    position: absolute;
    left: -34px;
    top: 0;
    z-index: 2;
}

.stages-list__text {
    font-size: 20px;
    font-weight: 500;
    color: #333;
    line-height: 1.6;
    flex: 1;
    margin-left: 50px;
}

.stages-list__item--last {
    margin-left: -40px;
}

.stages-list__item--last .stages-list__number {
    display: none;
}

.stages-list__item--last .stages-list__text {
    margin-left: 0;
    padding-left: 0;
}

/* Request Section */
.request {
    padding: 80px 0;
    background: #fff;
}

.request__content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.request__sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.request__title {
    font-size: 50px;
    font-weight: 700;
    color: #333;
    margin: 0;
    line-height: 1.2;
}

.request__subtitle {
    font-size: 20px;
    font-weight: 500;
    color: #333;
    margin: 0;
}

.request__buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.direction-btn,
a.direction-btn {
    padding: 18px 24px;
    font-size: 18px;
    font-weight: 500;
    font-family: "Mulish", sans-serif;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    background: #fff;
    color: #333;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
}

.direction-btn--active {
    background: #1E352A;
    color: #fff;
    border-color: #1E352A;
}

.direction-btn:hover:not(.direction-btn--active) {
    border-color: #2d5016;
    background: #f5f5f5;
}

.request__form-wrapper {
    background: #fff;
    border: 1px solid #AFAFAF;
    border-radius: 12px;
    padding: 40px;
}

.request-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.request-form__title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin: 0 0 10px 0;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

.form-input,
.form-textarea {
    padding: 14px 16px;
    font-size: 16px;
    font-weight: 400;
    font-family: "Mulish", sans-serif;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    background: #fff;
    color: #333;
    transition: border-color 0.3s ease;
    width: 100%;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #2d5016;
}

.form-textarea {
    resize: none;
    min-height: 100px;
}

.form-group--checkbox {
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 400;
    color: #666;
    line-height: 1.5;
}

.checkbox-input {
    display: none;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #e5e5e5;
    border-radius: 4px;
    background: #fff;
    flex-shrink: 0;
    margin-top: 2px;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-input:checked + .checkbox-custom {
    background: #1E352A;
    border-color: #1E352A;
}

.checkbox-input:checked + .checkbox-custom::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 6px;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-text {
    flex: 1;
}

.form-submit {
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
    font-family: "Mulish", sans-serif;
    background: #1E352A;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 10px;
}

.form-submit:hover {
    background: #1f3810;
}

/* Footer */
.footer {
    background: #1E352A;
    padding: 60px 0 30px;
    color: #fff;
}

.footer__main {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer__column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer__column--logos {
    flex: 0 0 auto;
}

.footer__column--middle {
    flex: 0 0 auto;
}

.footer__column--email {
    flex: 0 0 auto;
}

.footer__column--button {
    flex: 0 0 auto;
    display: flex;
    align-items: flex-start;
    width: 100%;
    max-width: 300px;
}

.footer__column--button .footer-call-btn {
    width: 100%;
}

.footer-logo {
    height: auto;
    max-height: 85px;
    width: auto;
}

.footer-logo--desktop {
    display: block;
}

/* Mobile footer elements - hidden on desktop */
.footer__top-mobile,
.footer__contacts-mobile,
.footer__nav-mobile,
.footer__legal-mobile,
.footer__partners-mobile {
    display: none;
}

.footer-phone,
.footer-email {
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s ease;
    margin-bottom: 10px;
}

.footer-phone:hover,
.footer-email:hover {
    opacity: 0.8;
}

.footer-call-btn {
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 500;
    font-family: "Mulish", sans-serif;
    background: #fff;
    color: #333;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
    white-space: nowrap;
}

.footer-call-btn:hover {
    background: #f5f5f5;
}

.footer__title {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.footer__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__list li {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
}

.footer__link {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer__link:hover {
    opacity: 0.8;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.footer__requisites {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer__requisites p {
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    margin: 0;
}

.footer__legal,
.footer__privacy {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer__legal-link {
    font-size: 14px;
    font-weight: 400;
    color: #B8D4C1;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.footer__legal-link:hover {
    color: #fff;
}



/* Banner Section */
.banner-section {
    padding: 80px 0;
}

.banner-section .container {
    background: #2D5240;
    background-image: url('../media/nic/bg-pautina.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 12px;
    padding: 60px 40px;
}

.banner-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.banner-line {
    width: 100px;
    height: 2px;
    background: #fff;
    margin-bottom: 10px;
}

.banner-text {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: center;
}

.banner-text__line {
    font-size: 24px;
    font-weight: 500;
    color: #fff;
    line-height: 1.5;
    margin: 0;
}

.banner-button {
    padding: 16px 40px;
    background: #fff;
    color: #333;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    font-family: "Mulish", sans-serif;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 10px;
}

.banner-button:hover {
    background: #f0f0f0;
}

/* Разрешить выделение текста в баннере */
.banner-section,
.banner-text,
.banner-text__line {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}


/* Page Content Styles */
.page-content {
    padding: 40px 0 80px;
    background: #fff;
}

/* Breadcrumbs */
.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 30px;
    font-size: 16px;
}

.breadcrumbs__link {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumbs__link:hover {
    color: #2d5016;
}

.breadcrumbs__separator {
    color: #666;
}

.breadcrumbs__current {
    color: #666;
}

/* Page Header */
.page-header {
    margin-bottom: 60px;
}

.page-title {
    font-size: 50px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.2;
}

.page-subtitle {
    font-size: 18px;
    font-weight: 400;
    color: #666;
    margin: 0;
}

/* Page Body */
.page-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.page-body__image {
    width: 100%;
}

.page-body__image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.page-body__text {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.page-text {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.8;
    color: #333;
    margin: 0;
}

.page-button {
    padding: 16px 40px;
    background: #333;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    width: 65%;
    font-weight: 600;
    font-family: "Mulish", sans-serif;
    cursor: pointer;
    transition: background 0.3s ease;
    align-self: flex-start;
}

.page-button:hover {
    background: #1a1a1a;
}

/* Разрешить выделение текста на странице */
.page-content,
.page-title,
.page-subtitle,
.page-text,
.breadcrumbs,
.breadcrumbs__link,
.breadcrumbs__current {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}



/* Objects Section */
.objects-section {
    padding: 80px 0;
    background: #fff;
}

.objects-title {
    font-size: 50px;
    font-weight: 700;
    color: #333;
    margin-bottom: 60px;
    line-height: 1.2;
}

.objects-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.object-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    background: #fff;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

.object-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.object-card__icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 15px;
    flex-shrink: 0;
}

.object-card__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.object-card__text {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    text-align: left;
    line-height: 1.5;
    margin: 0;
}

/* Разрешить выделение текста в объектах */
.objects-section,
.objects-title,
.object-card__text {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}




/* Concepts Section */
.concepts-section {
    padding: 80px 0;
    background: #fff;
}

.concepts-title {
    font-size: 50px;
    font-weight: 700;
    color: #333;
    margin-bottom: 60px;
    line-height: 1.2;
}

.concepts-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.concepts-main {
    width: 100%;
}

.concepts-main__image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

.concepts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.concepts-button-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.concepts-grid__item {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.concepts-grid__item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.concepts-button {
    padding: 16px 40px;
    background: #2D5240;
    color: #fff;
    width: 30%;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    font-family: "Mulish", sans-serif;
    cursor: pointer;
    transition: background 0.3s ease;
}

.concepts-button:hover {
    background: #1f3610;
}

/* Разрешить выделение текста в концепциях */
.concepts-section,
.concepts-title {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

/* Strong Section */
.strong-section {
    padding: 80px 0;
    background: #fff;
    position: relative;
}

.strong-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../media/nic/strong/bg-sun.svg');
    background-size: contain;
    background-position: left center;
    background-repeat: no-repeat;
    z-index: 0;
    pointer-events: none;
}

.strong-section .container {
    position: relative;
    z-index: 1;
}

.strong-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 40px;
    margin-bottom: 40px;
}

.strong-title {
    font-size: 50px;
    font-weight: 700;
    color: #333;
    line-height: 1.2;
    display: flex;
    flex-direction: column;
    margin: 0;
}

.strong-title__line {
    display: block;
}

.strong-header__cards {
    display: flex;
    gap: 30px;
}

.strong-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.strong-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    width: 332px;
    height: 294px;
}

.strong-card__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    margin-bottom: 10px;
}

.strong-card__number {
    font-size: 24px;
    font-weight: 700;
    color: #333;
}

.strong-card__logo {
    width: auto;
    max-width: 200px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.strong-card__logo img {
    width: 100%;
    height: auto;
    max-height: 60px;
    object-fit: contain;
}

.strong-card__text {
    font-size: 16px;
    font-weight: 400;
    color: #333;
    line-height: 1.6;
    margin: 0;
    margin-top: auto;
}

/* Разрешить выделение текста в strong секции */
.strong-section,
.strong-title,
.strong-title__line,
.strong-card__text {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

/* Trial Section */
.trial-section {
    padding: 80px 0;
    background: #fff;
}

.trial-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.trial-title {
    font-size: 50px;
    font-weight: 700;
    color: #333;
    line-height: 1.2;
    display: flex;
    flex-direction: column;
    margin: 0;
    flex-shrink: 0;
}

.trial-title__line {
    display: block;
}

.trial-cards {
    display: flex;
    gap: 30px;
    justify-content: flex-start;
}

.trial-card {
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
    width: 177px;
    height: 233px;
    flex-shrink: 0;
}

.trial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.trial-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

/* Video Section */
.video-section {
   padding-bottom: 80px;
    background: #fff;
}

.video-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.video-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.video-logo__image {
    max-width: 200px;
    height: auto;
}

.video-logo__text {
    font-size: 18px;
    color: #333;
    margin: 0;
    text-align: center;
}

.video-wrapper {
    width: 100%;
    max-width: 1200px;
    position: relative;
}

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

/* Aspects Section */
.aspects-section {
    padding: 80px 0;
    background: #fff;
}

.aspects-title {
    font-size: 50px;
    font-weight: 700;
    color: #333;
    margin-bottom: 40px;
    line-height: 1.2;
}

.aspects-slider {
    position: relative;
}

.aspects-slider__wrapper {
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.aspects-slider__track {
    display: flex;
    gap: 20px;
    transition: transform 0.3s ease;
    will-change: transform;
    align-items: flex-start;
}

.aspects-card {
    flex: 0 0 auto;
    width: 332px;
    height: 306px;
    background: #fff;
    border-radius: 12px;
    padding: 30px 25px;
    margin: 0.5px;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.aspects-card__number {
    font-size: 20px;
    font-weight: 700;
    color: #e0e0e0;
    line-height: 1;
    margin-bottom: 0;
    position: absolute;
    top: 30px;
    left: 25px;
}

.aspects-card__text {
    font-size: 16px;
    color: #333;
    line-height: 1.5;
    margin: 0;
    margin-top: auto;
    padding-top: 0;
    position: relative;
    z-index: 1;
}

.aspects-slider__nav {
    position: absolute;
    top: -60px;
    right: 0;
    display: flex;
    gap: 10px;
}

.aspects-slider__arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #333;
}

.aspects-slider__arrow:hover {
    background: #f5f5f5;
    border-color: #333;
}

.aspects-slider__arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.aspects-slider__arrow svg {
    width: 24px;
    height: 24px;
}

.aspects-slider__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.aspects-slider__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e0e0e0;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.aspects-slider__dot.active {
    background: #333;
    width: 24px;
    border-radius: 4px;
}

/* Reviews Section */
.reviews-section {
    padding: 80px 0;
    background: #fff;
}

.reviews-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.reviews-title {
    font-size: 50px;
    font-weight: 700;
    color: #333;
    line-height: 1.2;
    display: flex;
    flex-direction: column;
    margin: 0;
    flex-shrink: 0;
}

.reviews-title__line {
    display: block;
}

.reviews-slider {
    position: relative;
    flex: 1;
}

.reviews-slider__wrapper {
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.reviews-slider__track {
    display: flex;
    gap: 20px;
    transition: transform 0.3s ease;
    will-change: transform;
    align-items: flex-start;
}

.reviews-card {
    flex: 0 0 auto;
    width: calc((100% - 40px) / 3);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.reviews-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

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

.reviews-slider__nav {
    position: absolute;
    top: -60px;
    right: 0;
    display: flex;
    gap: 10px;
}

.reviews-slider__arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #333;
}

.reviews-slider__arrow:hover {
    background: #f5f5f5;
    border-color: #333;
}

.reviews-slider__arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.reviews-slider__arrow svg {
    width: 24px;
    height: 24px;
}

.reviews-slider__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.reviews-slider__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e0e0e0;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.reviews-slider__dot.active {
    background: #333;
    width: 24px;
    border-radius: 4px;
}

/* Review Modal */
.review-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.review-modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    cursor: pointer;
}

.review-modal__content {
    position: relative;
    z-index: 10001;
    max-width: 90%;
    max-height: 90vh;
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

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

.review-modal__close {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: none;
    font-size: 28px;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10002;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.review-modal__close:hover {
    background: #f5f5f5;
    transform: rotate(90deg);
}

.review-modal__image {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    display: block;
}

/* Documents Section */
.documents-section {
    padding: 80px 0;
    background: #fff;
}

.documents-slider {
    position: relative;
    width: 100%;
}

.documents-slider__wrapper {
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.documents-slider__track {
    display: flex;
    gap: 20px;
    transition: transform 0.3s ease;
    will-change: transform;
    align-items: flex-start;
}

.documents-card {
    flex: 0 0 auto;
    width: calc((100% - 40px) / 3);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.documents-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

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

.documents-slider__nav {
    position: absolute;
    top: -60px;
    right: 0;
    display: flex;
    gap: 10px;
}

.documents-slider__arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.documents-slider__arrow:hover {
    background: #f5f5f5;
    border-color: #333;
}

.documents-slider__arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.documents-slider__arrow svg {
    width: 24px;
    height: 24px;
}

.documents-slider__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.documents-slider__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e0e0e0;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.documents-slider__dot.active {
    background: #333;
    width: 24px;
    border-radius: 4px;
}

/* Document Modal */
.document-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.document-modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    cursor: pointer;
}

.document-modal__content {
    position: relative;
    z-index: 10001;
    max-width: 90%;
    max-height: 90vh;
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

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

.document-modal__close {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: none;
    font-size: 28px;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10002;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.document-modal__close:hover {
    background: #f5f5f5;
    transform: rotate(90deg);
}

.document-modal__image {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
}

/* Questionnaire Form */
.questionnaire-form {
    padding: 40px 0 80px;
}

.questionnaire-form__content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.form-section {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-section__title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin: 0;
    text-transform: uppercase;
}

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

.form-section--dimensions .form-row {
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group--wide {
    grid-column: 1;
}

.form-group--narrow {
    grid-column: 2;
}

.form-label {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-input {
    padding: 14px 16px;
    font-size: 16px;
    font-weight: 400;
    font-family: "Mulish", sans-serif;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    background: #fff;
    color: #333;
    transition: border-color 0.3s ease;
    width: 100%;
}

.form-input:focus {
    outline: none;
    border-color: #2d5016;
}

.form-input::placeholder {
    color: #999;
}

.form-textarea {
    padding: 14px 16px;
    font-size: 16px;
    font-weight: 400;
    font-family: "Mulish", sans-serif;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    background: #fff;
    color: #333;
    transition: border-color 0.3s ease;
    width: 100%;
    resize: none;
    min-height: 120px;
    height: 100%;
}

.form-textarea:focus {
    outline: none;
    border-color: #2d5016;
}

.form-hint {
    font-size: 12px;
    color: #999;
    margin-top: -4px;
}

.form-info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #333;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    cursor: help;
    flex-shrink: 0;
}

.form-link {
    font-size: 14px;
    color: #2d5016;
    text-decoration: underline;
    margin-left: 4px;
}

.form-link:hover {
    color: #1f3810;
}

.form-subsection {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 20px;
}

.form-subsection:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
}

.form-footer {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 40px;
    margin-top: 20px;
}

.form-group--comment {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group--comment .form-textarea {
    flex: 0 0 auto;
    height: auto;
}

.form-footer__right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    flex: 1;
    padding-top: 30px;
}

.form-submit-btn {
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    font-family: "Mulish", sans-serif;
    background: #1E352A;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 100%;
}

.form-submit-btn:hover {
    background: #1f3810;
}

.form-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 500px;
}

.form-info-text {
    font-size: 12px;
    color: #666;
    line-height: 1.5;
    margin-top: auto;
}

/* Certificate Modal */
.certificate-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.certificate-modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    cursor: pointer;
}

.certificate-modal__content {
    position: relative;
    z-index: 10001;
    max-width: 90%;
    max-height: 90vh;
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

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

.certificate-modal__close {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: none;
    font-size: 28px;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10002;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.certificate-modal__close:hover {
    background: #f5f5f5;
    transform: rotate(90deg);
}

.certificate-modal__image {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    display: block;
}

/* Разрешить выделение текста в trial секции */
.trial-section,
.trial-title,
.trial-title__line {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

/* Разрешить выделение текста в aspects секции */
.aspects-section,
.aspects-title,
.aspects-card__text {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

/* Разрешить выделение текста в video секции */
.video-section,
.video-logo__text {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ 

   ВНИМАНИЕ: Все новые базовые стили (не медиа-запросы) должны быть добавлены ДО этого блока.
   Базовые стили для новых секций/компонентов размещайте перед комментарием "RESPONSIVE STYLES".

   ============================================ */

/* 1200px and below */
@media (max-width: 1200px) {
    /* Header */
    .header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 400px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 100px 30px 30px;
        gap: 24px;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        overflow-y: auto;
    }

    .header__nav.active {
        right: 0;
    }

    .nav-link {
        font-size: 18px;
        width: 100%;
        padding: 12px 0;
    }

    .header__contacts {
        display: none;
    }

    .header__contacts--mobile {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid #e5e5e5;
        width: 100%;
    }

    .header__contacts--mobile .contact-link {
        font-size: 16px;
    }

    .burger-menu {
        display: flex;
    }

    .header__logo {
        z-index: 1001;
    }

    /* Hero */
    .hero__cards {
        gap: 30px;
    }

    .hero-card__title {
        font-size: 22px;
    }

    /* About */
    .about__content {
        gap: 60px;
    }

    .about__title {
        font-size: 40px;
    }

    .stat-number {
        font-size: 56px;
    }

    .stat-unit {
        font-size: 20px;
    }

    /* Footer Mobile */
    .footer__main {
        display: none;
    }

    .footer__bottom {
        display: none;
    }

    .footer__top-mobile {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 30px;
        gap: 20px;
        padding-bottom: 30px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .footer-logo-mobile {
        height: auto;
        max-height: 50px;
        width: auto;
    }

    .footer-call-btn--mobile {
        padding: 12px 24px;
        font-size: 16px;
        font-weight: 500;
        font-family: "Mulish", sans-serif;
        background: #fff;
        color: #333;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        transition: background 0.3s ease;
        white-space: nowrap;
    }

    .footer-call-btn--mobile:hover {
        background: #e0e0e0;
    }

    .footer__contacts-mobile {
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin-bottom: 30px;
        padding-bottom: 30px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .footer__requisites-mobile p {
        margin: 0;
        color: rgba(255, 255, 255, 0.9);
        font-size: 14px;
        line-height: 1.6;
    }

    .footer__requisites-mobile p:first-child {
        font-weight: 600;
        margin-bottom: 5px;
    }

    .footer-phone-mobile,
    .footer-email-mobile {
        color: rgba(255, 255, 255, 0.9);
        text-decoration: none;
        font-size: 16px;
        transition: color 0.3s ease;
    }

    .footer-phone-mobile:hover,
    .footer-email-mobile:hover {
        color: #fff;
    }

    .footer__nav-mobile {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        margin-bottom: 30px;
        padding-bottom: 30px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .footer__nav-column {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .footer__legal-mobile {
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin-bottom: 30px;
        padding-bottom: 30px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .footer__legal-mobile .footer__legal-link {
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        font-size: 14px;
        transition: color 0.3s ease;
    }

    .footer__legal-mobile .footer__legal-link:hover {
        color: rgba(255, 255, 255, 0.9);
    }

    .footer__partners-mobile {
        display: flex;
        gap: 20px;
        align-items: center;
    }

    .footer__partners-mobile .footer-logo {
        max-height: 50px;
    }

    .footer-logo--desktop {
        display: none;
    }

    /* Page Content */
    .page-body {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .page-body__image {
        order: 1;
    }

    .page-body__text {
        order: 2;
    }

    .page-title {
        font-size: 40px;
    }

    /* Objects Section */
    .objects-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

    .objects-title {
        font-size: 40px;
        margin-bottom: 50px;
    }

    /* Concepts Section */
    .concepts-title {
        font-size: 40px;
        margin-bottom: 50px;
    }

    .concepts-content {
        gap: 30px;
    }

    /* Strong Section */
    .strong-header {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 40px;
    }

    .strong-title {
        font-size: 40px;
        margin-bottom: 0;
    }

    .strong-header__cards {
        flex-direction: column;
        width: 100%;
        gap: 25px;
    }

    .strong-grid {
        flex-direction: column;
        width: 100%;
        gap: 20px;
    }

    .strong-card {
        width: 100%;
        height: 194px;
    }

    /* Trial Section */
    .trial-section {
        padding: 60px 0;
    }

    .trial-content {
        flex-direction: column;
        gap: 30px;
    }

    .trial-title {
        font-size: 40px;
        margin-bottom: 0;
    }

    .trial-cards {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        align-items: center;
        gap: 25px;
    }

    .trial-card {
        width: 177px;
        height: 233px;
        max-width: 177px;
    }
}

/* 768px and below */
@media (max-width: 768px) {
    /* Header */
    .header {
        padding: 15px 0;
    }

    .logo-img {
        height: 50px;
    }

    .header__nav {
        max-width: 100%;
        padding: 80px 20px 20px;
    }

    .nav-link {
        font-size: 16px;
    }

    /* Hero */
    .hero {
        padding: 40px 0;
    }

    .hero__cards {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-card__header {
        padding: 20px 20px 15px;
    }

    .hero-card__logo {
        height: 40px;
    }

    .hero-card__content {
        padding: 0 20px 20px;
    }

    .hero-card__title {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .hero-card__list li {
        font-size: 14px;
    }

    .hero-card__image {
        height: 250px;
        padding: 20px;
        padding-right: 30px;
    }

    .hero-card__button {
        padding: 12px 24px;
        font-size: 14px;
    }

    /* About */
    .about {
        padding: 60px 0;
    }

    .about__content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about__title {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .about__description {
        font-size: 16px;
    }

    .stat-number {
        font-size: 48px;
    }

    .stat-unit {
        font-size: 18px;
    }

    .stat-item__description {
        font-size: 16px;
    }

    .stat-divider {
        margin: 25px 0;
    }

    /* Geography */
    .geography {
        padding: 60px 0;
    }

    .geography__content {
        gap: 40px;
    }

    .geography__title {
        font-size: 36px;
    }

    .geography__text {
        font-size: 16px;
    }

    .geography__overlay {
        position: relative;
        margin-top: 20px;
    }

    /* Stages */
    .stages {
        padding: 60px 0;
    }

    .stages__content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .stages__list {
        padding-left: 0;
    }

    .stages__title {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .stages-list {
        padding-left: 40px;
    }

    .stages-list::before {
        left: 15px;
        height: calc(100% - 110px);
    }

    .stages-list__number {
        left: -34px;
    }

    .stages-list__text {
        font-size: 18px;
        margin-left: 50px;
    }

    .stages-list__item--last {
        margin-left: -40px;
    }

    .stages-list__item--last .stages-list__text {
        margin-left: 0;
    }

    /* Request */
    .request {
        padding: 60px 0;
    }

    .request__content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .request__title {
        font-size: 36px;
    }

    .request__subtitle {
        font-size: 18px;
    }

    .request__form-wrapper {
        padding: 30px 20px;
    }

    .request-form__title {
        font-size: 22px;
    }

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

    /* Footer */
    .footer {
        padding: 40px 0 20px;
    }

    .footer__main {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 30px;
        padding-bottom: 30px;
    }

    .footer__column--logos {
        gap: 25px;
    }

    .footer__column--button {
        width: 100%;
    }

    .footer-call-btn {
        width: 100%;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 20px;
    }

    /* Page Content */
    .page-content {
        padding: 30px 0 60px;
    }

    .breadcrumbs {
        font-size: 14px;
        margin-bottom: 20px;
        flex-wrap: wrap;
        gap: 4px;
    }
    
    .breadcrumbs__separator {
        margin: 0 2px;
    }

    .page-header {
        margin-bottom: 40px;
    }

    .page-title {
        font-size: 32px;
    }

    .page-subtitle {
        font-size: 16px;
    }

    .page-body {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .page-body__image {
        order: 1;
    }

    .page-body__text {
        order: 2;
    }

    .page-text {
        font-size: 16px;
    }

    .page-button {
        width: 100%;
        padding: 14px 32px;
        font-size: 16px;
    }

    /* Objects Section */
    .objects-section {
        padding: 60px 0;
    }

    .objects-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .objects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .object-card {
        padding: 20px 15px;
    }

    .object-card__icon {
        width: 35px;
        height: 35px;
        margin-bottom: 12px;
    }

    .object-card__text {
        font-size: 14px;
    }

    /* Concepts Section */
    .concepts-section {
        padding: 60px 0;
    }

    .concepts-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .concepts-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .concepts-grid {
        gap: 15px;
    }

    .concepts-button-wrapper {
        margin-top: 30px;
    }

    .concepts-button {
        padding: 14px 32px;
        font-size: 16px;
        width: 100%;
    }

    /* Strong Section */
    .strong-section {
        padding: 60px 0;
    }

    .strong-header {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 30px;
    }

    .strong-title {
        font-size: 32px;
        margin-bottom: 0;
    }

    .strong-header__cards {
        flex-direction: column;
        width: 100%;
        gap: 20px;
    }

    .strong-grid {
        flex-direction: column;
        width: 100%;
        gap: 20px;
    }

    .strong-card {
        width: 100%;
        height: 194px;
        padding: 25px 20px;
    }

    /* Banner Section */
    .banner-section {
        padding: 60px 0;
    }

    .banner-section .container {
        padding: 50px 30px;
    }

    .banner-content {
        gap: 25px;
    }

    .banner-text__line {
        font-size: 18px;
    }

    .banner-button {
        padding: 14px 32px;
        font-size: 16px;
    }

    /* Video Section */
    .video-section {
        padding: 60px 0;
    }

    .video-content {
        gap: 30px;
    }

    .video-logo__text {
        font-size: 16px;
    }

    /* Aspects Section */
    .aspects-section {
        padding: 60px 0;
    }

    .aspects-title {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .aspects-slider__nav {
        top: -50px;
    }

    .aspects-card {
        width: 100%;
        max-width: 332px;
        height: auto;
        min-height: 306px;
    }

    /* Reviews Section */
    .reviews-section {
        padding: 60px 0;
    }

    .reviews-content {
        flex-direction: column;
        gap: 30px;
    }

    .reviews-title {
        font-size: 32px;
        margin-bottom: 0;
    }

    .reviews-slider__nav {
        top: -50px;
    }

    .reviews-card {
        width: 100%;
    }

    .documents-section {
        padding: 60px 0;
    }

    .documents-slider__nav {
        top: -50px;
    }

    .documents-card {
        width: 100%;
    }

    /* Questionnaire Form */
    .questionnaire-form {
        padding: 30px 0 50px;
    }

    .questionnaire-form__content {
        gap: 30px;
    }

    .form-section {
        gap: 20px;
    }

    .form-section__title {
        font-size: 20px;
    }
    
    .form-section--dimensions .form-row {
        grid-template-columns: 1fr 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .form-group--wide,
    .form-group--narrow {
        grid-column: 1;
    }

    .form-footer {
        flex-direction: column;
        align-items: stretch;
        gap: 30px;
    }

    .form-group--comment {
        width: 100%;
    }

    .form-footer__right {
        width: 100%;
        align-items: stretch;
    }

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

    .form-checkboxes {
        max-width: 100%;
    }
}


/* 480px and below */
@media (max-width: 480px) {
    /* Header */
    .container {
        padding: 0 15px;
    }

    .logo-img {
        height: 40px;
    }

    .stat-item {
        flex-direction: column;
    }

    .burger-menu {
        width: 24px;
        height: 18px;
    }

    .stages-list::before {
        left: 15px;
        height: calc(100% - 150px);
    }

    .burger-line {
        height: 2px;
    }

    /* Objects Section */
    .objects-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .objects-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    /* Concepts Section */
    .concepts-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .concepts-grid {
        gap: 12px;
    }

    /* Banner Section */
    .banner-section {
        padding: 50px 0;
    }

    .banner-section .container {
        padding: 40px 20px;
    }

    .banner-text__line {
        font-size: 16px;
    }

    .banner-line {
        width: 80px;
    }

    /* Trial Section */
    .trial-section {
        padding: 50px 0;
    }

    .trial-content {
        gap: 25px;
    }

    .trial-title {
        font-size: 28px;
    }

    /* Strong Section */
    .strong-section {
        padding: 50px 0;
    }

    .strong-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .strong-card {
        padding: 20px 15px;
    }

    .strong-card__text {
        font-size: 14px;
    }

    /* Video Section */
    .video-section {
        padding: 50px 0;
    }

    .video-content {
        gap: 20px;
    }

    .video-logo__image {
        max-width: 150px;
    }

    .video-logo__text {
        font-size: 14px;
    }

    /* Aspects Section */
    .aspects-section {
        padding: 50px 0;
    }

    .aspects-title {
        font-size: 28px;
        margin-bottom: 25px;
    }

    .aspects-slider__nav {
        top: -45px;
        right: 10px;
    }

    .aspects-slider__arrow {
        width: 35px;
        height: 35px;
    }

    .aspects-card {
        width: 100%;
        max-width: 332px;
        height: auto;
        min-height: 306px;
        padding: 25px 20px;
    }

    .aspects-card__number {
        font-size: 20px;
        top: 25px;
        left: 20px;
    }

    .aspects-card__text {
        font-size: 14px;
        padding-top: 0;
        margin-top: auto;
    }

    .aspects-slider__dots {
        margin-top: 20px;
    }

    /* Reviews Section */
    .reviews-section {
        padding: 50px 0;
    }

    .reviews-content {
        gap: 25px;
    }

    .reviews-title {
        font-size: 28px;
    }

    .reviews-slider__nav {
        top: -45px;
        right: 10px;
    }

    .reviews-slider__arrow {
        width: 35px;
        height: 35px;
    }

    .reviews-card {
        width: 100%;
    }

    .reviews-slider__dots {
        margin-top: 20px;
    }

    .documents-section {
        padding: 50px 0;
    }

    .documents-slider__nav {
        top: -45px;
        right: 10px;
    }

    .documents-slider__arrow {
        width: 35px;
        height: 35px;
    }

    .documents-card {
        width: 100%;
    }

    .documents-slider__dots {
        margin-top: 20px;
    }

    /* Questionnaire Form */
    .questionnaire-form {
        padding: 25px 0 40px;
    }

    .form-section__title {
        font-size: 18px;
    }

    .form-label {
        font-size: 14px;
    }

    .form-input,
    .form-textarea {
        font-size: 14px;
        padding: 12px 14px;
    }

    .form-footer {
        gap: 20px;
    }

    .form-submit-btn {
        font-size: 16px;
        padding: 14px 32px;
    }
}