* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #0e0e13;
    font-family: 'Inter Tight', 'Inter', sans-serif;
    color: #fff;
    line-height: 1.4;
    scroll-behavior: smooth;
}

.tsContainer {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
}


a {
    text-decoration: none;
    transition: all 0.25s ease;
}


.tsHeader {
    border-bottom: 2px solid #ffffff1a;
    padding: 20px 0;
    position: relative;
    background: #0e0e13;
}

.tsHeaderInner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.tsLogoArea {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.tsLogoImg {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.tsBrandName {
    font-size: 1.7rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.02em;
}

.tsNavMenu {
    display: flex;
    gap: 36px;
    align-items: center;
}

.tsNavLink {
    color: #fff;
    font-weight: 500;
    font-size: 1rem;
    position: relative;
}

.tsNavLink:hover {
    color: #d53a02;
}

.tsHeaderBtn {
    background: #d53a02;
    color: #fff;
    padding: 10px 28px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: 0.2s;
}

.tsHeaderBtn:hover {
    background: #b12e00;
    transform: scale(1.02);
}

.tsBtnDot {
    width: 11px;
    height: 11px;
    background: #fff;
    border-radius: 50%;
    display: inline-block;
}


.tsMobileToggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
    background: none;
    border: none;
    color: #fff;
}


.tsBanner {
    background: url('../img/main.webp') center center/cover no-repeat;
    border-radius: 32px;
    padding: 140px 32px;
    text-align: center;
    position: relative;
}

.tsBannerContent {
    max-width: 780px;
    margin: 0 auto;
}

.tsSubtitleBadge {
    background: #14141b;
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 24px;
    border: 1px solid #26262b;
}

.tsMainTitle {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 600;
    font-size: 4rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #fff;
    margin-bottom: 20px;
}

.tsBannerText {
    color: #A19FA0;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 32px;
    font-weight: 400;
}

.tsPrimaryBtn {
    background: #d53a02;
    color: #fff;
    border-radius: 40px;
    padding: 12px 36px;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: 0.2s;
}

.tsPrimaryBtn .tsBtnDot {
    background: #fff;
}

.tsPrimaryBtn:hover {
    background: #b12e00;
}


.tsGrid3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 70px 0;
}

.tsAdvBlock {
    background: #14141b;
    border: 1px solid #26262b;
    border-radius: 20px;
    padding: 32px 24px;
    transition: transform 0.2s;
}

.tsAdvBlock:hover {
    transform: translateY(-5px);
}

.tsAdvIcon {
    width: 46px;
    margin-bottom: 14px;
}

.tsAdvTitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #fff;
}

.tsAdvText {
    color: #A19FA0;
    line-height: 1.45;
    font-weight: 400;
}


.tsAboutWrap {
    display: flex;
    gap: 48px;
    margin: 80px 0;
    align-items: flex-start;
}

.tsAboutLeft {
    flex: 1;
}

.tsAboutRight {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.tsAboutCard {
    background: #14141b;
    border: 1px solid #26262b;
    border-radius: 20px;
    padding: 24px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.tsAboutCardIcon {
    width: 48px;
    flex-shrink: 0;
}

.tsAboutCardContent h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.tsAboutCardContent p {
    color: #A19FA0;
    font-weight: 400;
    line-height: 1.4;
}


.tsFeaturesSection {
    background: url('../img/section.svg') center/cover no-repeat;
    border-radius: 32px;
    margin: 80px 0;
    padding: 60px 32px;
}

.tsFeaturesHeader {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.tsFeaturesGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.tsFeatureCard {
    background: url('../img/block.jpg') center/cover no-repeat;
    border-radius: 20px;
    padding: 28px 24px;
    backdrop-filter: brightness(0.85);
    background-blend-mode: overlay;
    background-color: rgba(20, 20, 27, 0.75);
    border: 1px solid #26262b;
    transition: 0.2s;
}

.tsFeatureCard:hover {
    transform: scale(1.01);
    border-color: #d53a02;
}

.tsFeatureIcon {
    width: 42px;
    margin-bottom: 10px;
}

.tsFeatureTitle {
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.tsFeatureText {
    color: #E0E0E0;
    font-weight: 400;
    font-size: 0.95rem;
}


.tsStatsRow {
    display: flex;
    justify-content: center;
    background: #14141b;
    border: 1px solid #26262b;
    border-radius: 20px;
    padding: 48px 32px;
    margin: 70px 0;
}

.tsStatItem {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.tsStatNumber {
    font-size: 3rem;
    font-weight: 800;
    color: #d53a02;
    line-height: 1;
}

.tsStatText {
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
}

.tsDividerVertical {
    width: 1px;
    background: #26262b;
    margin: 0 20px;
}


.tsSuitsGrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin: 60px 0;
}

.tsSuitBlock {
    background: #14141b;
    border: 1px solid #26262b;
    border-radius: 20px;
    padding: 28px 20px;
    transition: 0.2s;
}

.tsSuitHeader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.tsSuitSub {
    font-weight: 500;
    font-size: 0.85rem;
    background: rgba(213, 58, 2, 0.2);
    padding: 5px 12px;
    border-radius: 40px;
    color: #d53a02;
}

.tsSuitIcon {
    width: 40px;
}

.tsSuitTitle {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.tsSuitText {
    color: #A19FA0;
    font-weight: 400;
}


.tsCtaSection {
    background: url('../img/cta.svg') center/cover no-repeat;
    border-radius: 32px;
    margin: 70px 0;
    padding: 50px 32px;
    text-align: center;
    border: 1px solid #26262b;
    background-color: #14141b;
}

.tsCtaContent {
    max-width: 680px;
    margin: 0 auto;
}


.tsFooter {
    border-top: 1px solid #26262b;
    padding: 50px 0 30px;
    margin-top: 40px;
}

.tsFooterGrid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 48px;
}

.tsFooterCol {
    flex: 1;
    min-width: 160px;
}

.tsFooterLogo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.tsFooterLogoImg {
    width: 38px;
}

.tsFooterDesc {
    color: #A19FA0;
    max-width: 240px;
    font-size: 0.9rem;
}

.tsFooterMenuTitle {
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1rem;
}

.tsFooterLinks {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.tsFooterLinks a,
.tsContactRow {
    color: #A19FA0;
    font-size: 0.9rem;
    transition: 0.2s;
}

.tsFooterLinks a:hover {
    color: #d53a02;
}

.tsContactRow {
    margin-bottom: 10px;
    display: block;
}

.tsCopyright {
    text-align: left;
    color: #5a5a60;
    font-size: 0.8rem;
    padding-top: 24px;
    border-top: 1px solid #26262b;
}

.tsContactHero {
    background: url('../img/section.svg') center/cover no-repeat;
    padding: 80px 0 60px;
    text-align: center;
    border-radius: 0 0 32px 32px;
    margin-bottom: 60px;
}

.tsBreadcrumb {
    color: #A19FA0;
    font-size: 14px;
    margin-bottom: 16px;
}

.tsBreadcrumb a {
    color: #d53a02;
    text-decoration: none;
}

.tsBreadcrumb span {
    color: #fff;
}

.tsContactHero h1 {
    font-size: 3rem;
    font-weight: 600;
    color: #fff;
}

.tsContactGrid {
    display: flex;
    gap: 48px;
    margin-bottom: 80px;
}

.tsContactLeft {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.tsContactCard {
    background: #14141b;
    border: 1px solid #26262b;
    border-radius: 20px;
    padding: 28px;
    transition: 0.2s;
}

.tsContactIcon {
    width: 32px;
    margin-bottom: 10px;
}

.tsContactCard h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.tsContactCard p {
    color: #A19FA0;
    line-height: 1.5;
    font-weight: 400;
}

.tsContactRight {
    flex: 1;
    background: #14141b;
    border: 1px solid #26262b;
    border-radius: 20px;
    padding: 36px 32px;
}

.tsFormTitle {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 28px;
}

.tsFormGroup {
    margin-bottom: 22px;
}

.tsFormGroup input,
.tsFormGroup select,
.tsFormGroup textarea {
    width: 100%;
    background: #0e0e13;
    border: 1px solid #26262b;
    border-radius: 16px;
    padding: 14px 18px;
    color: #fff;
    font-family: 'Inter Tight', sans-serif;
    font-size: 1rem;
    transition: 0.2s;
}

.tsFormGroup input:focus,
.tsFormGroup select:focus,
.tsFormGroup textarea:focus {
    outline: none;
    border-color: #d53a02;
}

.tsFormGroup textarea {
    resize: vertical;
    min-height: 100px;
}

.tsSubmitBtn {
    background: #d53a02;
    color: #fff;
    border: none;
    border-radius: 40px;
    padding: 14px 32px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.2s;
    width: 100%;
}

.tsSubmitBtn:hover {
    background: #b12e00;
    transform: scale(1.01);
}

.tsThankYouMsg {
    margin-top: 20px;
    padding: 14px;
    background: #1e2a1f;
    border-radius: 30px;
    text-align: center;
    color: #7ed957;
    font-weight: 500;
    display: none;
}

@media (max-width: 768px) {
    .tsContactGrid {
        flex-direction: column;
    }

    .tsContactHero h1 {
        font-size: 2.2rem;
    }
}






.tsLegalHero {
    background: url('../img/section.svg') center/cover no-repeat;
    padding: 70px 0 50px;
    text-align: center;
    border-radius: 0 0 32px 32px;
    margin-bottom: 50px;
}

.tsLegalHero h1 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.tsUpdateDate {
    color: #A19FA0;
    font-size: 0.9rem;
}

.tsLegalContent {
    background: #14141b;
    border: 1px solid #26262b;
    border-radius: 24px;
    padding: 48px 56px;
    margin-bottom: 60px;
}

.tsLegalContent h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 32px 0 16px 0;
    color: #fff;
}

.tsLegalContent h2:first-of-type {
    margin-top: 0;
}

.tsLegalContent h3 {
    font-size: 1.3rem;
    font-weight: 500;
    margin: 24px 0 12px 0;
    color: #d53a02;
}

.tsLegalContent p {
    color: #A19FA0;
    margin-bottom: 16px;
    font-weight: 400;
}

.tsLegalContent ul,
.tsLegalContent ol {
    margin: 16px 0 20px 32px;
    color: #A19FA0;
}

.tsLegalContent li {
    margin-bottom: 8px;
}

.tsLegalContent a {
    color: #d53a02;
    text-decoration: none;
}

.tsLegalContent a:hover {
    text-decoration: underline;
}

.tsContactBlockLegal {
    background: #0e0e13;
    border-radius: 20px;
    padding: 24px 28px;
    margin-top: 36px;
}

.tsContactBlockLegal p {
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .tsLegalContent {
        padding: 28px 20px;
    }

    .tsLegalHero h1 {
        font-size: 2.2rem;
    }
}


.tsAboutHero {
    background: url('../img/section.svg') center/cover no-repeat;
    padding: 70px 0 50px;
    text-align: center;
    border-radius: 0 0 32px 32px;
    margin-bottom: 60px;
}

.tsAboutHero h1 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.tsBreadcrumb {
    color: #A19FA0;
    font-size: 14px;
    margin-bottom: 16px;
}

.tsBreadcrumb a {
    color: #d53a02;
    text-decoration: none;
}

.tsAboutSplit {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    position: relative;
    align-items: flex-start;
}

.tsAboutLeftFixed {
    flex: 1;
    position: sticky;
    top: 30px;
    align-self: flex-start;
}

.tsAboutLeftFixed h2 {
    font-size: 2.2rem;
    font-weight: 500;
    margin-bottom: 24px;
    line-height: 1.2;
}

.tsAboutLeftFixed .tsLeadText {
    color: #A19FA0;
    font-size: 1.1rem;
    margin-bottom: 28px;
    font-weight: 400;
}

.tsAboutLeftFixed p {
    color: #A19FA0;
    margin-bottom: 20px;
}

.tsAboutRightScroll {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.tsAboutCardRow {
    background: #14141b;
    border: 1px solid #26262b;
    border-radius: 20px;
    padding: 24px 28px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    transition: 0.2s;
}

.tsAboutCardRow:hover {
    transform: translateX(6px);
    border-color: #d53a02;
}

.tsCardContent {
    flex: 1;
}

.tsCardContent h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
}

.tsCardContent p {
    color: #A19FA0;
    font-weight: 400;
}

.tsCardIcon {
    width: 42px;
    flex-shrink: 0;
}

.tsTwoColumns {
    display: flex;
    gap: 32px;
    margin: 70px 0 90px;
}

.tsInfoBlock {
    background: #14141b;
    border: 1px solid #26262b;
    border-radius: 20px;
    padding: 36px 32px;
    flex: 1;
}

.tsInfoBlock h3 {
    font-size: 1.7rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.tsInfoBlock p {
    color: #A19FA0;
    margin-bottom: 24px;
    font-weight: 400;
}

.tsInfoList {
    list-style: none;
    padding: 0;
}

.tsInfoList li {
    color: #A19FA0;
    margin-bottom: 14px;
    padding-left: 24px;
    position: relative;
    font-weight: 400;
}

.tsInfoList li:before {
    content: "▹";
    color: #d53a02;
    position: absolute;
    left: 0;
}

@media (max-width: 992px) {
    .tsAboutSplit {
        flex-direction: column;
    }

    .tsAboutLeftFixed {
        position: relative;
        top: 0;
        margin-bottom: 20px;
    }

    .tsTwoColumns {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .tsAboutHero h1 {
        font-size: 2.2rem;
    }

    .tsAboutCardRow {
        flex-direction: column;
    }

    .tsCardIcon {
        align-self: flex-start;
    }
}

.tsServicesHero {
    background: url('../img/section.svg') center/cover no-repeat;
    padding: 70px 0 50px;
    text-align: center;
    border-radius: 0 0 32px 32px;
    margin-bottom: 60px;
}

.tsServicesHero h1 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.tsBreadcrumb {
    color: #A19FA0;
    font-size: 14px;
    margin-bottom: 16px;
}

.tsBreadcrumb a {
    color: #d53a02;
    text-decoration: none;
}

.tsServicesGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 90px;
}

.tsServiceCard {
    background: #14141b;
    border: 1px solid #26262b;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.tsServiceCard:hover {
    border-color: #d53a02;
    box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.5);
}

.tsServiceImage {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.tsServiceContent {
    padding: 28px 24px 32px;
}

.tsServiceTitle {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 14px;
    color: #fff;
}

.tsServiceDesc {
    color: #A19FA0;
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1.5;
}

.tsServiceList {
    list-style: none;
    padding: 0;
}

.tsServiceList li {
    color: #A19FA0;
    margin-bottom: 10px;
    padding-left: 22px;
    position: relative;
    font-size: 0.95rem;
    font-weight: 400;
}

.tsServiceList li:before {
    content: "▹";
    color: #d53a02;
    position: absolute;
    left: 0;
}

@media (max-width: 992px) {
    .tsServicesGrid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .tsServicesGrid {
        grid-template-columns: 1fr;
    }

    .tsServicesHero h1 {
        font-size: 2.2rem;
    }
}

















@media (max-width: 992px) {

    .tsGrid3,
    .tsFeaturesGrid,
    .tsSuitsGrid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tsAboutWrap {
        flex-direction: column;
    }

    .tsStatsRow {
        flex-wrap: wrap;
        gap: 28px;
    }

    .tsStatItem {
        flex: auto;
        justify-content: flex-start;
    }

    .tsDividerVertical {
        display: none;
    }
}

@media (max-width: 768px) {
    .tsMobileToggle {
        display: block;
    }

    .tsNavMenu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 70%;
        height: calc(100vh - 80px);
        background: #0e0e13;
        flex-direction: column;
        align-items: flex-start;
        padding: 40px 32px;
        gap: 32px;
        border-right: 1px solid #26262b;
        transition: 0.3s;
        z-index: 1000;
    }

    .tsNavMenu.active {
        left: 0;
    }

    .tsHeaderBtn {
        margin-left: 0;
    }

    .tsMainTitle {
        font-size: 2.4rem;
    }

    .tsGrid3,
    .tsFeaturesGrid,
    .tsSuitsGrid {
        grid-template-columns: 1fr;
    }

    .tsFooterGrid {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .tsBanner {
        padding: 50px 20px;
    }

    .tsStatItem {
        flex-direction: column;
        text-align: center;
    }

    .tsBanner {
        margin-top: 12px;
        width: 96%;
        margin: 16px auto 0 auto;
    }

    .tsMainTitle {
        font-size: 2rem !important;
    }

    .tsFeaturesSection {
        padding: 50px 0px;
    }
    .tsCtaSection{
        border-radius: 20px;
    }
}

img {
    display: block;
}