* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    color: #111314;
    line-height: 1.4;
    background: #fff url('../images/bg.svg') center top no-repeat;
    background-size: 100%;
}

.lt-container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 24px;
}


.lt-header {
    padding: 24px 0;
    position: relative;
    z-index: 9999;
}

.lt-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.lt-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.lt-logo__img {
    height: 40px;
    width: auto;
}

.lt-logo__brand {
    font-size: 26px;
    font-weight: 700;
    color: #111314;
    letter-spacing: -0.3px;
}

.lt-nav {
    display: flex;
    align-items: center;
    gap: 36px;
    flex-wrap: wrap;
}

.lt-nav__menu {
    display: flex;
    gap: 32px;
    list-style: none;
}

.lt-nav__link {
    text-decoration: none;
    font-weight: 500;
    color: #111314;
    font-size: 16px;
    transition: color 0.2s;
}

.lt-nav__link:hover {
    color: #ff5e2a;
}

.lt-lang {
    display: flex;
    gap: 10px;
}

.lt-lang__item {
    text-decoration: none;
    font-weight: 500;
    color: #5A5A5A;
    font-size: 15px;
    transition: color 0.2s;
}

.lt-lang__item--active {
    color: #ff5e2a;
    font-weight: 600;
}

.lt-btn {
    display: inline-block;
    background-color: #111314;
    color: #fff;
    padding: 12px 28px;
    border-radius: 32px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.lt-btn--outline {
    background-color: transparent;
    border: 1.5px solid #111314;
    color: #111314;
}

.lt-btn--primary {
    background-color: #ff5e2a;
    color: #fff;
    box-shadow: 0 8px 18px rgba(255, 94, 42, 0.2);
}

.lt-btn--primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 200%;
    height: 200%;
    background: linear-gradient(115deg, rgba(255, 255, 255, 0) 10%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 90%);
    transform: rotate(25deg);
    animation: lt-shine 5s infinite linear;
    z-index: -1;
}

@keyframes lt-shine {
    0% {
        transform: translateX(-100%) rotate(25deg);
    }

    20% {
        transform: translateX(100%) rotate(25deg);
    }

    100% {
        transform: translateX(100%) rotate(25deg);
    }
}

.lt-btn--black {
    background-color: #111314;
}

.lt-btn--black:hover {
    background-color: #ff5e2a;
}


.lt-hero {

    padding: 70px 0 90px;
    text-align: center;
}

.lt-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #f4f4f4;
    padding: 7px 16px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    color: #111314;
    margin-bottom: 20px;
}

.lt-subtitle__icon {
    width: 20px;
    height: 20px;
    background-image: url('../images/sub.svg');
    background-size: contain;
    background-repeat: no-repeat;
    display: inline-block;
}

.lt-title {
    font-size: 56px;
    font-weight: 600;
    color: #111314;
    line-height: 1.2;
    margin-bottom: 20px;
}

.lt-text {
    font-size: 18px;
    color: #5A5A5A;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.5;
}

.lt-buttons {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
}


.lt-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin: 60px 0;
}

.lt-card {
    background-color: #fff;
    border-radius: 20px;
    border: 1px solid #e4e4e4;
    padding: 32px 28px;
    flex: 1;
    min-width: 250px;
    transition: transform 0.2s ease;
}

.lt-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.lt-card__icon img {
    width: 28px;
    height: 28px;

}

.lt-features-grid .lt-card__icon img {
    filter: brightness(1) invert(1);
}

.lt-card__title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #111314;
}

.lt-card__text {
    color: #5A5A5A;
    font-size: 16px;
    line-height: 1.45;
}

.lt-icon-bg-1 {
    background-color: #ff5e2a1a;
}

.lt-icon-bg-2 {
    background-color: #8b5dfc1a;
}

.lt-icon-bg-3 {
    background-color: #47c2ff1a;
}

.lt-icon-bg-4 {
    background-color: #1fc16b1a;
}


.lt-about-center {
    text-align: center;
    margin: 60px 0;
}

.lt-full-img {
    width: 100%;
    border-radius: 24px;
    margin: 32px 0;
}


.lt-features-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 50px 0;
}

.lt-row-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.lt-row-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}


.lt-why {
    display: flex;
    gap: 60px;
    align-items: center;
    margin: 80px 0;
    flex-wrap: wrap;
}

.lt-why__image {
    flex: 1;
}

.lt-why__image img {
    width: 100%;
    border-radius: 28px;
    object-fit: cover;
}

.lt-why__content {
    flex: 1;
}

.lt-list {
    list-style: none;
    margin: 24px 0 32px;
}

.lt-list li {
    font-size: 16px;
    color: #5A5A5A;
    margin-bottom: 14px;
    padding-left: 26px;
    position: relative;
}

.lt-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ff5e2a;
    font-weight: 700;
    font-size: 18px;
}


.lt-cta {
    text-align: center;
    background: #fff url('../images/bg.svg') center no-repeat;
    border-radius: 40px;
    padding: 70px 20px;
    margin: 70px 0;
}


.lt-footer {
    background-color: #fff;
    border-top: 1px solid #eaeef2;
    padding: 60px 0 30px;
    margin-top: 40px;
}

.lt-footer__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 50px;
}

.lt-footer__col {
    flex: 1;
    min-width: 180px;
}

.lt-footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    text-decoration: none;
}

.lt-footer__logo-img {
    height: 38px;
}

.lt-footer__text {
    color: #5A5A5A;
    font-size: 14px;
    line-height: 1.5;
    max-width: 260px;
}

.lt-footer__title {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 20px;
    color: #111314;
}

.lt-footer__links {
    list-style: none;
}

.lt-footer__links li {
    margin-bottom: 12px;
}

.lt-footer__links a {
    text-decoration: none;
    color: #5A5A5A;
    font-size: 14px;
    transition: color 0.2s;
}

.lt-footer__links a:hover {
    color: #ff5e2a;
}

.lt-footer__contact p {
    margin-bottom: 10px;
    color: #5A5A5A;
    font-size: 14px;
}

.lt-copyright {
    border-top: 1px solid #eef2f5;
    padding-top: 24px;
    font-size: 13px;
    color: #7e7e7e;
    text-align: left;
}


.lt-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #111314;
    position: relative;
    z-index: 99999;

}

.lt-page-header {
    text-align: center;
    padding: 60px 0 40px;
    background-color: #fafafc;
    border-bottom: 1px solid #eee;
}

.lt-page-header__title {
    font-size: 48px;
    font-weight: 600;
    color: #111314;
    margin-bottom: 16px;
}

.lt-breadcrumbs {
    font-size: 14px;
    color: #5A5A5A;
}

.lt-breadcrumbs a {
    color: #5A5A5A;
    text-decoration: none;
    transition: color 0.2s;
}

.lt-breadcrumbs a:hover {
    color: #ff5e2a;
}

.lt-breadcrumbs__sep {
    margin: 0 8px;
}

.lt-contact-section {
    padding: 80px 0;
    background: #fff;
}

.lt-contact__grid {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.lt-contact__info {
    flex: 1;
    min-width: 280px;
}

.lt-contact__heading {
    font-size: 36px;
    font-weight: 600;
    color: #111314;
    margin-bottom: 20px;
}

.lt-contact__description {
    font-size: 16px;
    color: #5A5A5A;
    line-height: 1.5;
    margin-bottom: 40px;
    max-width: 450px;
}

.lt-contact__list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.lt-contact__item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.lt-contact__icon {
    width: 52px;
    height: 52px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.lt-contact__item-content h4 {
    font-size: 16px;
    font-weight: 500;
    color: #111314;
    margin-bottom: 6px;
}

.lt-contact__item-content a,
.lt-contact__item-content p {
    font-size: 16px;
    color: #5A5A5A;
    text-decoration: none;
    transition: color 0.2s;
}

.lt-contact__item-content a:hover {
    color: #ff5e2a;
}

.lt-contact__form-wrapper {
    flex: 1;
    min-width: 320px;
    background: #f4f4f4;
    border-radius: 20px;
    padding: 40px;
}

.lt-contact__form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.lt-form__row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.lt-form__group {
    flex: 1;
    position: relative;
    min-width: 140px;
}

.lt-form__group--full {
    width: 100%;
}

.lt-form__group input,
.lt-form__group textarea {
    width: 100%;
    padding: 16px 16px 8px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 16px;
    font-size: 15px;
    font-family: 'Outfit', sans-serif;
    outline: none;
    transition: all 0.2s;
    resize: vertical;
}

.lt-form__group label {
    position: absolute;
    left: 16px;
    top: 12px;
    font-size: 15px;
    color: #999;
    pointer-events: none;
    transition: 0.2s ease;
    background: transparent;
    padding: 0 4px;
}

.lt-form__group input:focus,
.lt-form__group textarea:focus {
    border-color: #ff5e2a;
}

.lt-form__group input:focus~label,
.lt-form__group input:valid~label,
.lt-form__group textarea:focus~label,
.lt-form__group textarea:valid~label {
    top: 4px;
    font-size: 11px;
    color: #ff5e2a;
    background: #fff;
}

.lt-btn--form {
    width: 100%;
    text-align: center;
    border: none;
    cursor: pointer;
    font-size: 16px;
    padding: 14px 28px;
}

.lt-form__thankyou {
    margin-top: 16px;
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    color: #1fc16b;
    background: #e8f8ef;
    padding: 12px;
    border-radius: 32px;
    display: none;
}

@media (max-width: 768px) {
    .lt-contact-section {
        padding: 50px 0;
    }

    .lt-contact__form-wrapper {
        padding: 28px;
    }

    .lt-contact__heading {
        font-size: 28px;
    }
}


.lt-page-header {
    text-align: center;
    padding: 60px 0 40px;
    background: #fafafc;
    border-bottom: 1px solid #eee;
}

.lt-page-header__title {
    font-size: 48px;
    font-weight: 600;
    color: #111314;
    margin-bottom: 16px;
}

.lt-page-header__date {
    font-size: 14px;
    color: #5A5A5A;
    margin-top: 16px;
}

.lt-breadcrumbs {
    font-size: 14px;
    color: #5A5A5A;
}

.lt-breadcrumbs a {
    color: #5A5A5A;
    text-decoration: none;
}

.lt-breadcrumbs a:hover {
    color: #ff5e2a;
}

.lt-breadcrumbs__sep {
    margin: 0 8px;
}

.lt-legal-section {
    padding: 60px 0 90px;
    background: #fff;
}

.lt-legal__content {
    max-width: 900px;
    margin: 0 auto;
}

.lt-legal__lead {
    font-size: 20px;
    font-weight: 500;
    color: #111314;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #ff5e2a20;
}

.lt-legal__content h2 {
    font-size: 28px;
    font-weight: 600;
    color: #111314;
    margin: 40px 0 16px 0;
}

.lt-legal__content h3 {
    font-size: 22px;
    font-weight: 600;
    color: #111314;
    margin: 28px 0 12px 0;
}

.lt-legal__content p {
    font-size: 16px;
    line-height: 1.6;
    color: #5A5A5A;
    margin-bottom: 18px;
}

.lt-legal__content ul {
    margin: 16px 0 24px 24px;
}

.lt-legal__content li {
    font-size: 16px;
    line-height: 1.6;
    color: #5A5A5A;
    margin-bottom: 8px;
}

.lt-legal__content strong {
    color: #111314;
    font-weight: 600;
}

.lt-legal__contact-block,
.lt-legal__contact {
    background: #f4f4f4;
    padding: 20px 28px;
    border-radius: 20px;
    margin: 24px 0;
}

.lt-legal__contact-block p,
.lt-legal__contact p {
    margin-bottom: 8px;
}

.lt-cookies-table {
    background: #f4f4f4;
    border-radius: 20px;
    overflow: hidden;
    margin: 24px 0;
    font-size: 14px;
}

.lt-cookies-row {
    display: grid;
    grid-template-columns: 1.5fr 2.5fr 1fr 1fr;
    gap: 12px;
    padding: 14px 20px;
    border-bottom: 1px solid #e0e0e0;
}

.lt-cookies-header {
    background: #e8e8e8;
    font-weight: 600;
    color: #111314;
}

.lt-cookies-row:last-child {
    border-bottom: none;
}

@media (max-width: 768px) {
    .lt-page-header__title {
        font-size: 32px;
    }

    .lt-legal__content h2 {
        font-size: 24px;
    }

    .lt-cookies-row {
        grid-template-columns: 1fr;
        gap: 6px;
        padding: 16px;
    }

    .lt-cookies-header {
        display: none;
    }

    .lt-cookies-row span:first-child {
        font-weight: 600;
        color: #111314;
    }
}


.lt-page-header {
    text-align: center;
    padding: 60px 0 40px;
    background: #fafafc;
    border-bottom: 1px solid #eee;
}

.lt-page-header__title {
    font-size: 48px;
    font-weight: 600;
    color: #111314;
    margin-bottom: 16px;
}

.lt-breadcrumbs {
    font-size: 14px;
    color: #5A5A5A;
}

.lt-breadcrumbs a {
    color: #5A5A5A;
    text-decoration: none;
}

.lt-breadcrumbs a:hover {
    color: #ff5e2a;
}

.lt-breadcrumbs__sep {
    margin: 0 8px;
}

.lt-about-hero {
    padding: 40px 0 20px;
    background: #fff;
}

.lt-about__main-img {
    width: 100%;
    border-radius: 28px;
    display: block;
}

.lt-stats-section {
    padding: 40px 0 20px;
    background: #fff;
}

.lt-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
    background: #f4f4f4;
    border-radius: 28px;
    padding: 48px 32px;
}

.lt-stat__number {
    font-size: 42px;
    font-weight: 700;
    color: #ff5e2a;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.lt-stat__text {
    font-size: 16px;
    color: #5A5A5A;
    font-weight: 500;
}

.lt-about-text-section {
    padding: 60px 0 90px;
    background: #fff;
}

.lt-about__content {
    max-width: 900px;
    margin: 0 auto;
}

.lt-about__lead {
    font-size: 22px;
    font-weight: 500;
    color: #111314;
    line-height: 1.5;
    margin-bottom: 48px;
    padding-bottom: 24px;
    border-bottom: 2px solid #ff5e2a20;
}

.lt-about__content h2 {
    font-size: 28px;
    font-weight: 600;
    color: #111314;
    margin: 48px 0 20px 0;
}

.lt-about__content h2:first-of-type {
    margin-top: 0;
}

.lt-about__content p {
    font-size: 16px;
    line-height: 1.7;
    color: #5A5A5A;
    margin-bottom: 20px;
}

.lt-about__signature {
    font-size: 18px;
    font-weight: 500;
    color: #111314;
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid #eee;
}

@media (max-width: 768px) {
    .lt-page-header__title {
        font-size: 32px;
    }

    .lt-stats__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
        padding: 32px 24px;
    }

    .lt-stat__number {
        font-size: 32px;
    }

    .lt-about__lead {
        font-size: 18px;
    }

    .lt-about__content h2 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .lt-stats__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}


.lt-page-header {
    text-align: center;
    padding: 60px 0 40px;
    background: #fafafc;
    border-bottom: 1px solid #eee;
}

.lt-page-header__title {
    font-size: 48px;
    font-weight: 600;
    color: #111314;
    margin-bottom: 16px;
}

.lt-page-header__subtitle {
    font-size: 18px;
    color: #5A5A5A;
    max-width: 600px;
    margin: 20px auto 0;
}

.lt-breadcrumbs {
    font-size: 14px;
    color: #5A5A5A;
}

.lt-breadcrumbs a {
    color: #5A5A5A;
    text-decoration: none;
}

.lt-breadcrumbs a:hover {
    color: #ff5e2a;
}

.lt-breadcrumbs__sep {
    margin: 0 8px;
}

.lt-services-section {
    padding: 70px 0 90px;
    background: #fff;
}

.lt-services__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 30px;
}

.lt-service__card {
    background: #f4f4f4;
    border-radius: 20px;
    padding: 32px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lt-service__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.08);
}

.lt-service__icon {
    width: 52px;
    height: 52px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.lt-service__icon img {
    width: 28px;
    height: 28px;
}

.lt-service__title {
    font-size: 24px;
    font-weight: 600;
    color: #111314;
    margin-bottom: 14px;
}

.lt-service__text {
    font-size: 15px;
    line-height: 1.5;
    color: #5A5A5A;
    margin-bottom: 18px;
}

.lt-service__list {
    list-style: none;
    padding-left: 0;
    margin-top: 16px;
}

.lt-service__list li {
    font-size: 14px;
    color: #5A5A5A;
    padding-left: 20px;
    position: relative;
    margin-bottom: 8px;
}

.lt-service__list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ff5e2a;
    font-weight: 600;
    font-size: 13px;
}

.lt-icon-bg-1 {
    background: #ff5e2a1a;
}

.lt-icon-bg-2 {
    background: #8b5dfc1a;
}

.lt-icon-bg-3 {
    background: #47c2ff1a;
}

.lt-icon-bg-4 {
    background: #1fc16b1a;
}

@media (max-width: 900px) {
    .lt-services__grid {
        gap: 30px;
    }

    .lt-service__title {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .lt-page-header__title {
        font-size: 32px;
    }

    .lt-services__grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .lt-service__card {
        padding: 28px;
    }
}































@media (max-width: 992px) {
    .lt-container {
        padding: 0 20px;
    }

    .lt-title {
        font-size: 42px;
    }

    .lt-row-2,
    .lt-row-3 {
        grid-template-columns: 1fr;
    }

    .lt-grid {
        flex-direction: column;
    }

    .lt-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 32px 32px;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.05);
        transition: right 0.3s;
        z-index: 1000;
        gap: 32px;
    }

    .lt-nav.open {
        right: 0;
    }

    .lt-nav__menu {
        flex-direction: column;
        gap: 24px;
    }

    .lt-menu-toggle {
        display: block;
    }

    .lt-header__inner {
        position: relative;
    }

    .lt-lang {
        margin-top: 10px;
    }

    .lt-why {
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    .lt-title {
        font-size: 32px;
    }

    .lt-buttons {
        flex-direction: column;
        align-items: center;
    }

    .lt-title {
        font-size: 32px !important;
    }
}