body {
    font-family: 'Roboto', sans-serif;
    color: var(--color-text);
    background-color: var(--color-white);
    width: 100%;
    overflow-x: hidden;
    font-weight: 400;
    line-height: 1.3;
    font-size: clamp(16px, 4vw, 20px);
}

.container {
    width: 100%;
    max-width: 1406px;
    margin: 0 auto;
    padding: 0 20px;
}

.w-100 {
    width: 100%;
}

.rel {
    position: relative
}

.d-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.al-center {
    align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center
}

.jc-sb {
    justify-content: space-between;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify
}

.jc-center {
    justify-content: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center
}

.fd-c {
    flex-direction: column;
}

body.no-scroll {
    overflow: hidden;
}



body::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

body::-webkit-scrollbar-thumb {

    background-color: #1a4a8f;
}

body::-webkit-scrollbar-track {
    background-color: var(--color-border);
}

body::-webkit-scrollbar-track-piece:vertical:start {
    background: var(--color-primary);
}

body::-webkit-scrollbar-button:vertical {
    background-color: var(--color-primary);
}



/* #scrollbar-tooltip {
    position: fixed;
    right: 25px;
    background-color: #34495e;
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    white-space: nowrap;
    z-index: 10000;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

#scrollbar-tooltip::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -5px;
    transform: translateY(-50%);
    border-width: 5px 0 5px 5px;
    border-style: solid;
    border-color: transparent transparent transparent #34495e;
} */

/* HEADER */
.header {
    background: var(--color-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.header__top {
    padding: 10px 0;
    border-bottom: 1px solid var(--color-border);
    transition: all 0.3s ease;
}

/* Стили для фиксированной навигации при скролле */
.header.fixed {
    padding-top: 43px;
}

.header.fixed .header__nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--color-white);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.header.fixed .header__nav .nav__list {
    width: 100%;
    max-width: 1406px;
    margin: 0 auto;
    padding: 0 20px;
}



.header__logo {
    margin-right: 30px;
}

.header__logo img {
    width: 80px;
    height: 60px;
    object-fit: contain;
}

.header__slogan-wrap {
    display: flex;
    gap: 40px;
}

.header__slogan-title {
    font-weight: 600;
    font-size: clamp(16px, 4vw, 18px);
    color: var(--color-primary);
    margin-bottom: 4px;
}

.header__slogan-text {
    font-size: clamp(14px, 4vw, 16px);
    color: var(--color-text);
    opacity: 0.8;
}

.header__right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.header__right-wrap {
    gap: 45px;
}

.t-h-phone,
.t-h-mail {
    font-weight: 600;
    color: var(--color-text);
    font-size: clamp(16px, 4vw, 18px);
    transition: color 0.3s ease;
    position: relative;
}

.t-h-phone::after,
.t-h-mail::after {
    content: "";
    display: inline-block;
    width: 25px;
    height: 25px;
    background-image: url('../images/icons/tel.svg');
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
}

.t-h-mail::after {
    background-image: url('../images/icons/mail.svg');
}

.t-h-phone:hover,
.t-h-mail:hover {
    color: var(--color-primary);
}

.header__nav .t-h-mail {
    display: none;
}

.header__slogan-wrap::after {
    position: relative;
    content: "";
    display: inline-block;
    width: 1px;
    height: auto;
    background-color: var(--color-border);
    top: 0;
    left: -50%;
    transform: translateX(50%);
}

.header__callback-btn {
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: clamp(14px, 4vw, 18px);
    cursor: pointer;
    transition: background 0.3s ease;
}

.header__callback-btn:hover {
    background-color: #1a4a8f;
}

/* Navigation */
.header__nav {
    padding: 15px 0;
}

.nav__list {
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 40px;
}

.nav__list>li>a {

    color: var(--color-text);
    font-weight: 500;
    font-size: 16px;
    padding: 10px 0;
    transition: color 0.3s ease;
    position: relative;
}

.nav__list>li>a:hover {
    color: var(--color-primary);
}

.nav__list>li>a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: width 0.3s ease;
}

.nav__list>li>a:hover::after {
    width: 100%;
}

/* Dropdown Menu */
.nav__dropdown {
    position: relative;
}

.nav__dropdown::after {
    position: absolute;
    content: "";
    top: 40%;
    right: -30%;
    width: 7px;
    height: 7px;
    border: solid var(--color-text);
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(45deg);
    transform-origin: center;
    -webkit-transform: rotate(45deg);
    cursor: pointer;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, top 0.3s ease;
}

.nav__dropdown:hover::after {
    transform: rotate(-135deg);
    top: 50%;
}

.dropdown__menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--color-white);
    min-width: 240px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    list-style: none;
    margin: 0;
    padding: 10px 0;
    z-index: 1001;
}

.nav__dropdown:hover .dropdown__menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown__menu li {
    margin: 0;
}

.dropdown__menu a {
    display: block;
    padding: 12px 20px;
    color: var(--color-text);
    font-size: 16px;
    transition: background 0.3s ease, color 0.3s ease;
}

.dropdown__menu a:hover {
    background-color: var(--color-bg);
    color: var(--color-primary);
}


.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 38px;
    height: 28px;
    cursor: pointer;
    z-index: 1000;
}

.burger-menu span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Анимация бургера в крестик */
.burger-menu.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.header__nav .header__callback-btn {
    display: none;
}

/* HEADER */


/*section-top*/

.main-banner {
    background: linear-gradient(135deg, var(--color-bg) 0%, #f8fafc 50%, var(--color-white) 100%);
    padding: 60px 0 80px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.banner-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.banner-text {
    max-width: 600px;
}

.banner-title {
    font-size: clamp(24px, 5vw, 38px);
    font-weight: 800;
    line-height: 1.1;
    color: var(--color-text);
    margin-bottom: 20px;
}

.title-accent {
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.banner-subtitle {
    font-size: clamp(18px, 4vw, 20px);
    line-height: 1.4;
    color: var(--color-text);
    opacity: 0.8;
    margin-bottom: 20px;
}

.banner-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: var(--color-text);
    border-radius: 16px;
    background-color: var(--color-bg);
    padding: 16px;
    border: solid 1px var(--color-border);
    text-align: left;
}

.banner-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-banner {
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary), #1a4a8f);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(32, 86, 167, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(32, 86, 167, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--color-text);
    border: 2px solid var(--color-border);
}

.btn-secondary:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    transform: translateY(-2px);
}

/* Визуальная часть */
.banner-visual {
    position: relative;
}

.banner-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);

    transform: perspective(1000px) rotateY(0) rotateX(0);
    transition: transform 0.5s ease;
}

.banner-image:hover {
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
}

.banner-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

.banner-stats {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-around;
    background: var(--color-white);
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--color-border);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: clamp(18px, 5vw, 24px);
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 4px;
}

.stat-text {
    font-size: 13px;
    color: var(--color-text);
    opacity: 0.7;
    font-weight: 500;
}

.banner-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary), transparent);
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.banner-shape-2 {
    width: 150px;
    height: 150px;
    bottom: 24%;
    left: 4%;
    animation-delay: 2s;
    background: linear-gradient(135deg, var(--color-accent), transparent);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}


/*section-top*/



/* Секция преимуществ advantages */
.section-advantages {
    background-color: var(--color-bg);
    padding: 60px 0;
}

.advantages-title {
    text-align: center;
    margin-bottom: 50px;
    color: var(--color-text);
    font-size: clamp(22px, 4vw, 36px);
    font-weight: 700;
}

.advantages-inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.advantages-item {
    background-color: var(--color-white);
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--color-border);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 288px
}

.advantages-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--color-primary);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.advantages-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.advantages-item:hover::before {
    transform: scaleY(1);
}

.advantages-item img {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    border-radius: 8px;
    padding: 12px;
    border: solid 2px var(--color-primary);
}

.advantages-item-title {
    font-size: clamp(20px, 4vw, 24px);
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 12px;
    line-height: 1.3;
}

.advantages-item-text {
    color: var(--color-text);
    opacity: 0.8;
    line-height: 1.5;
    font-size: 16px;
}


/* Секция преимуществ advantages */

/* Секция цен pricing*/
.section-pricing {
    background-color: var(--color-white);
    padding: 60px 0;
}

.pricing-title {
    text-align: center;
    margin-bottom: 10px;
    color: var(--color-text);
    font-size: clamp(22px, 4vw, 36px);
    font-weight: 700;
}

.pricing-subtitle {
    text-align: center;
    margin-bottom: 40px;
    color: var(--color-text);
    opacity: 0.8;
    font-size: clamp(16px, 4vw, 18px);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 20px;
}

.pricing-card {
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pricing-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.pricing-card--special {
    border: 2px solid var(--color-accent);
    background: linear-gradient(135deg, #fffaf5 0%, var(--color-white) 100%);
}

.pricing-card--special::before {
    content: "Выгодно";
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--color-accent);
    color: var(--color-white);
    padding: 5px 40px;
    font-size: 12px;
    font-weight: 600;
    transform: rotate(45deg);
}

.pricing-card-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--color-border);
}

.pricing-card-title {
    font-size: clamp(20px, 4vw, 24px);
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 8px;
}

.pricing-card-desc {
    color: var(--color-text);
    opacity: 0.7;
    font-size: 16px;
}

.pricing-options {
    margin-bottom: 25px;
}

.pricing-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--color-border);
}

.pricing-option:last-child {
    border-bottom: none;
}

.option-volume {
    color: var(--color-text);
    font-weight: 500;
}

.option-price {
    color: var(--color-primary);
    font-weight: 600;
    font-size: clamp(18px, 4vw, 20px);
}

.pricing-custom {
    text-align: center;
    margin-bottom: 25px;
    padding: 20px 0;
}

.custom-price {
    font-size: clamp(20px, 4vw, 24px);
    font-weight: 600;
    color: var(--color-accent);
    margin-bottom: 10px;
}

.custom-desc {
    color: var(--color-text);
    opacity: 0.7;
    font-size: 14px;
}

.pricing-btn {
    width: 100%;
    background-color: var(--color-primary);
    color: var(--color-white);
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-weight: 600;
    font-size: clamp(16px, 4vw, 20px);
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing-btn:hover {
    background-color: #1a4a8f;
    transform: translateY(-2px);
}

.pricing-btn--accent {
    background-color: var(--color-accent);
}

.pricing-btn--accent:hover {
    background-color: #41a61e;
}

/* Секция цен pricing*/

/* Стили для базовой сетки карточек production*/
.production {
    padding: 60px 0;
    background: var(--color-bg);
}

.production-header {
    text-align: center;
    margin-bottom: 50px;
}

.production-subtitle {
    color: var(--color-primary);
    margin-bottom: 20px;
    font-weight: 500;
}

.production-description {
    color: var(--color-text);
    opacity: 0.8;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
}

.production-grid {
    display: grid;
    /* grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); */
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.product-card {
    background: var(--color-white);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--color-border);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.product-card__image {
    object-fit: cover;
    height: 212px;
}

.product-card__image img {
    border-radius: 12px 12px 0 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card__title {
    font-size: clamp(16px, 4vw, 18px);
    font-weight: 600;
    color: var(--color-text);
    text-align: center;
    line-height: 1.4;
    padding: 10px;
}

.production-more {
    text-align: center;
}

.production-more__btn {
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.production-more__btn:hover {
    background: #1a4a8f;
}


/* Стили для базовой сетки карточек production*/


/* Секция FAQ */
.faq-section {
    background: var(--color-white);
    padding: 60px 0;
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

/* Аккордеон */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto 40px;
}

.faq-item {
    border: 1px solid var(--color-border);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-item:hover {
    border-color: var(--color-primary);
}

.faq-question {
    width: 100%;
    background: var(--color-white);
    border: none;
    padding: 20px 25px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: var(--color-bg);
}

.faq-subtitle {
    max-width: 700px;
}

.faq-question-text {
    font-size: clamp(16px, 4vw, 20px);
    font-weight: 600;
    color: var(--color-text);
    margin-right: 20px;
}

.faq-icon {
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: var(--color-bg);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 20px 25px;
    margin: 0;
    color: var(--color-text);
    line-height: 1.6;
    opacity: 0.9;
}

/* CTA блок */
.faq-cta {
    text-align: center;
    padding: 30px;
    background: var(--color-bg);
    border-radius: 12px;
    max-width: 500px;
    margin: 0 auto;
}

.faq-cta p {
    margin-bottom: 20px;
    color: var(--color-text);
    font-size: clamp(16px, 4vw, 18px);
}

.faq-cta-btn {
    background: var(--color-accent);
    color: var(--color-white);
    border: none;
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 600;
    font-size: clamp(16px, 4vw, 18px);
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-cta-btn:hover {
    background: #41a61e;
}

/* Секция FAQ */

/* Секция partners */
.partners-section {
    padding: 60px 0;
    background: var(--color-bg);
}

.partners-title {
    margin-bottom: 10px;
}

.partners-swiper {
    padding: 30px 0;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    padding: 20px;
    background: var(--color-white);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--color-border);
    cursor: pointer;
}

.partner-logo img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: -4px;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: var(--color-border);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background-color: var(--color-primary);
}

/* Секция partners */

/* Секция form */

.elegant-form {
    background-color: linear-gradient(135deg, var(--color-white) 0%, var(--color-bg) 100%);
    padding: 80px 0;
    position: relative;
}

.elegant-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-border), transparent);
}

.elegant-form__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.elegant-form__content {
    padding-right: 40px;
}

.elegant-form__title {
    font-size: clamp(22px, 4vw, 36px);
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 20px;
}

.elegant-form__subtitle {
    font-size: clamp(16px, 4vw, 18px);
    color: var(--color-text);
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 40px;
}

.elegant-form__features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.elegant-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    border-radius: 16px;
    background-color: var(--color-bg);
    padding: 16px;
    border: solid 1px var(--color-border);
}

.feature-icon {
    width: 24px;
    height: 24px;
    background: var(--color-primary);
    border-radius: 50%;
    min-width: 24px;
}

.feature-text {
    color: var(--color-text);
    font-weight: 500;
}

.elegant-form__wrapper {
    background: var(--color-white);
    padding: 50px 40px;
    border-radius: 16px;
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.08),
        0 2px 10px rgba(0, 0, 0, 0.03);
    border: 1px solid var(--color-border);
    position: relative;
    border-top: solid 3px var(--color-primary);
}

.elegant-form__form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-group {
    position: relative;
}

.elegant-group input,
.elegant-group textarea {
    width: 100%;
    padding: 16px 0 8px;
    border: none;
    border-bottom: 2px solid var(--color-border);
    background: transparent;
    font-size: clamp(16px, 4vw, 20px);
    color: var(--color-text);
    transition: all 0.3s ease;
    resize: none;
}

.elegant-group input:focus,
.elegant-group textarea:focus {
    border-bottom-color: var(--color-primary);
}

.elegant-group label {
    position: absolute;
    top: 16px;
    left: 0;
    color: var(--color-text);
    opacity: 0.6;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    pointer-events: none;
}

.elegant-group textarea {
    height: 50px;
}

.elegant-group input:focus+label,
.elegant-group textarea:focus+label,
.elegant-group input:not(:placeholder-shown)+label,
.elegant-group textarea:not(:placeholder-shown)+label {
    top: -5px;
    font-size: 14px;
    color: var(--color-primary);
    opacity: 1;
}

.elegant-submit-btn {
    background: linear-gradient(135deg, var(--color-primary), #1a4a8f);
    color: var(--color-white);
    border: none;
    padding: 18px 40px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.elegant-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.elegant-submit-btn:hover::before {
    left: 100%;
}

.elegant-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(32, 86, 167, 0.3);
}

/***********************************/
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 10px 0;
}

.checkbox-group input[type="checkbox"] {
    display: none;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    color: var(--color-text);
    line-height: 1.4;
    margin: 0;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid var(--color-border);
    border-radius: 3px;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.3s ease;
}

.checkbox-group input[type="checkbox"]:checked+.checkbox-label .checkmark {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.checkbox-group input[type="checkbox"]:checked+.checkbox-label .checkmark::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 1px;
    width: 6px;
    height: 10px;
    border: solid var(--color-white);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-group input[type="checkbox"]:focus+.checkbox-label .checkmark {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 2px rgba(32, 86, 167, 0.1);
}

.checkbox-label a{
    color: var(--color-primary);
}

/*****************************/

/* Секция form */

/* FOOTER */
.footer {
    background-color: var(--color-text);
    color: var(--color-white);
    padding: 50px 0 20px;
    margin-top: auto;
}

.footer__content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer__logo-img {
    width: 150px;
    height: 150px;
    margin-bottom: 20px;
}

.footer__slogan {
    margin-bottom: 25px;
    line-height: 1.5;
    opacity: 0.9;
}

.footer__menu {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__menu-link {
    color: var(--color-white);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.footer__menu-link:hover {
    color: var(--color-accent);
}

.footer__title {
    font-size: clamp(16px, 4vw, 18px);
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--color-white);
    position: relative;
    display: block;
}

.footer__title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--color-primary);
}

.footer__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: clamp(16px, 4vw, 18px);
}

.footer__link:hover {
    color: var(--color-primary);
    /* padding-left: 5px; */
}

.footer__contacts {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer__contact-icon {
    width: 26px;
}

.footer__contact-link,
.footer__contact-text {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: clamp(16px, 4vw, 18px);
    line-height: 1.4;
}

.footer__contact-link:hover {
    color: var(--color-primary);
}

.footer__callback-btn {
    background-color: var(--color-primary);
    color: var(--color-white);
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: clamp(16px, 4vw, 18px);
    cursor: pointer;
    transition: background 0.3s ease;
    width: 100%;
}

.footer__callback-btn:hover {
    background-color: #1a4a8f;
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

.footer__copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/*footer*/

/* Кнопка "Наверх" */
.scroll-to-top {
    position: fixed;
    bottom: 27px;
    right: 27px;
    width: 50px;
    height: 50px;
    background-color: var(--color-primary);
    color: var(--color-white);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(32, 86, 167, 0.3);
}

.scroll-to-top:hover {
    transform: translateY(-5px);
}

.scroll-to-top.visible {
    opacity: 0.8;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top.visible:hover {
    opacity: 1;
}

.scroll-to-top svg {
    transition: transform 0.3s ease;
}

.scroll-to-top:hover svg {
    transform: translateY(-2px);
}

/* Кнопка "Наверх" */



/* Страница контактов */
.contacts-page {
    padding: 60px 0;
    background: var(--color-bg);
}

.contacts-header {
    text-align: center;
    margin-bottom: 60px;
}

.contacts-title {
    font-size: clamp(22px, 4vw, 36px);
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 15px;
}

.contacts-subtitle {
    color: var(--color-text);
    opacity: 0.8;
}

.contacts-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.contacts-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-card {
    background: var(--color-white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--color-border);
}

.contact-card-title {
    font-size: clamp(20px, 4vw, 24px);
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--color-border);
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: clamp(16px, 4vw, 18px);
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 8px;
}

.contact-details a {
    display: block;
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 4px;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--color-accent);
}

.contact-details p {
    color: var(--color-text);
    margin-bottom: 4px;
}

.additional-info {
    background: var(--color-white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--color-border);
}

.additional-info h3 {
    font-size: clamp(20px, 4vw, 24px);
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 20px;
}

.requisites p {
    color: var(--color-text);
    margin-bottom: 8px;
}

/* Правая колонка - Форма */
.contact-form-card {
    background: var(--color-white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--color-border);
    border-top: 3px solid var(--color-primary);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.form-title {
    font-size: clamp(20px, 4vw, 24px);
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 10px;
}

.form-subtitle {
    color: var(--color-text);
    opacity: 0.8;
    margin-bottom: 30px;
}

/* Секция с картой */
.contacts-map-section {
    margin-top: 40px;
}

.map-title {
    font-size: clamp(20px, 4vw, 24px);
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 20px;
    text-align: center;
}

.map-container {
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--color-border);
    background: var(--color-white);
}

.map-placeholder {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg);
    color: var(--color-text);
}

.contact-item .social_media-wrap {
    gap: 20px;
}

.contact-item .social_media-wrap a {
    width: 50px;
}

/* Страница контактов */


/* Страница о компании */

.about-hero {
    padding: 80px 0;
    text-align: center;
}

.about-hero__content {
    margin: 0 auto;
}

.about-hero__title {
    font-size: clamp(22px, 4vw, 36px);
    font-weight: 800;
    margin-bottom: 20px;
}

.about-hero__subtitle {
    font-size: clamp(18px, 4vw, 20px);
    opacity: 0.9;
}

.about-text-columns {
    padding: 60px 0;
    background: var(--color-white);
}

.text-columns__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.text-column__title {
    font-size: clamp(20px, 4vw, 24px);
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.text-column__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--color-primary);
    border-radius: 2px;
}

.text-column__content p {
    margin-bottom: 20px;
}

.text-column__content strong {
    color: var(--color-primary);
    font-weight: 600;
}

/* Секция с полным текстом */
.about-full-text {
    padding: 80px 0;
}

.full-text__content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.full-text__title {
    font-size: clamp(22px, 4vw, 36px);
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.full-text__title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--color-primary);
    border-radius: 2px;
}

.full-text__body {
    text-align: left;
    line-height: 1.7;
    color: var(--color-text);
    font-size: clamp(16px, 4vw, 18px);
}

.full-text__body p {
    margin-bottom: 25px;
}



/* Преимущества */
.about-advantages {
    padding: 80px 0;
    background: var(--color-bg);
}

.advantages-title {
    font-size: clamp(22px, 4vw, 36px);
    font-weight: 700;
    color: var(--color-text);
    text-align: center;
    margin-bottom: 50px;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.advantage-card {
    background: var(--color-white);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--color-border);
    transition: all 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-primary), #1a4a8f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--color-white);
}

.advantage-title {
    font-size: clamp(20px, 4vw, 24px);
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 15px;
}

.advantage-text {
    color: var(--color-text);
    opacity: 0.8;
    line-height: 1.6;
}

.text-column__image img {
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
}


.text-column__content .elegant-form__features {
    margin-bottom: 20px;
}

.steel-specs-section {
    padding: 80px 0;
    background: var(--color-white);
}

.steel-specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.specs-title {
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 10px;
}

.specs-subtitle {
    color: var(--color-text);
    opacity: 0.7;
    margin-bottom: 40px;
    font-size: 18px;
}

.thickness-scales {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 30px;
}

.thickness-scale {
    padding: 20px;
    background: var(--color-bg);
    border-radius: 12px;
    border-left: 4px solid var(--color-primary);
}

.scale-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.scale-value {
    font-size: clamp(18px, 4vw, 20px);
    font-weight: 700;
    color: var(--color-primary);
}

.scale-label {
    font-size: 15px;
    color: var(--color-text);
    opacity: 0.8;
    font-weight: 500;
}

.scale-bar {
    height: 6px;
    background: var(--color-border);
    border-radius: 3px;
    overflow: hidden;
}

.scale-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    border-radius: 3px;
    transition: width 0.5s ease;
}

.specs-note {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
}

.specs-note p {
    margin: 0;
    font-weight: 500;
}

.custom-block {
    background: var(--color-bg);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--color-border);
    position: sticky;
    top: 100px;
}

.custom-badge {
    display: inline-block;
    background: var(--color-accent);
    color: var(--color-white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.custom-title {
    font-size: clamp(20px, 4vw, 28px);
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 30px;
    line-height: 1.2;
}

.custom-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.custom-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-number {
    width: 40px;
    height: 40px;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

.feature-content div {
    font-size: clamp(16px, 4vw, 18px);
    font-weight: 600;
    color: var(--color-text);
    margin: 0 0 5px 0;
}

.feature-content p {
    color: var(--color-text);
    opacity: 0.8;
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
}

.custom-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.custom-btn {
    padding: 15px 25px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.custom-btn.primary {
    background: linear-gradient(135deg, var(--color-primary), #1a4a8f);
    color: var(--color-white);
}

.custom-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(32, 86, 167, 0.3);
}

.custom-btn.secondary {
    background: transparent;
    color: var(--color-text);
    border: 2px solid var(--color-border);
}

.custom-btn.secondary:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

/* Анимации */
.thickness-scale {
    transition: all 0.3s ease;
}

.thickness-scale:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.custom-feature {
    transition: all 0.3s ease;
}

.custom-feature:hover {
    transform: translateX(5px);
}



/* Секция изделий на главной странице */
.home-products-section {
    padding: 80px 0;
    background: var(--color-white);
}

.home-products-header {
    text-align: center;
    margin-bottom: 50px;
}

.home-products-title {
    font-size: clamp(22px, 4vw, 36px);
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.home-products-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--color-primary);
    border-radius: 2px;
}

.home-products-subtitle {
    font-size: clamp(18px, 4vw, 20px);
    color: var(--color-text);
    opacity: 0.7;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

.home-products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.home-product-item {
    background: var(--color-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--color-border);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.home-product-item:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.product-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 400px;
}

.product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.home-product-item:hover .product-image-wrapper img {
    transform: scale(1.05);
}

.product-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--color-white);
    padding: 30px 25px 20px;
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.3s ease;
}

.home-product-item:hover .product-overlay {
    transform: translateY(0);
    opacity: 1;
}

.product-overlay .title-img {
    font-size: clamp(18px, 4vw, 20px);
    font-weight: 600;
    margin: 0;
    color: var(--color-white);
}


.home-products-actions {
    text-align: center;
}

.home-products-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--color-primary), #1a4a8f);
    color: var(--color-white);
    padding: 16px 35px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.home-products-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.home-products-btn:hover::before {
    left: 100%;
}

.home-products-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(32, 86, 167, 0.4);
}

.home-products-btn svg {
    transition: transform 0.3s ease;
}

.home-products-btn:hover svg {
    transform: translateX(5px);
}


/* Упрощенные стили для модального окна */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-container {
    background-color: var(--color-white);
    border-radius: 16px;
    padding: 30px;
    max-width: 450px;
    width: 100%;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--color-border);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-container {
    transform: scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.modal-icon.success {
    width: 60px;
    height: 60px;
    background-color: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
}

.modal-close {
    background-color: var(--color-bg);
    border: none;
    border-radius: 8px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--color-text);
    flex-shrink: 0;
}

.modal-close:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: rotate(90deg);
}

.modal-content {
    margin-bottom: 25px;
    text-align: center;
}

.modal-title {
    font-size: clamp(20px, 4vw, 24px);
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 15px;
}

.modal-text {
    color: var(--color-text);
    opacity: 0.8;
    line-height: 1.6;
    margin: 0;
    font-size: 16px;
}

.modal-actions {
    text-align: center;
}

.modal-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 140px;
}

.modal-btn.primary {
    background: linear-gradient(135deg, var(--color-primary), #1a4a8f);
    color: var(--color-white);
}

.modal-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(32, 86, 167, 0.3);
}

/********************************/
/* Стили для формы в модалке */
.modal-form {
    margin-top: 20px;
}

.modal-form .form-group {
    position: relative;
    margin-bottom: 25px;
}

.modal-form input {
    width: 100%;
    padding: 15px 0 8px;
    border: none;
    border-bottom: 2px solid var(--color-border);
    background: transparent;
    font-size: 16px;
    color: var(--color-text);
    transition: all 0.3s ease;
}

.modal-form input:focus {
    border-bottom-color: var(--color-primary);
}

.modal-form label {
    position: absolute;
    top: 15px;
    left: 0;
    color: var(--color-text);
    opacity: 0.6;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    pointer-events: none;
}

.modal-form input:focus+label,
.modal-form input:not(:placeholder-shown)+label {
    top: -5px;
    font-size: 14px;
    color: var(--color-primary);
    opacity: 1;
}

.modal-btn.full-width {
    width: 100%;
    margin-top: 10px;
}

.privacy-policy-full-text .full-text__content {
    max-width: 100%;
}

.privacy-policy-full-text .full-text__content .full-text__body p {
    margin-bottom: 8px;
}

.privacy-policy-full-text .full-text__content .full-text__body h2 {
    font-size: clamp(18px, 5vw, 24px);
    margin-top: 24px;
}

.privacy-policy-full-text .full-text__content .full-text__body ul li {
    padding-left: 20px; 
    position: relative; 
}

.privacy-policy-full-text .full-text__content .full-text__body ul li::before {
    content: ''; 
    position: absolute; 
    left: 0; 
    top: 50%; 
    transform: translateY(-50%); 
    width: 8px; 
    height: 8px;
    background-color: var(--color-primary);
    border-radius: 50%; 
}

.privacy-policy-full-text{
    padding-bottom: 40px;
}