* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #fff url('../img/top_bg.png') center top no-repeat;
    background-size: 100% auto;
    color: #0A0400;
    line-height: 1.4;
}

.tb-container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.tb-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #0A0400;
    line-height: 1.2;
}

.tb-text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: #424242;
    line-height: 1.5;
}

.tb-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #0A0400;
    color: white;
    border-radius: 32px;
    padding: 13px 24px 14px 24px;
    font-weight: 400;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.25s ease;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    line-height: 1;
}

.tb-btn--accent {
    background: #f3681d;
    color: #0A0400;
    color: #fff;
}

.tb-btn--outline-light {
    background: transparent;
    border: 1px solid #0A0400;
    color: #0A0400;
}

.tb-btn:hover {
    opacity: 0.85;
    transform: translateY(-2px);
}

.tb-card {
    background: #f6f6f6;
    border: 1px solid #f6f6f6;
    border-radius: 20px;
    transition: 0.2s;
}

.tb-card-accent {
    background: #f3681d1a;
    border: 1px solid #f6efe1;
    border-radius: 16px;
}

.tb-icon-box {
    width: 56px;
    height: 56px;
    border: 1px solid #f3681d1a;
    border-radius: 16px;
    background: linear-gradient(#fffefc, #f6efe1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.tb-img-block {
    background: linear-gradient(120deg, #f6f6f600, #f6efe1);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
}

.tb-header {
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.tb-logo a {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.tb-logo-img {
    height: 40px;
    width: auto;
}

.tb-brand-text {
    font-weight: 700;
    font-size: 1.5rem;
    color: #0A0400;
}

.tb-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.tb-nav-list {
    display: flex;
    gap: 28px;
    list-style: none;
}

.tb-nav-link {
    text-decoration: none;
    font-weight: 500;
    color: #0A0400;
    transition: color 0.2s;
}

.tb-nav-link:hover {
    color: #f3681d;
}

.tb-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.tb-menu-toggle span {
    width: 28px;
    height: 2px;
    background: #0A0400;
    border-radius: 2px;
    transition: 0.2s;
}

@media (max-width: 880px) {
    .tb-menu-toggle {
        display: flex;
    }

    .tb-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 320px;
        height: 100%;
        background: white;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 32px 32px;
        z-index: 1000;
        transition: left 0.3s ease;
    }

    .tb-nav.active {
        left: 0;
    }

    .tb-nav-list {
        flex-direction: column;
        gap: 24px;
        width: 100%;
    }

    .tb-nav-link {
        font-size: 1.3rem;
    }

    .tb-header .tb-btn {
        margin-top: 0;
    }

    .tb-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.4);
        z-index: 999;
        display: none;
    }

    .tb-overlay.active {
        display: block;
    }
}

.tb-banner {
    text-align: center;
    padding: 70px 0 80px;
}

.tb-banner-title {
    font-size: 70px;
    max-width: 1000px;
    margin: 0 auto 20px;
}

.tb-banner-text {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 32px;
}

.tb-banner-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.tb-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 60px 0;
}

.tb-plus-item {
    text-align: center;
    padding: 24px 16px;
}

.tb-plus-icon {
    margin: 0 auto 20px;
}

.tb-about {
    display: flex;
    gap: 60px;
    align-items: center;
    margin: 80px 0;
    flex-wrap: wrap;
}

.tb-about-content {
    flex: 1;
}

.tb-about-image {
    flex: 1;
}

.tb-about-image img {
    width: 100%;
    border-radius: 32px;
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.1);
}

.tb-section-title {
    font-size: 2.2rem;
    margin-bottom: 24px;
}

.tb-about-text p {
    margin-bottom: 20px;
}

.tb-services {
    background: #0a0400;
    padding: 60px 0;
}

.tb-services .tb-section-title {
    color: #fff;
}

.tb-services-header .tb-text {
    color: #ccc;
}

.tb-services-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.tb-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.tb-service-card {
    background: linear-gradient(#fff0e8, #fff);
    border-radius: 20px;
    padding: 32px 24px;
    transition: all 0.2s ease;
    border: 1px solid rgba(243, 104, 29, 0.1);
}

.tb-service-icon {
    margin-bottom: 24px;
}

.tb-service-title {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.tb-btn-wrapper {
    text-align: center;
    margin-top: 48px;
}

.tb-why {
    display: flex;
    gap: 60px;
    align-items: center;
    margin: 80px 0;
    flex-wrap: wrap;
    flex-direction: row-reverse;
}

.tb-why-content {
    flex: 1;
}

.tb-why-image {
    flex: 1;
}

.tb-why-image img {
    width: 100%;
    border-radius: 32px;
    box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.08);
}

.tb-check-list {
    list-style: none;
    margin: 28px 0 32px;
}

.tb-check-list li {
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 500;
    color: #0A0400;
}

.tb-check-list li::before {
    content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="22" height="22" viewBox="0 0 24 24" fill="none" stroke="%23f3681d" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"></polyline></svg>');
    display: inline-block;
    width: 22px;
    height: 22px;
}

.tb-cta {
    text-align: center;
    padding: 80px 20px;
    background: url('../img/top_bg.png') center top no-repeat;
    background-size: cover;
    border-radius: 38px;
    margin: 60px 0;
}

.tb-cta-title {
    font-size: 2.3rem;
    margin-bottom: 20px;
}

.tb-cta-text {
    max-width: 600px;
    margin: 0 auto 32px;
    font-size: 1.1rem;
}

.tb-footer {
    background: #fafaf9;
    padding: 60px 0 30px;
    border-radius: 32px 32px 0 0;
    margin-top: 40px;
}

.tb-footer-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.tb-footer-col {
    flex: 1;
    min-width: 180px;
}

.tb-footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.tb-footer-logo img {
    height: 40px;
}

.tb-footer-text {
    max-width: 260px;
    line-height: 1.5;
}

.tb-footer-menu ul,
.tb-footer-contacts p {
    list-style: none;
}

.tb-footer-menu a {
    font-size: 14px;
}

.tb-footer-contacts p {
    font-size: 14px;
}

.tb-footer-contacts {
    max-width: 300px;
}

.tb-footer-menu li {
    margin-bottom: 12px;
}

.tb-footer-menu a {
    text-decoration: none;
    color: #424242;
    transition: color 0.2s;
}

.tb-footer-menu a:hover {
    color: #f3681d;
}

.tb-footer-contacts p {
    margin-bottom: 12px;
    color: #424242;
}

.tb-footer-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    border-top: 1px solid #e8e5e0;
    margin-top: 40px;
    padding-top: 28px;
    font-size: 0.85rem;
}

.tb-footer-links a {
    text-decoration: none;
    color: #424242;
    margin-left: 28px;
}

.tb-contact {
    padding: 60px 0 80px;
}

.tb-contact-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 56px;
}

.tb-contact-title {
    font-size: 3rem;
    margin-bottom: 16px;
}

.tb-contact-subtitle {
    font-size: 1.2rem;
    opacity: 0.85;
}

.tb-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

@media (max-width: 900px) {
    .tb-contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

.tb-info-heading {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.tb-info-text {
    margin-bottom: 32px;
}

.tb-contact-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.tb-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.tb-contact-icon {
    width: 52px;
    height: 52px;
    background: #f3681d1a;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tb-contact-details {
    flex: 1;
}

.tb-contact-label {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #f3681d;
    margin-bottom: 6px;
}

.tb-contact-value {
    font-size: 1.1rem;
    font-weight: 500;
    color: #0A0400;
    text-decoration: none;
    line-height: 1.4;
}

.tb-contact-value:hover {
    color: #f3681d;
}

.tb-contact-form {
    background: #f6f6f6;
    padding: 36px 32px;
    border-radius: 28px;
    border: 1px solid #f6efe1;
}

.tb-form-heading {
    font-size: 1.6rem;
    margin-bottom: 28px;
}

.tb-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.tb-form-group {
    margin-bottom: 20px;
    width: 100%;
}

.tb-form-group input,
.tb-form-group textarea {
    width: 100%;
    padding: 14px 18px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    border: 1px solid #e2e0db;
    border-radius: 14px;
    background: white;
    transition: all 0.2s;
    outline: none;
    color: #0A0400;
}

.tb-form-group input:focus,
.tb-form-group textarea:focus {
    border-color: #f3681d;
    box-shadow: 0 0 0 3px rgba(243, 104, 29, 0.1);
}

.tb-submit-btn {
    width: 100%;
    cursor: pointer;
    background: #f3681d;
    color: #fff;
    font-weight: 400;
    padding: 14px;
}

.tb-submit-btn:hover {
    background: #e05a0e;
}

.tb-form-status {
    margin-top: 20px;
    text-align: center;
    font-weight: 500;
    color: #0A0400;
    background: #e9f5e9;
    padding: 12px;
    border-radius: 12px;
    display: none;
}

.tb-form-status.success {
    display: block;
    background: #e0f2e3;
    color: #1e7b3c;
}


.tb-legal {
    padding: 60px 0 100px;
}

.tb-legal-header {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 48px;
}

.tb-legal-title {
    font-size: 3rem;
    margin-bottom: 16px;
}

.tb-legal-updated {
    font-size: 0.9rem;
    color: #f3681d;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.tb-legal-content {
    max-width: 1000px;
    margin: 0 auto;
}

.tb-legal-section {
    margin-bottom: 40px;
}

.tb-legal-section-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: #0A0400;
    margin-bottom: 20px;
    padding-bottom: 8px;
    border-bottom: 2px solid #f3681d1a;
}

.tb-legal-subsection {
    margin: 24px 0 20px;
}

.tb-legal-subtitle {
    font-size: 1.2rem;
    font-weight: 600;
    color: #0A0400;
    margin-bottom: 12px;
}

.tb-legal-text {
    color: #424242;
    line-height: 1.65;
    margin-bottom: 16px;
}

.tb-legal-list {
    margin: 16px 0 16px 24px;
    color: #424242;
    line-height: 1.65;
}

.tb-legal-list li {
    margin-bottom: 10px;
}

.tb-legal-contact {
    background: #f6f6f6;
    border-radius: 20px;
    padding: 28px 32px;
    margin-top: 40px;
    border: 1px solid #f6efe1;
}

.tb-legal-contact p {
    margin-bottom: 10px;
    color: #0A0400;
}

.tb-legal-contact a {
    color: #f3681d;
    text-decoration: none;
}

.tb-legal-contact a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .tb-legal-title {
        font-size: 2.2rem;
    }

    .tb-legal-section-title {
        font-size: 1.4rem;
    }

    .tb-legal {
        padding: 40px 0 60px;
    }
}


.tb-about-full {
    padding: 60px 0 80px;
}

.tb-about-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 48px;
}

.tb-about-title {
    font-size: 3rem;
    margin-bottom: 20px;
}

.tb-about-subtitle {
    font-size: 1.2rem;
    line-height: 1.5;
    opacity: 0.85;
}


.tb-about-full-image {
    width: 100%;
    margin: 40px 0 56px;
    overflow: hidden;
}

.tb-about-full-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 460px;
    border-radius: 20px;
}


.tb-stats-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    margin: 48px 0 64px;
    flex-wrap: wrap;
}

.tb-stat-item {
    text-align: center;
    min-width: 140px;
}

.tb-stat-number {
    font-size: 2.8rem;
    font-weight: 700;
    color: #f3681d;
    line-height: 1.2;
    margin-bottom: 8px;
}

.tb-stat-text {
    font-size: 1rem;
    color: #424242;
    font-weight: 500;
}

.tb-stat-divider {
    width: 1px;
    height: 50px;
    background: #e0ddd5;
}


.tb-about-detailed {
    max-width: 1000px;
    margin: 0 auto;
}

.tb-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.tb-about-block {
    background: #f6f6f6;
    border-radius: 24px;
    padding: 32px;
    border: 1px solid #f6efe1;
}

.tb-about-full-block {
    background: linear-gradient(120deg, #f6f6f600, #f6efe1);
    border-radius: 24px;
    padding: 40px;
    margin-bottom: 48px;
}

.tb-about-block-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: #0A0400;
    margin-bottom: 20px;
}

.tb-about-block p {
    margin-bottom: 16px;
    color: #424242;
    line-height: 1.6;
}

.tb-about-block p:last-child {
    margin-bottom: 0;
}


.tb-about-contact {
    background: #f3681d1a;
    border: 1px solid #f6efe1;
    border-radius: 20px;
    padding: 32px 36px;
    margin-top: 48px;
    text-align: center;
}

.tb-about-contact p {
    margin-bottom: 16px;
    font-weight: 500;
    color: #0A0400;
}

.tb-about-contact-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    font-size: 1rem;
    color: #424242;
}

.tb-about-contact-links a {
    color: #f3681d;
    text-decoration: none;
    font-weight: 500;
}

.tb-about-contact-links a:hover {
    text-decoration: underline;
}

.tb-contact-separator {
    color: #d0ccc4;
}


@media (max-width: 768px) {
    .tb-about-title {
        font-size: 2.2rem;
    }

    .tb-stats-row {
        gap: 20px;
    }

    .tb-stat-divider {
        display: none;
    }

    .tb-stat-item {
        min-width: 120px;
    }

    .tb-stat-number {
        font-size: 2rem;
    }

    .tb-about-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .tb-about-block,
    .tb-about-full-block {
        padding: 24px;
    }

    .tb-about-block-title {
        font-size: 1.4rem;
    }

    .tb-about-contact-links {
        flex-direction: column;
        gap: 8px;
    }

    .tb-contact-separator {
        display: none;
    }
}


.tb-solutions {
    padding: 70px 0 90px;
    background: #fff;
    border-radius: 22px;
}

.tb-solutions-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 56px;
}

.tb-solutions-title {
    font-size: 2.6rem;
    margin-bottom: 20px;
}

.tb-solutions-subtitle {
    font-size: 1.2rem;
    opacity: 0.85;
}


.tb-solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 56px;
}


.tb-solution-card {
    background: linear-gradient(135deg, #fff 0%, #fefaf7 100%);
    border: 1px solid #f6efe1;
    border-radius: 28px;
    padding: 36px 32px;
    transition: all 0.3s ease;
}

.tb-solution-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.08);
    border-color: #f3681d40;
}

.tb-solution-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 24px;
    background: linear-gradient(#fffefc, #f6efe1);
    border-radius: 12px;
    border: 1px solid #f3681d1a;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tb-solution-icon img {
    width: 50%;
    height: 50%;
    object-fit: contain;
}

.tb-solution-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0A0400;
    margin-bottom: 14px;
}

.tb-solution-description {
    font-size: 1rem;
    color: #424242;
    line-height: 1.5;
    margin-bottom: 20px;
}

.tb-solution-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tb-solution-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: #424242;
    line-height: 1.45;
}

.tb-solution-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #f3681d;
    font-weight: 700;
    font-size: 1rem;
}


.tb-solutions-footer {
    text-align: center;
    background: #f6f6f6;
    border-radius: 24px;
    padding: 36px 32px;
    border: 1px solid #f6efe1;
}

.tb-solutions-footer p {
    font-size: 1.1rem;
    font-weight: 500;
    color: #0A0400;
    margin-bottom: 20px;
}


@media (max-width: 900px) {
    .tb-solutions-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .tb-solutions-title {
        font-size: 2rem;
    }

    .tb-solution-card {
        padding: 28px 24px;
    }

    .tb-solution-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .tb-solutions {
        padding: 50px 0 60px;
    }

    .tb-solution-card {
        padding: 24px 20px;
    }

    .tb-solution-icon {
        width: 52px;
        height: 52px;
    }
}
































@media (max-width: 850px) {

    .tb-grid-4,
    .tb-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tb-about,
    .tb-why {
        flex-direction: column;
    }

    .tb-footer-bottom {
        flex-direction: column;
        gap: 15px;
        align-items: center;
        text-align: center;
    }

    .tb-footer-links a {
        margin: 0 12px;
    }

    .tb-banner-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 550px) {

    .tb-grid-4,
    .tb-services-grid {
        grid-template-columns: 1fr;
    }

    .tb-cta-title {
        font-size: 2rem;
    }

    .tb-cta {
        border-radius: 20px;
    }

    .tb-img-block {
        padding: 30px;
    }

    .tb-nav-link {
        font-size: 1rem;
    }

    .tb-banner {
        padding: 70px 0 50px 0;
    }

    .tb-banner-text {
        font-size: 1.1rem;
    }
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.tb-icon-box svg,
.tb-service-card svg {
    display: block;
}