/* Основные стили проекта */

/* 
ВАЖНО: Повторяющиеся блоки на всех страницах должны быть одинаковыми:
- Header (header, header__container, logo, nav, btn--primary)
- Footer (footer, footer__container, footer__content, footer__left, footer__nav, footer__right)
- Форма заявки (contact-form-section, contact-form-wrapper) - использует изображение ./img/contact-form-image.jpg
Все изменения в этих блоках должны применяться ко всем страницам одновременно.
*/

:root {
    --color-primary: #203465;
    --color-text: #1a1f25;
    --color-text-light: #959da7;
    --color-text-lighter: #848b94;
    --color-white: #ffffff;
    --color-bg: #f6f9ff;
    --color-bg-dark: #203465;
    --color-border: rgba(255, 255, 255, 0.35);
    --shadow: 0px 12px 25.9px -2px rgba(0, 0, 0, 0.05);
}

html {
    overflow-x: hidden;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--color-bg);
    color: var(--color-text);
    padding-top: 100px;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

.container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 ;
    box-sizing: border-box;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 0 20px;
    z-index: 1000;
    transition: transform 0.3s ease;
}

.header--hidden {
    transform: translateY(-100%);
}

.header__container {
    max-width: 100%;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 20px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: var(--shadow);
    margin: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8.531px;
    text-decoration: none;
    color: inherit;
}

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

a.logo:hover {
    opacity: 0.9;
}

.logo__icon {
   
}

.logo__text {
    display: flex;
    flex-direction: column;
    gap: 5.001px;
}

.logo__text-img {
    width: 105.313px;
}

.logo__line {
    width: 77.661px;
    height: 4.707px;
}

.logo--center {
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 34px;
}

.nav__link {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.1;
    color: var(--color-text);
    text-decoration: none;
    letter-spacing: 0.14px;
    transition: opacity 0.3s;
}

.nav__link:hover {
    opacity: 0.7;
}

.nav__link--active {
    color: var(--color-primary);
    font-weight: 600;
}

.nav__link--button {
    display: none;
}

.header__button {
    display: block;
}

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

.burger-menu span {
    width: 100%;
    height: 3px;
    background: var(--color-text);
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

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

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Buttons */
.btn {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.5;
    padding: 19px 27px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

a .btn {
    text-decoration: none;
    width: auto;
}

a {
    text-decoration: none;
    display: inline-block;
}

.btn--primary {
    background: var(--color-primary);
    color: var(--color-white);
}

.btn--primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.btn--white {
    background: var(--color-white);
    color: var(--color-primary);
    padding: 20px 30px;
    border-radius: 13px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.16px;
    text-decoration: none;
    display: inline-block;
}

.btn--white:hover {
    opacity: 0.9;
}

a .btn--white {
    text-decoration: none;
}

/* Hero Section */
.hero {
    position: relative;
    margin: 56px auto 40px;
    max-width: 1440px;
    width: calc(100% - 40px);
    border-radius: 45px;
    overflow: visible;
    padding: 0;
    box-sizing: border-box;
}

.hero__container {
    display: flex;
    align-items: stretch;
    min-height: 500px;
    border-radius: 45px;
    overflow: hidden;
}

.hero__left {
    flex: 1;
    background: #2C406B;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    box-sizing: border-box;
}

.hero__right {
    flex: 1;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero__title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 50px;
    line-height: 1.2;
    color: var(--color-white);
    letter-spacing: -1px;
    margin: 0;
    text-align: left;
}

.hero__description {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 17px;
    line-height: 27px;
    color: var(--color-white);
    letter-spacing: -0.17px;
    margin: 0;
    max-width: 100%;
    text-align: left;
}

.hero__highlight {
    text-decoration: underline;
}

.hero__btn {
    align-self: flex-start;
    margin-top: 10px;
}

.hero__stats {
    display: flex;
    gap: 20px;
    margin-top: -40px;
    padding: 0 20px;
    position: relative;
    z-index: 10;
    justify-content: center;
    flex-wrap: wrap;
}

.hero__stat-card {
    background: var(--color-white);
    border-radius: 16px;
    padding: 20px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    min-width: 180px;
    box-sizing: border-box;
}

.hero__stat-label {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 12px;
    line-height: 1.2;
    color: var(--color-text-lighter);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.hero__stat-number {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 1;
    color: var(--color-text);
    margin: 0;
}

/* About Hero Section */
.about-hero {
    position: relative;
    margin: 56px auto 40px;
    max-width: 1440px;
    width: calc(100% - 40px);
    border-radius: 45px;
    overflow: hidden;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.about-hero__bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.about-hero__bg-image {
    width: 100%;
    height: 100%;
 
}

.about-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1160px;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.about-hero__title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 50px;
    line-height: 1.2;
    color: var(--color-white);
    letter-spacing: -1px;
    margin: 0;
    text-align: center;
}

.about-hero__description {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 17px;
    line-height: 27px;opacity: 0.75;
    color: var(--color-white);
    letter-spacing: -0.17px;
    margin: 0;
    text-align: center;
}

/* Team Section */
.team-section {
    padding: 60px 0;
    margin-bottom: 35px;
}

.team-section__content {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    background: var(--color-white);
    border-radius: 40px;
    padding: 50px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 50px;
    box-sizing: border-box;
}

.team-section__text {
    flex: 1;
    max-width: 673px;
}

.section-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 46px;
    line-height: 1;
    color: var(--color-text);
    letter-spacing: -0.74px;
    margin: 0 0 0px 0;
}

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

.section-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 17px;
    line-height: 27px;
    color: var(--color-text-lighter);
    letter-spacing: -0.17px;
    margin: 0;
}

.section-subtitle--white {
    color: #dedede;
}

.team-section__description {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 17px;
    padding-top: 25px;
    line-height: 27px;
    color: var(--color-text-lighter);
    letter-spacing: -0.17px;
}

.team-section__description p {
    margin: 0 0 20px 0;
}

.team-section__image {
    flex: 1;
    max-width: 598px;
    position: relative;
}

.team-section__image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 30px;
}

.team-section__slider-controls {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-top: 16px;
}

.slider-progress {
    width: 86px;
    height: 8px;
    background: rgba(32, 52, 101, 0.13);
    border-radius: 100px;
    position: relative;
    overflow: hidden;
}

.slider-progress__bar {
    position: absolute;
    left: 0;
    top: 0;
    width: 46px;
    height: 100%;
    background: var(--color-primary);
    border-radius: 47px;
}

.slider-dots {
    display: flex;
    gap: 11px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(32, 52, 101, 0.13);
    cursor: pointer;
    transition: background 0.3s;
}

.slider-dot:hover {
    background: var(--color-primary);
}

/* Testimonials Section */
.testimonials-section {
    padding: 60px 0;
    margin-bottom: 35px;
}

.testimonials-section .container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 47px;
}

.testimonials-header .section-title {
    font-size: 47px;
    letter-spacing: -0.94px;
    margin-bottom: 16px;
    text-align: center;
}

.testimonials-header .section-subtitle {
    max-width: 844px;
    width: 100%;
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.testimonial-card {
    background: var(--color-white);
    border-radius: 20px;
    padding: 25px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.testimonial-card__header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.testimonial-card__avatar {
    width: 40px;
    height: 40px;
    border-radius: 20px;
    object-fit: cover;
}

.testimonial-card__info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.testimonial-card__name {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.4;
    color: #21272d;
    letter-spacing: -0.5px;
    margin: 0;
}

.testimonial-card__stars {
    width: 100px;
   
}

.testimonial-card__title {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.4;
    padding-bottom: 8px;
    color: #21272d;
    margin: 0;
}

.testimonial-card__text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 24px;
    color: var(--color-text-light);
    letter-spacing: -0.17px;
    margin: 0;
}

/* Certificates Section */
.certificates-section {
    padding: 60px 0;
    margin-bottom: 35px;
}

.certificates-section .container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
}

.certificates-header {
    text-align: center;
    margin-bottom: 60px;
}

.certificates-header .section-title {
    font-size: 50px;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

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

.certificate-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    text-align: center;
}

.certificate-card__image {
    width: 88px;
    height: 88px;
    border-radius: 10px;
    object-fit: cover;
    
}

.certificate-card__text {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 27px;
    color: #4e5258;
    letter-spacing: -0.2px;
    margin: 0;
}

/* Contacts Section */
.contacts-section {
    padding: 60px 0;
    margin-bottom: 35px;
}

.contacts-section .container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
}

.contacts-card {
    background: var(--color-white);
    border-radius: 40px;
    padding: 60px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

.contacts-card__top {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    gap: 20px;
    text-align: left;
}

.contacts-card__title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 37px;
    line-height: 1;
    color: var(--color-text);
    letter-spacing: -0.74px;
    margin: 0;
    text-align: center;
}

.contacts-card__location {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    text-align: left;
}

.contacts-card__location-header {
    display: flex;
    align-items: center;
    gap: 9px;
    justify-content: center;
}

.contacts-card__location-icon {
    width: 28.008px;
    height: 29.875px;
    flex-shrink: 0;
}

.contacts-card__location-title {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 18.628px;
    line-height: 1;
    color: #00aeef;
    letter-spacing: -0.1863px;
    margin: 0;
}

.contacts-card__address {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 17px;
    line-height: 27px;
    color: var(--color-text-lighter);
    letter-spacing: -0.17px;
    text-align: left;
}

.contacts-card__address p {
    margin: 0 0 7px 0;
}

.contacts-card__address p:last-child {
    margin-bottom: 0;
}

.contacts-card__map {
    background: #eff2f9;
    border: 1px solid rgba(226, 226, 226, 0.5);
    border-radius: 20px;
    height: 494px;
    overflow: hidden;
    width: 100%;
}


.contacts-card__map-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Contact Form Section */
.contact-form-section {
    padding: 60px 0;
    margin-bottom: 35px;
}

.contact-form-section .container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
}

.contact-form-wrapper {
    background: var(--color-primary);
    border-radius: 45px;
    padding: 50px;
    position: relative;
    overflow: hidden;
    min-height: 645px;
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    display: flex;
    align-items: flex-start;
    gap: 0;
    flex-wrap: nowrap;
}

.contact-form {
    max-width: 60%;
    width: 100%;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    padding-right: 50px;
    box-sizing: border-box;
}

.contact-form__image {
    position: absolute;
    right: 0;
    top: 0;
    width: 40%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    border-radius: 0 45px 45px 0;
}

.contact-form__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 35px;
    width: 100%;
}

.form__columns {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

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

.form__column--left {
    max-width: 50%;
    flex: 0 0 50%;
    width: 100%;
}

.form__column--left .form {
    width: 100%;
}

.form__column--right {
    max-width: 50%;
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.form__column--right .form {
    width: 100%;
}

.form__row {
    display: flex;
    gap: 68px;
}

.form__group {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.form__group--textarea {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form__group--textarea .form__textarea {
    flex: 1;
    min-height: 194px;
}

.form__group--consent {
    gap: 0;
}

.form__label {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1;
    color: var(--color-white);
    letter-spacing: -0.21px;
}

.form__input,
.form__select,
.form__textarea {
    background: transparent;
    border: 1px solid var(--color-border);
    border-radius: 10px;
    padding: 17px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: var(--color-white);
    letter-spacing: -0.21px;
    width: 100%;
    box-sizing: border-box;
}

.form__input::placeholder,
.form__textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form__select {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10L2 5H12L7 10Z' fill='white' fill-opacity='0.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 17px center;
    padding-right: 40px;
}

.form__textarea {
    min-height: 194px;
    resize: none;
}

.form__consent {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    user-select: none;
}

.form__consent-input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.form__consent-box {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    flex: 0 0 20px;
    border: 1px solid var(--color-border);
    border-radius: 6px;
    background: transparent;
    transition: background-color 0.2s ease, border-color 0.2s ease;
    position: relative;
}

.form__consent-input:checked + .form__consent-box {
    background: var(--color-white);
    border-color: var(--color-white);
}

.form__consent-input:checked + .form__consent-box::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid var(--color-primary);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.form__consent-input:focus-visible + .form__consent-box {
    outline: 2px solid rgba(255, 255, 255, 0.6);
    outline-offset: 2px;
}

.form__consent-text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

.form__consent-link {
    color: var(--color-white);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.btn--full {
    width: 100%;
    margin-top: 10px;
    display: block;
    box-sizing: border-box;
}

a .btn--full {
    width: 100%;
    display: block;
}

/* Local Solutions Section */
.local-solutions {
    max-width: 1440px;
    width: calc(100% - 40px);
    margin: 60px auto 35px;
    background: var(--color-primary);
    border-radius: 45px;
    padding: 50px;
    min-height: 600px;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
    display: flex;
    align-items: flex-start;
    gap: 0;
    flex-wrap: nowrap;
}

.local-solutions .container {
    position: relative;
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 0;
    flex-wrap: nowrap;
}

.local-solutions__content {
    max-width: 60%;
    width: 100%;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    padding-right: 50px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.local-solutions__content .logo {
    margin-bottom: 0;
}

.local-solutions__image {
    position: absolute;
    right: 0;
    top: 0;
    width: 40%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    border-radius: 0 45px 45px 0;
}

.local-solutions__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Footer */
.footer {
    background: var(--color-primary);
    padding: 50px 20px;
    margin-top: 100px;
}

.footer__container {
    max-width: 1400px;
    margin: 0 auto;
}

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

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

.footer__copyright {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 13px;
    line-height: 21px;
    color: var(--color-white);
}

.footer__nav {
    display: flex;
    gap: 104px;
}

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

.footer__link {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 17px;
    line-height: 1.1;
    color: var(--color-white);
    text-decoration: none;
    letter-spacing: 0.17px;
    transition: opacity 0.3s;
}

.footer__link:hover {
    opacity: 0.7;
}

.footer__right {
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-width: 204px;
}

.footer__social {
    display: flex;
    gap: 16px;
}

.footer__social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer__social-link img {
    width: 100%;
    height: 100%;
}

.footer__contacts {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer__contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer__contact-icon {
    width: 24px;
    height: 24px;
    background: var(--color-white);
    border-radius: 12px;
    padding: 2px;
}

.footer__contact-item span,
.footer__contact-item a {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14.6px;
    line-height: 1;
    color: var(--color-white);
}

/* 404 Error Page */
.error-404-section {
    padding: 100px 0;
    background: #f0f5ff;
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
}

.error-404-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
}

.error-404-text {
    flex: 1;
    max-width: 600px;
}

.error-404-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 80px;
    line-height: 1;
    color: var(--color-primary);
    letter-spacing: -2px;
    margin: 0 0 0px 0;
}

.error-404-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 60px;
    line-height: 1;
    opacity: 0.8;
    color: var(--color-primary);
    white-space: nowrap;
    letter-spacing: -1.5px;
    margin: 0 0 30px 0;
}

.error-404-description {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    opacity: 0.7;
    color: var(--color-text);
    letter-spacing: -0.18px;
    margin: 0 0 40px 0;
}

.error-404-visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.error-404-number {
    display: flex;
    align-items: center;
    gap: 30px;
    position: relative;
}

.error-404-number .digit-4 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 280px;
    line-height: 1;
    color: var(--color-primary);
    display: block;
    position: relative;
    text-shadow: 4px 4px 0px rgba(32, 52, 101, 0.2);
}

.error-404-number .digit-0 {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, #a8c8f0 0%, #7ba3d9 100%);
    border: 8px solid var(--color-primary);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(32, 52, 101, 0.3);
    animation: float 3s ease-in-out infinite;
}

.error-404-number .digit-0::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: repeating-linear-gradient(
        0deg,
        var(--color-primary) 0px,
        var(--color-primary) 15px,
        transparent 15px,
        transparent 30px
    );
    opacity: 0.6;
}

.error-404-number .digit-0::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 20px;
    background: radial-gradient(ellipse at center, rgba(168, 200, 240, 0.6) 0%, transparent 70%);
    border-radius: 50%;
    animation: glow 2s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes glow {
    0%, 100% {
        opacity: 0.6;
        transform: translateX(-50%) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translateX(-50%) scale(1.1);
    }
}

/* Rental Page Styles */

/* Rental Hero Section */
/* Hero Slider Section */
.hero-slider-section {
    position: relative;
    padding: 100px 0 35px;
    margin-bottom: 35px;
    overflow: hidden;
}

.hero-slider-header {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto 40px;
    padding: 0 20px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.hero-slider-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 50px;
    line-height: 1.2;
    color: var(--color-text);
    margin: 0;
    flex: 1;
}

.hero-slider {
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

.hero-slide {
    display: block;
    opacity: 0;
    transform: translateX(100%);
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.8s ease;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    visibility: hidden;
}

/* Активный слайд всегда виден */
.hero-slide.active {
    opacity: 1 !important;
    transform: translateX(0) !important;
    position: relative !important;
    visibility: visible !important;
}

.hero-slide.prev {
    transform: translateX(-100%);
    visibility: visible;
}

.hero-slider-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    z-index: 10;
    flex-shrink: 0;
}

.hero-slider-nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-white);
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.hero-slider-nav-btn:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: scale(1.1);
}

.rental-hero-section {
    padding: 100px 0 35px;
    margin-bottom: 35px;
}

.rental-hero-card {
    background: var(--color-white);
    border-radius: 40px;
    padding: 50px;
    box-shadow: var(--shadow);
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

.rental-hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.rental-hero-card--with-image .rental-hero-content {
    display: block;
}

.rental-hero-text {
    
    max-width: 800px;
}

.rental-hero-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 50px;
    line-height: 1.1;
    color: var(--color-text);
    letter-spacing: -1.2px;
    margin: 0 0 20px 0;
}

.rental-hero-description {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 17px;
    line-height: 27px;
    color: var(--color-text-lighter);
    letter-spacing: -0.17px;
    margin: 0 0 40px 0;
}

.rental-hero-btn {
    display: inline-flex;
    align-items: center;
}

.rental-hero-images {
    flex: 1;
    display: flex;
    gap: 20px;
    max-width: 600px;
}

.rental-hero-image-card {
    flex: 1;
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    overflow: hidden;
}

.rental-hero-image-card img {
    width: 86%;
    object-fit: cover;
    border-radius: 0;
    border-radius: 20px;
}

/* Rental Hero Card with Image (like contact-form-wrapper) */
.rental-hero-card--with-image {
    background: var(--color-white);
    border-radius: 40px;
    padding: 50px;
    box-shadow: var(--shadow);
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    gap: 0;
    flex-wrap: nowrap;
}

.rental-hero-card--with-image .rental-hero-content {
    max-width: 60%;
    width: 100%;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    padding-right: 50px;
    box-sizing: border-box;
}

.rental-hero-image {
    position: absolute;
    right: 0;
    top: 0;
    width: 40%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    border-radius: 0 40px 40px 0;
}

.rental-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Thermopatch Section */
.rfid-section {
    background: var(--color-primary);
    padding: 60px;
    border-radius: 45px;
    margin: 0 auto 35px;
    max-width: 1440px;
    width: calc(100% - 40px);
    box-sizing: border-box;
}

.rfid-content {
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}

.rfid-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
    text-align: left;
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.rfid-header-left {
    flex: 1;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    flex-direction: column;
}

.rfid-header-icons {
    display: flex;
    gap: 16px;
    align-items: center;
}

.rfid-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    color: var(--color-white);
    transition: all 0.3s;
}

.rfid-icon svg {
    width: 20px;
    height: 20px;
}

.rfid-features {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

.rfid-features-row {
    display: flex;
    flex-direction: row;
    gap: 40px;
    width: 100%;
}

.rfid-features-row:first-child {
    justify-content: flex-start;
    align-items: flex-start;
}

.rfid-features-row:last-child {
    justify-content: center;
    align-items: flex-start;
}

.rfid-feature {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 15px;
    flex: 1;
    width: auto;
    max-width: none;
}

.rfid-features-row:first-child .rfid-feature {
    max-width: none;
}

.rfid-features-row:last-child .rfid-feature {
    max-width: none;
}

.rfid-feature-number {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 38px;
    line-height: 1;
    color: #00AEEF;
    flex-shrink: 0;
}

.rfid-feature-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.rfid-feature-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 1.2;
    color: var(--color-white);
    margin: 0 0 10px 0;
    text-align: left;
}

.rfid-feature-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    text-align: left;
}

/* Catalog Section */
.catalog-section {
    padding: 80px 0;
    margin-bottom: 35px;
}

.catalog-title {
    text-align: center;
    margin-bottom: 60px;
    font-size: 50px;
}

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

.catalog-item {
    background: var(--color-white);
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 0;
    box-shadow: none;
    display: flex;
    flex-direction: row;
    gap: 0;
    overflow: hidden;
    align-items: center;
}

.catalog-item-image {
    width: 300px;
    min-width: 300px;
    height: 300px;
    border-radius: 0;
    overflow: hidden;
    background: #fff;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.catalog-item-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.catalog-item-content {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: flex-start;
}

.catalog-item-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 1.2;
    color: var(--color-text);
    margin: 0;
}

.catalog-item-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: var(--color-text);
    margin: 0;
}

/* Popular Models Features Section */
.popular-models-features {
    padding: 80px 0;
    background: #E8F4FD;
    margin-bottom: 35px;
}

.popular-models-features__title {
    text-align: center;
    margin-bottom: 60px;
    font-size: 50px;
}

.popular-models-features__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

.popular-models-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.popular-models-feature__icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.popular-models-feature__icon svg {
    width: 100%;
    height: 100%;
}

.popular-models-feature__text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: var(--color-text);
    margin: 0;
}

@media (max-width: 1024px) {
    .popular-models-features__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .popular-models-features__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .popular-models-features__title {
        font-size: 36px;
    }
}

/* How It Works Section */
.how-it-works-section {
    background: var(--color-primary);
    padding: 60px;
    border-radius: 45px;
    margin: 0 auto 35px;
    max-width: 1440px;
    width: calc(100% - 40px);
    box-sizing: border-box;
}

.how-it-works-content {
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}

.how-it-works-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
    text-align: left;
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.how-it-works-header-left {
    flex: 1;display: flex;
    gap: 20px;
    align-items: flex-start;
    flex-direction: column;
}

.how-it-works-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

.how-it-works-steps-row {
    display: flex;
    gap: 40px;
    width: 100%;
}

.how-it-works-steps-row:first-child {
    justify-content: flex-start;
}

.how-it-works-steps-row:last-child {
    justify-content: flex-start;
}

.how-it-works-step {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 15px;
    flex: 1;
    max-width: calc(50% - 20px);
}

.how-it-works-steps-row:last-child .how-it-works-step {
    max-width: 100%;
    width: 100%;
}

.step-number {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 38px;
    line-height: 1;
    color: #00AEEF;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.step-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 28px;
    line-height: 1.2;
    color: var(--color-white);
    margin: 0 0 10px 0;
    text-align: left;
}

.step-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 24px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    text-align: left;
}

/* Calculate Rental Section */
.calculate-rental-section {
    padding: 80px 0;
    margin-bottom: 35px;
}

.calculate-rental-wrapper {
    background: var(--color-primary);
    border-radius: 45px;
    padding: 50px;
    position: relative;
    overflow: hidden;
    min-height: 645px;
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    display: flex;
    align-items: flex-start;
    gap: 0;
}

.calculate-rental-form {
    max-width: 60%;
    width: 100%;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    padding-right: 50px;
    box-sizing: border-box;
}

/* Responsive */

@media (max-width: 1024px) {
    .team-section__content {
        flex-direction: column;
    }
    
    .team-section__image {
        max-width: 100%;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .certificates-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .local-solutions {
        padding: 30px 20px;
        flex-direction: column;
    }
    
    .local-solutions__content {
        max-width: 100%;
        width: 100%;
        padding-right: 0;
    }
    
    .local-solutions__image {
        position: relative;
        width: 100%;
        height: 300px;
        border-radius: 20px;
        margin-top: 20px;
    }
    
    .hero-slider-header {
        flex-direction: row;
        align-items: flex-start;
        gap: 20px;
    }
    
    .hero-slider-title {
        font-size: 36px;
        width: 100%;
    }
    
    .hero-slider-nav {
        gap: 15px;
        align-self: flex-end;
    }
    
    .hero-slider-nav-btn {
        width: 40px;
        height: 40px;
    }
    
    .rental-hero-card {
        flex-direction: column;
    }
    
    .rental-hero-content {
        max-width: 100%;
        padding-right: 0;
    }
    
    .rental-hero-images {
        max-width: 100%;
        flex-direction: column;
    }
    
    .rfid-features {
        grid-template-columns: 1fr;
    }
    
    .rfid-feature:nth-child(4),
    .rfid-feature:nth-child(5) {
        grid-column: span 1;
    }
    
    .rfid-header {
        flex-direction: column;
        gap: 30px;
    }
    
    .rfid-header-icons {
        align-self: flex-start;
    }
    
    .catalog-grid {
        grid-template-columns: 1fr;
    }
    
    .catalog-item {
        flex-direction: column;
    }
    
    .catalog-item-image {
        width: 100%;
        min-width: 100%;
        height: 300px;
    }
    
    .catalog-item-content {
        padding: 20px;
    }
    
    .how-it-works-content {
        flex-direction: column;
    }
    
    .how-it-works-steps {
        grid-template-columns: 1fr;
    }
    
    .how-it-works-image {
        max-width: 100%;
    }
    
    .calculate-rental-wrapper {
        flex-direction: column;
        padding: 30px 20px;
    }
    
    .calculate-rental-form {
        max-width: 100%;
        padding-right: 0;
    }
    
    .error-404-content {
        flex-direction: column;
        gap: 50px;
        text-align: center;
    }
    
    .error-404-title {
        font-size: 60px;
    }
    
    .error-404-subtitle {
        font-size: 45px;
    }
    
    .error-404-number .digit-4 {
        font-size: 180px;
    }
    
    .error-404-number .digit-0 {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 768px) {
    .hero__container {
        flex-direction: column;
    }
    
    .hero__left {
        padding: 40px 30px;
    }
    
    .hero__right {
        min-height: 300px;
    }
    
    .hero__title {
        font-size: 36px;
    }
    
    .hero__stats {
        margin-top: 20px;
        gap: 15px;
        flex-direction: column;
    }
    
    .hero__stat-card {
        width: 100%;
        padding: 15px 20px;
    }
    
    .hero__stat-number {
        font-size: 28px;
    }
    
    .header__container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
    }
    
    .header__button {
        display: none;
    }
    
    .burger-menu {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--color-white);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 30px 30px;
        gap: 20px;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
    }
    
    .nav.active {
        right: 0;
    }
    
    .nav__link {
        width: 100%;
        padding: 12px 0;
        font-size: 16px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .nav__link--button {
        display: block;
        margin-top: 20px;
    }
    
    .nav__link--button .btn {
        width: 100%;
    }
    
    .hero {
        margin-top: 20px;
        width: calc(100% - 20px);
    }
    
    body {
        padding-top: 100px;
    }
    
    .hero__container {
        flex-direction: column;
    }
    
    .hero__left {
        padding: 40px 30px;
    }
    
    .hero__right {
        min-height: 300px;
    }
    
    .hero__title {
        font-size: 32px;
    }
    
    .hero__stats {
        margin-top: 20px;
        gap: 15px;
        flex-direction: column;
        padding: 0 10px;
    }
    
    .hero__stat-card {
        width: 100%;
        padding: 15px 20px;
    }
    
    .hero__stat-number {
        font-size: 28px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .certificates-grid {
        grid-template-columns: 1fr;
    }
    
    .footer__content {
        flex-direction: column;
    }
    .how-it-works-steps-row{
        flex-direction: column;
    }
    .footer__nav {
        flex-direction: column;
        gap: 20px;
    }
    
    .contacts-card {
        padding: 30px 20px;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
        flex-direction: column;
    }
    .rental-hero-section{
        padding: 30px 0 35px;
    }
    .how-it-works-step{
        max-width: calc(100% - 20px);
    }
    .team-section__image{
        display: none;
    }
    .contact-form {
        max-width: 100%;
        width: 100%;
        padding-right: 0px;
    }
    .contact-form__image{
        display: none;
    }
    .form__columns {
        flex-direction: column;
        gap: 20px;
    }
    
    .form__column--left,
    .form__column--right {
        max-width: 100%;
    }
    
    .form__row {
        flex-direction: column;
        gap: 20px;
    }
    
    .contact-form__image {
        position: relative;
        width: 100%;
        height: 300px;
        border-radius: 20px;
        margin-top: 20px;
    }
    
    .local-solutions {
        padding: 30px 20px;
        flex-direction: column;
        min-height: auto;
        width: calc(100% - 20px);
        margin: 40px auto 50px;
    }
    
    .local-solutions .container {
        flex-direction: column;
    }
    
    .local-solutions__content {
        max-width: 100%;
        width: 100%;
        padding-right: 0;
    }
    
    .local-solutions__image {
        position: relative;
        width: 100%;
        height: 300px;
        border-radius: 20px;
        margin-top: 20px;
    }
    
    .error-404-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .error-404-text {
        max-width: 100%;
    }
    
    .error-404-title {
        font-size: 50px;
    }
    
    .error-404-subtitle {
        font-size: 40px;
    }
    
    .error-404-number {
        justify-content: center;
        gap: 15px;
    }
    
    .error-404-number .digit-4 {
        font-size: 120px;
    }
    
    .error-404-number .digit-0 {
        width: 120px;
        height: 120px;
    }
}

/* Mobile optimizations for 428px */
@media (max-width: 768px) {
    .rental-hero-card--with-image {
        padding: 30px 20px;
        flex-direction: column;
    }
    
    .rental-hero-card--with-image .rental-hero-content {
        max-width: 100%;
        padding-right: 0;
    }
    
    .rental-hero-image {
        position: relative;
        width: 100%;
        height: 300px;
        border-radius: 20px;
        margin-top: 20px;
    }
    
    .about-hero__bg {
        background: var(--color-white);
    }
    
    .about-hero__bg-image {
        display: none;
    }
    
    .about-hero__bg::after {
        display: none;
    }
    
    .about-hero__title {
        color: var(--color-text);
    }
    
    .about-hero__description {
        color: var(--color-text);
    }
    
    .about-hero__content .btn {
        background: var(--color-primary);
        color: var(--color-white);
    }
}

@media (max-width: 428px) {
    .header__container {
        padding: 12px 15px;
    }
    
    .burger-menu {
        width: 28px;
        height: 28px;
    }
    
    .nav {
        width: 260px;
        padding: 70px 25px 25px;
    }
    
    .nav__link {
        font-size: 15px;
    }
    .hero__title {
        font-size: 28px;
    }
    
    .hero__description {
        font-size: 15px;
        line-height: 24px;
    }
    
    .hero__left {
        padding: 30px 20px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .section-subtitle {
        font-size: 15px;
        line-height: 24px;
    }
    
    .contact-form-wrapper {
        padding: 25px 15px;
        border-radius: 30px;
        min-height: auto;
    }
    
    .contact-form__image {
        height: 250px;
        border-radius: 15px;
    }
    
    .local-solutions {
        padding: 25px 15px;
        border-radius: 30px;
        margin: 30px auto 40px;
    }
    
    .local-solutions__content {
        gap: 20px;
    }
    
    .local-solutions__image {
        height: 250px;
        border-radius: 15px;
    }
    
    .rental-hero-images {
        height: 250px;
        border-radius: 15px;
    }
    
    .form__input,
    .form__select,
    .form__textarea {
        padding: 15px;
        font-size: 14px;
    }
    
    .btn {
        padding: 16px 24px;
        font-size: 14px;
    }
    
    .hero-slider-title {
        font-size: 28px;
    }
    
    .rental-hero-title {
        font-size: 32px;
    }
    
    .rental-hero-description {
        font-size: 15px;
        line-height: 24px;
    }
    
    .rental-hero-card--with-image {
        padding: 25px 15px;
    }
    
    .rental-hero-image {
        height: 250px;
        border-radius: 15px;
    }
    
    .rfid-section,
    .how-it-works-section {
        padding: 40px 20px;
        border-radius: 30px;
        width: calc(100% - 20px);
    }
    
    .rfid-features-row {
        flex-direction: column;
    }
    
    .rfid-feature {
        width: 100%;
        max-width: 100%;
    }
    
    .rfid-features-row:first-child .rfid-feature {
        max-width: 100%;
    }
    
    .rfid-features-row:last-child .rfid-feature {
        max-width: 100%;
    }
    
    .rfid-feature-title,
    .step-title {
        font-size: 20px;
    }
    
    .rfid-feature-description,
    .step-description {
        font-size: 14px;
        line-height: 22px;
    }
    
    .catalog-item-content {
        padding: 20px 15px;
    }
    
    .catalog-item-title {
        font-size: 20px;
    }
    
    .catalog-item-description {
        font-size: 14px;
        line-height: 22px;
    }
    
    .contacts-card {
        padding: 25px 15px;
        border-radius: 30px;
    }
    
    .contacts-card__title {
        font-size: 28px;
    }
    
    .contacts-card__map {
        height: 300px;
    }
    
    .certificates-header .section-title {
        font-size: 32px;
    }
    
    .certificate-card__text {
        font-size: 16px;
        line-height: 24px;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .testimonial-card__title {
        font-size: 16px;
    }
    
    .testimonial-card__text {
        font-size: 15px;
        line-height: 22px;
    }
}

/* Mobile optimizations for 375px */
/* Cookie Consent Widget */
.cookie-consent {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 828px;
    background: var(--color-white);
    padding: 24px 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    border-radius: 16px;
    transform: translateY(150%);
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.cookie-consent.show {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

@media (max-width: 900px) {
    .cookie-consent {
        width: calc(100% - 80px);
        right: 40px;
        left: 40px;
    }
}

.cookie-consent__text {
    flex: 1;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: var(--color-text);
}

.cookie-consent__text a {
    color: #00AEEF;
    text-decoration: underline;
    transition: color 0.3s;
}

.cookie-consent__text a:hover {
    color: #0088cc;
}

.cookie-consent__buttons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.cookie-consent__btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
    white-space: nowrap;
}

.cookie-consent__btn--decline {
    background: #f0f0f0;
    color: var(--color-text);
}

.cookie-consent__btn--decline:hover {
    background: #e0e0e0;
}

.cookie-consent__btn--accept {
    background: var(--color-primary);
    color: var(--color-white);
}

.cookie-consent__btn--accept:hover {
    background: #1a2a4f;
}

@media (max-width: 768px) {
    .cookie-consent {
        width: calc(100% - 40px);
        right: 20px;
        left: 20px;
        bottom: 20px;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        gap: 20px;
    }
    
    .cookie-consent__buttons {
        width: 100%;
        flex-direction: column;
    }
    
    .cookie-consent__btn {
        width: 100%;
    }
}
