@import './reset.css';
@import './utilities.css';
@import './fonts/fonts.css';

:root {
    --primary-color: #EDB531;
    --secondary-color: #F4F4F4;
    --tertiary-color: #757575;
    --quaternary-color: #E3E3E3;
    --quinary-color: #EEEEEE;
    --text-color: #1E1E1E;
    --btn-link-height: 36px;
    --font-inter: 'Inter', 'Geist';
    --font-geist: 'Geist', 'Inter';

    --radius-sm: 4px;     /* для маленьких элементов */
    --radius-md: 8px;     /* для средних */
    --radius-lg: 12px;    /* для больших (ваш случай) */
    --radius-xl: 16px;    /* для огромных */
    --radius-full: 100%; /* для полных кругов */
    /*--bg-light: #f8f9fa;*/
    /*--bg-white: #ffffff;*/
    /*--gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);*/
    /*--shadow: 0 10px 30px rgba(0, 0, 0, 0.1);*/
}

body {
    font-family: var(--font-geist), sans-serif;
    color: var(--text-color);
}
.primary-color {
    color: var(--primary-color);
}
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 15px;
}
.header {
    height: 118px;
}
.logo {
    width: 218px;
}
.header-link {
    height: var(--btn-link-height);
    padding: 0 16px;
    font-weight: 600;
    font-size: 14px;
    background-color: var(--secondary-color);
    border-radius: var(--radius-md);
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}
a.header-link:hover {
    opacity: 0.7;
}
.header-link:hover .header-link-icon,
.header-link:hover .header-link-title {
    opacity: 0.7;
}
.header-link .sub-menu {
    left: -2px;
    top: 46px;
}
.header-link-icon {
    width: 20px;
    height: 20px;
}
.nav {
    height: 38px;
    padding: 0 20px;
    border: 2px solid var(--quinary-color);
    border-radius: var(--radius-lg);
}
.nav-item {
    font-size: 14px;
    font-weight: 500;
    position: relative;
}
.nav-item:hover .nav-item-icon,
.nav-item:hover .nav-item-title {
    opacity: 0.7;
}
.nav-item-title {
    cursor: pointer;
}
.sub-menu {
    position: absolute;
    top: 38px;
    left: -22px;
    border: 2px solid var(--quinary-color);
    z-index: 4;
    border-radius: var(--radius-lg);
    padding: 8px;
    gap: 2px;
    display: none;
    background-color: #fff;
}
.sub-menu-title {
    color: #7F919D;
    white-space: nowrap;
    padding: 8px;
}
.btn {
    border-radius: var(--radius-lg);
    color: white;
    background-color: var(--primary-color);
    font-weight: 700;
}
.btn:hover {
    opacity: 0.8;
}
.btn:active {
    opacity: 0.9;
}
.header-btn {
    padding: 0 24px;
    height: 38px;
}
.sub-menu-item {
    white-space: nowrap;
    padding: 8px;
    border-radius: var(--radius-md);
    width: 100%;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}
.sub-menu-item:hover {
    background-color: #F5F5F5;
}
.icon-flame {
    width: 14px;
    height: 14px;
}
.active-sub-menu .sub-menu {
    display: flex;
}
.hero-banner {
    position: relative;
    height: 432px;
    overflow: hidden;
    border-radius: var(--radius-xl);
}
.hero-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    /*background-image: url('../img/hero.jpg');*/
    background-size: 110% auto;
    background-position: -120% 30%;
    background-repeat: no-repeat;
    z-index: 1;
}
.hero-gradient {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
            90deg,
            var(--secondary-color) 0%,
            var(--secondary-color) 40%,
            rgba(244, 244, 244, 0.92) 50%,
            rgba(244, 244, 244, 0.55) 55%,
            rgba(244, 244, 244, 0) 66%
    );
    z-index: 2;
}
.hero-content {
    position: relative;
    max-width: 640px;
    z-index: 3;
    padding: 40px 0 40px 40px;
}
.hero-title {
    font-size: 56px;
    font-weight: 600;
    line-height: 1.1;
    margin: 24px 0 40px 0;
    letter-spacing: 0.2px;
    color: var(--text-color);
}
.section-title {
    font-size: 36px;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: 0.2px;
    color: var(--text-color);
}
.sub-title {
    font-weight: 600;
    font-size: 24px;
    line-height: 1;
}
.hero-btn {
    padding: 0 32px;
    height: 62px;
    font-size: 16px;
    font-weight: 600;
}
.hero-link {
    font-size: 20px;
    font-weight: 500;
    color: var(--text-color);
    margin-left: 48px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.hero-link:hover {
    opacity: 0.7;
}
.hero-link img {
    width: 24px;
    height: 24px;
}
.tags {
    border-radius: var(--radius-sm);
    padding: 0 16px;
    height: var(--btn-link-height);
    background-color: var(--secondary-color);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
a.tags:hover {
    opacity: 0.7;
}
.white-tags {
    background-color: #fff;
}
.hero-tags {
    height: 40px;
    background-color: var(--quaternary-color);
    border-radius: var(--radius-sm);
}
.link-tags {
    font-size: 20px;
    gap: 16px;
    height: 54px;
}
.link-tags-icon {
    width: 16px;
    position: relative;
    top: 1px;
}
.link-tags-mobile {
    margin-top: 20px;
    width: 100%;
    color: white;
    background-color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
}

.our-ecosystem {
    margin-top: 24px;
}
.our-ecosystem-links {
    background-color: var(--secondary-color);
    height: 68px;
    border-radius: var(--radius-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
}
.our-ecosystem-slider {
    margin-top: 60px;
}
.our-ecosystem-slider-block-wrap {
    flex: 0 0 auto;
    height: 250px;
    border: 4px solid var(--primary-color);
    border-radius: var(--radius-lg);
    padding: 4px;
}
.our-ecosystem-slider-block-wrap:nth-child(3n + 2) .our-ecosystem-slider-block {
    background-color: var(--primary-color);
    color: white;
}
.our-ecosystem-slider-block {
    background-color: var(--secondary-color);
    border-radius: var(--radius-md);
    height: 100%;
    overflow: hidden;
    max-height: 250px;
    min-height: 250px;
}
.our-ecosystem-slider-block-title {
    font-weight: 700;
    line-height: 1;
    padding: 16px;
}
.our-ecosystem-slider-block-img img {
    width: 100%;
}
.services {
    margin-top: 120px;
}
.blog-title,
.services-title {
    margin-top: 24px;
    max-width: 570px;
}
.services-blocks-wrap {
    margin-top: 60px;
}
.services-blocks {
    display: flex;
    gap: 16px;
}
.services-block-small {
    flex: 1;
    height: 88px;
    display: flex;
    gap: 20px;
    background-color: var(--secondary-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.services-block-small-left {
    padding: 12px;
    display: flex;
    gap: 20px;
    flex: 2;
    align-items: center;
}
.services-block-small-right {
    flex: 1;
}
.block-icon-wrap {
    width: 64px;
    min-width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--quaternary-color);
}
.block-icon-wrap-secondary-color {
    background-color: var(--secondary-color);
}
.block-icon-wrap-primary-color {
    background-color: var(--primary-color);
}
.services-block-small-text {
    font-size: 20px;
    font-weight: 500;
    line-height: 1;
}
.services-blocks-big {
    margin-top: 16px;
}
.services-block-big {
    padding: 32px;
    flex: 1;
    background-color: var(--secondary-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.services-block-big:nth-child(2) {
    background-color: var(--primary-color);
    color: white;
}
.services-block-big:nth-child(2) .block-icon-wrap {
    background-color: white;
}
.services-block-big-text {
    margin-top: 24px;
    max-width: 230px;
    height: 44px;
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 0.2px;
    line-height: 1.1;
}


.about {
    margin-top: 80px;
}
.service-cars {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    background-color: var(--secondary-color);
    border-radius: var(--radius-lg);
}
.about-content {
    margin-top: 40px;
    display: flex;
    gap: 40px;
}
.about-banner {
    flex: 1;
    border-radius: var(--radius-lg);
    max-height: 433px;
    overflow: hidden;
}
.blog-banner img,
.about-banner img {
    height: 100%;
}
.about-title {
    margin-top: 24px;
    font-weight: 600;
    max-width: 584px;
}
.description {
    font-size: 18px;
    font-weight: 500;
    margin-top: 16px;
}
.about-info-blocks {
    margin-top: 60px;
    display: flex;
    gap: 30px;
}
.block-title {
    margin-top: 40px;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 0.2px;
    line-height: 1.1;
}
.block-description {
    margin-top: 16px;
    font-size: 16px;
    font-weight: 400;
}
.why-we {
    margin-top: 120px;
}
.why-we .tags-wrap {
    display: flex;
    justify-content: center;
}
.why-we .description {
    text-align: center;
}
.why-we-title {
    margin-top: 24px;
    text-align: center;
}
.why-we-blocks {
    margin-top: 60px;
}
.why-we-block {
    background-color: var(--secondary-color);
    padding: 32px;
    border-radius: var(--radius-lg);
}
.why-we-block-big {
    margin-top: 16px;
    display: flex;
    gap: 40px;
}
.why-we-block-big .block-title {
    margin-top: 0;
}


.advantages {
    margin-top: 120px;
}
.advantages .section-title {
    margin-top: 24px;
    max-width: 50%;
}
.advantages .description {
    max-width: 40%;
    text-align: right;
}
.advantages .block-title {
    margin-top: 24px;
}
.advantages-title-description {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.advantages-blocks {
    margin-top: 60px;
}
.advantages-blocks-list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: space-between;
}
.advantages_block {
    max-width: 400px;
    padding: 40px;
    border-radius: var(--radius-md);
    border: 2px solid #F4F4F4;
    margin-right: 0 !important;
    min-height: 352px;
}
.blog {
    margin-top: 120px;
}
.blog-content {
    margin-top: 40px;
    display: flex;
}
.blog-banner {
    flex: 1;
    border-radius: var(--radius-lg);
    max-height: 278px;
    overflow: hidden;
}
.blog-info {
    flex: 2;
    padding: 32px;
    background-color: var(--secondary-color);
    border-radius: var(--radius-xl);
}
.blog-info-title {
    font-size: 32px;
    margin-top: 14px;
}
.blog-blocks {
    margin-top: 40px;
}
.blog-block-banner {
    height: 238px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.blog-block-banner img {
    width: 100%;
}
.blog-block-info {
    padding: 24px;
    background-color: var(--secondary-color);
    border-radius: var(--radius-xl);
}
.blog-block-info .sub-title {
    margin-top: 14px;
}


.faq {
    margin-top: 120px;
}
.faq-tag {
    font-weight: 400;
    font-size: 20px;
    border-radius: var(--radius-sm);
    background-color: var(--secondary-color);
    height: 42px;
    align-items: center;
    padding: 0 16px;
    display: inline-flex;
}
.faq-title {
    font-weight: 600;
    font-size: 48px;
    line-height: 1.2;
}
.faq-btn {
    font-size: 19px;
    height: 50px;
    padding: 0 32px;
}
.faq-blocks {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}
.faq-block {
    font-family: var(--font-inter), sans-serif;
    border-radius: 14px;
    border: 2px solid var(--secondary-color);
    padding: 16px 20px 16px 20px;
    cursor: pointer;
}
.faq-block-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    letter-spacing: -0.18px;
    font-weight: 500;
    line-height: 24px;
    color: #272727;
}
.faq-block-hidden {
    display: none;
}
.faq-block-hidden-header {
    font-size: 24px;
}
.faq-description {
    margin-top: 12px;
    font-size: 20px;
    line-height: 24px;
    color: #5C5C5C;
}
.active-faq .faq-block-visible {
    display: none;
}
.active-faq .faq-block-hidden {
    display: block;
}



.footer {
    margin-top: 40px;
}
.footer-content {
    background-color: var(--secondary-color);
    padding: 32px;
    border-radius: var(--radius-lg);
    font-family: var(--font-inter), sans-serif;
    color: #111827;
}
.footer-top {
    display: flex;
    gap: 20px;
}
.footer-logo {
    display: block;
    width: 260px;
}
.footer-logo img {
    width: 100%;
}
.footer-tag {
    color: #4B5563;
    line-height: 24px;
}
.footer-content-left {
    flex: 1;
}
.footer-content-left .footer-tag {
    margin-top: 32px;
}
.footer-columns {
    flex: 1;
    display: flex;
    justify-content: space-between;
}
.footer-column li {
    margin-top: 16px;
}
.footer-column a {
    line-height: 24px;
    color: #4B5563;
}
.footer-column a:hover {
    opacity: 0.7;
}
.footer-column-title {
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: -0.18px;
}
.feedback {
    margin-top: 40px;
    background-color: #fff;
    padding: 24px;
    border-radius: var(--radius-lg);
    display: flex;
    gap: 20px;
}
.feedback-socials-list {
    margin-top: 16px;
    gap: 8px;
    display: flex;
}
.feedback-socials {
    flex: 1;
}
.feedback-social-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}
.feedback-social-icon:hover {
    opacity: 0.8;
}
.footer-contacts {
    flex: 1;
    display: flex;
    align-items: center;
}
.footer-contacts-block {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.footer-contacts-block a:hover {
    opacity: 0.7;
}





.register {
    margin-top: 80px;
}
.register-content {
    display: flex;
    gap: 40px;
}
.register-content-left {
    flex: 2;
    background-color: var(--secondary-color);
    border-radius: 20px;
    padding: 24px;
}
.register-content-right {
    flex: 4;
    max-width: 812px;
    background-color: var(--secondary-color);
    border-radius: 20px;
    padding: 24px;
}
.register-content-right iframe {
    width: 100%;
}
.register-subtitle {
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0;
}
.register-personal {
    margin-top: 24px;
}
.register-inputs {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 12px;
}
.label-text-input {
    position: relative;
}
.label-text-input .choices__inner,
.label-text-input input {
    width: 100%;
    height: 50px;
    border: 1px solid var(--quinary-color);
    padding: 12px 16px;
    border-radius: var(--radius-lg);
}
.label-text-input input::placeholder {
    color: var(--text-color);
}
.label-text-input .choices__inner {
    background-color: #fff;
    padding-top: 10px;
}
.label-text-input .choices__list--dropdown .choices__item--choice {
    padding: 12px 16px;
}
.label-text-input .is-open .choices__inner {
    background-color: #fff;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
.label-text-input .is-open .choices__list--dropdown {
    border: 1px solid var(--quinary-color);
    border-bottom-left-radius: var(--radius-lg);
    border-bottom-right-radius: var(--radius-lg);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08),
    0 4px 12px rgba(0, 0, 0, 0.16);
}
.label-text-input .choices__placeholder {
    font-size: 16px;
    opacity: 1;
}

.register-additionally {
    margin-top: 16px;
}
.required-icon {
    position: absolute;
    top: 12px;
    right: 12px;
}
.input-icon {
    position: absolute;
    top: 18px;
    right: 12px;
}
.register-button {
    margin-top: 12px;
    color: var(--tertiary-color);
    font-weight: 700;
    font-size: 14px;
    line-height: 1;
    background-color: var(--quaternary-color);
    width: 100%;
    height: 40px;
    border-radius: var(--radius-lg);
}
.register-checkbox input {
    width: 16px;
    height: 16px;
}
.privacy-policy-checkbox {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    margin: 0;
    pointer-events: none;
}
.register-checkbox {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    padding-left: 28px;
    user-select: none;
    line-height: 1;
    margin-top: 24px;
}
.register-checkbox::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    border: 1px solid var(--text-color);
    background-color: #fff;
    border-radius: var(--radius-sm);;
    transition: all 0.2s ease;
}
.privacy-policy-checkbox:checked + .register-checkbox::before {
    background-color: var(--text-color);
    border-color: var(--text-color);
}
.privacy-policy-checkbox:checked + .register-checkbox::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 14px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: translateY(-50%) rotate(45deg);
}
.privacy-policy-text {
    font-weight: 500;
    color: var(--tertiary-color);
    position: relative;
    top: 1px;
}
.privacy-policy-text a {
    text-decoration: underline;
}
.privacy-policy-text a:hover {
    text-decoration: none;
}
.register-tabs {
    margin-top: 24px;
    border-radius: var(--radius-lg);
    padding: 8px;
    display: inline-flex;
    gap: 2px;
    background-color: #fff;
}
.register-tab {
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 14px;
    line-height: 1;
    font-weight: 500;
    color: var(--tertiary-color);
    cursor: pointer;
}
.register-tab.active {
    background-color: var(--quaternary-color);
    color: var(--text-color);
    cursor: auto;
}
.register-date {
    margin-top: 24px;
}
.register-map {
    margin-top: 24px;
    display: none;
}
.register-content-right.active .register-map {
    display: block;
}
.register-content-right.active .register-date {
    display: none;
}
.card {
    max-width: 484px;
    width: 100%;
}
.current-date {
    font-weight: 500;
    margin-bottom: 16px;
    line-height: 1;
}
.time-slots {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}
.time-slot {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: var(--radius-lg);
    font-weight: 500;
    color: var(--text-color);
    cursor: pointer;
    user-select: none;
    line-height: 1;
    background-color: #fff;
}
.time-slot:not(.inactive):hover {
    background-color: var(--primary-color);
    color: #fff;
}
.time-slot.selected {
    background-color: var(--primary-color);
    color: #fff;
}
.time-slot.inactive {
    background-color: var(--quaternary-color);
    color: #757575;
    cursor: not-allowed;
    pointer-events: none;
}
.other-day-btn {
    width: 100%;
    height: 40px;
    background-color: var(--text-color);
    color: white;
    border-radius: var(--radius-lg);
    font-size: 14px;
    font-weight: 600;
}
.dev-note {
    margin-top: 20px;
    font-size: 13px;
    color: #999;
    text-align: center;
    border-top: 1px solid #eee;
    padding-top: 18px;
}
.sto-address {
    background-color: var(--quaternary-color);
    border-radius: var(--radius-lg);
    margin-top: 8px;
    padding: 12px 16px;
}
.sto-title {
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
    color: var(--tertiary-color);
    margin-bottom: 8px;
}
.show-on-mobile {
    display: none;
}
.blog-page {
    margin-top: 40px;
}
.blog-page .section-title {
    margin-top: 24px;
}
.blog-page .blog-blocks-list {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    margin-top: 40px;
}
.blog-page .blog-block {
    width: 390px;
}
.load-more-btn {
    line-height: 1;
    font-weight: 700;
    font-size: 19px;
    background-color: var(--secondary-color);
    border-radius: var(--radius-lg);
    padding: 16px 32px;
}
.blog-single-page .blog-block {
    padding: 30px;
    background-color: var(--secondary-color);
    border-radius: var(--radius-xl);
}
.blog-single-page .blog-block-banner {
    height: auto;
    display: flex;
    gap: 30px;
    border-radius: 0;
}
.blog-single-page .blog-block-info {
    padding: 0;
    border-radius: 0;
}
.blog-single-title {
    background-color: #fff;
    border-radius: 10px;
    flex: 1;
    padding: 20px;
}





















@media (max-width: 1300px) {
    .advantages-blocks-list {
        flex-wrap: unset;
    }
}
@media (max-width: 1260px) {
    .blog-content {
        flex-direction: column;
    }
    .blog-banner {
        max-height: 450px;
    }
    .blog-banner img {
        height: auto;
        width: 100%;
    }
}
@media (max-width: 1200px) {
    .header {
        flex-wrap: wrap;
    }
}
@media (max-width: 1150px) {
    .about-content {
        flex-direction: column;
    }

    .about-banner img {
        height: auto;
        width: 100%;
    }
}
@media (max-width: 800px) {
    .our-ecosystem-links {
        display: none;
    }
}
@media (max-width: 767px) {
    .container {
        padding: 0 12px;
    }
    .hide-on-mobile {
        display: none;
    }
    .show-on-mobile {
        display: block;
    }
    .header {
        flex-wrap: wrap;
        height: 80px;
    }
    .nav {
        display: none;
        overflow-y: auto;
    }
    
    /* --- Стили для мобильного меню --- */
    .nav-toggle {
        display: flex;
        flex-direction: column;
        background: none;
        border: 2px solid #EEEEEE;
        cursor: pointer;
        padding: 8px 16px;
        z-index: 1000;
        width: 52px;
        height: 38px;
        border-radius: var(--radius-lg);
    }

    .nav-toggle__line {
        width: 17px;
        height: 2px;
        background-color: var(--text-color);
        margin: 2px 0;
        transition: 0.3s;
        border-radius: 2px;
    }

    .nav-toggle.active .nav-toggle__line:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .nav-toggle.active .nav-toggle__line:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .nav-toggle__line:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100dvh - 80px);
        background: white;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        transition: left 0.3s ease;
        z-index: 999;
        padding: 20px;
    }

    .nav.active {
        left: 0;
        display: flex;
    }

    .nav ul {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .nav-item {
        font-size: 24px;
        position: relative;
        width: 100%;
        display: block;
    }

    .nav-item-title {
        font-size: 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        cursor: pointer;
        padding: 10px 0;
    }

    .nav-item-icon {
        width: 16px;
        height: 16px;
        transition: transform 0.3s ease;
        transform: rotate(0deg);
    }

    .sub-menu {
        position: static;
        margin-top: 10px;
        margin-left: 20px;
        display: none;
        flex-direction: column;
        gap: 8px;
        padding-left: 16px;
    }

    .sub-menu-title {
        font-size: 16px;
        padding: 8px 0;
        border-bottom: 1px solid var(--text-color);
    }

    .sub-menu-item {
        font-size: 18px;
        padding: 8px 0;
        border-bottom: 1px solid var(--text-color);
    }

    .sub-menu-item:last-child {
        border-bottom: none;
    }
    .header-right {
        gap: 8px;
    }

    .hero-content {
        padding: 12px;
    }
    .hero-tags {
        height: 34px;
        font-size: 12px;
    }
    .hero-title {
        font-size: 36px;
        margin-top: 12px;
    }
    .hero-bg,
    .hero-gradient {
        display: none;
    }
    .hero-banner {
        height: auto;
        background-color: var(--secondary-color);
    }
    .hero-actions {
        flex-wrap: wrap;
        gap: 8px;
    }
    .hero-btn {
        width: 100%;
    }
    .hero-link {
        width: 100%;
        background-color: #fff;
        border-radius: var(--radius-lg);
        height: 62px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: 0;
    }
    .section-title {
        font-size: 24px;
    }
    .services {
        margin-top: 60px;
    }
    .services-block-small-text {
        font-weight: 600;
    }
    .services-blocks {
        flex-direction: column;
        gap: 8px;
    }
    .services-block-small {
        height: 72px;
        max-height: 72px;
    }
    .services-block-small .block-icon-wrap {
        max-height: 48px;
        min-height: 48px;
        max-width: 48px;
        min-width: 48px;
    }
    .block-icon-wrap img {
        width: 56%;
    }
    .services-block-small-right img {
        position: relative;
        top: -20px;
    }
    .about {
        margin-top: 60px;
    }
    .about-info-blocks {
        margin-top: 40px;
        flex-direction: column;
    }
    .about-info-blocks .block-title {
        margin-top: 20px;
    }
    .why-we {
        margin-top: 60px;
    }
    .why-we .tags-wrap {
        justify-content: flex-start;
    }
    .why-we-title {
        text-align: left;
    }
    .description {
        font-size: 16px;
    }
    .why-we .description {
        text-align: left;
    }
    .why-we-blocks {
        margin-top: 40px;
    }
    .advantages {
        margin-top: 60px;
    }
    .advantages-title-description {
        flex-direction: column;
    }
    .advantages .section-title {
        max-width: unset;
    }
    .advantages .description {
        max-width: unset;
        text-align: left;
    }
    .advantages-blocks {
        margin-top: 20px;
    }
    .register {
        margin-top: 60px;
    }
    .register-button {
        height: 60px;
    }
    .blog {
        margin-top: 30px;
    }
    .blog-content {
        flex-direction: column;
    }
    .blog-block-banner {
        height: auto;
    }
    .faq {
        margin-top: 60px;
    }
    .faq-tag {
        height: auto;
    }
    .faq-title {
        font-size: 24px;
    }

    .footer {
        margin-top: 60px;
    }
    .footer .container {
        padding: 0;
    }
    .footer-columns,
    .footer-contacts,
    .feedback,
    .footer-top {
        flex-direction: column;
    }
    .footer-contacts,
    .feedback {
        gap: 40px;
    }
    .footer-columns {
        gap: 32px;
    }
    .footer-contacts {
        align-items: flex-start;
    }
    .footer-content {
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    }
    .blog-page .section-title {
        margin-top: 20px;
    }
    .blog-page .blog-block {
        width: 100%;
    }
}
















