:root {
    --accent-color: #f4ba23;
    --background-color: #0f172a;
    --heading-color: #fff;
    --text-color: #ffffffb3;
    --button-color: #f4ba23;
    --border-color: #374151;
    --gradient-start: #fbbf24;
    --gradient-end: #c026d3;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Figtree', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.4;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    line-height: 1.2;
}

.tm_container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


.tm_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 15px;
    border-bottom: 1px solid var(--border-color);
}

.tm_logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--heading-color);
    display: flex;
    text-transform: uppercase;
    align-items: center;
    gap: 6px;
    text-decoration: none;
}

.tm_footer-logo {
    gap: 6px;
}

.tm_footer-logo img {
    width: 40px;
    margin-top: -2px;
}

.tm_logo img {
    width: 40px;
    margin-top: -2px;
}

.tm_logo i {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-right: 10px;
    font-size: 28px;
}

.tm_nav {
    display: flex;
    align-items: center;
}

.tm_nav-list {
    display: flex;
    list-style: none;
    margin-right: 30px;
}

.tm_nav-item {
    margin: 0 15px;
}

.tm_nav-link {
    color: var(--text-color);
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 500;
    transition: color 0.3s;
}

.tm_nav-link:hover {
    color: var(--accent-color);
}

.tm_button {
    background-color: var(--button-color);
    color: var(--background-color);
    border: none;
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
    font-family: 'Figtree', sans-serif;
}

.tm_button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(244, 186, 35, 0.2);
}


.tm_banner {
    text-align: center;
    padding: 80px 0 40px;
    position: relative;
    background: url('../content/bg.jpg') center no-repeat;
    background-size: cover;
}

.tm_banner-subtitle {
    font-size: 18px;
    color: var(--accent-color);
    margin-bottom: 15px;
    font-weight: 500;
}

.tm_banner-title {
    font-size: 54px;
    color: var(--heading-color);
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.tm_banner-text {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 30px;
}

.tm_browser-image {
    max-width: 800px;
    margin: 40px auto;
    display: block;
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}


.tm_section {
    padding: 80px 0;
}

.tm_about {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.tm_about-content {
    flex: 1;
}

.tm_section-title {
    font-size: 36px;
    color: var(--heading-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.tm_about-text {
    margin-bottom: 25px;
}

.tm_about-list {
    list-style: none;
}

.tm_about-item {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.tm_about-item i {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-right: 10px;
    font-size: 20px;
    margin-top: 3px;
}

.tm_about-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.tm_about-image img {
    width: 100%;
    height: auto;
    display: block;
}


.tm_features {
    text-align: center;
}

.tm_features-intro {
    max-width: 700px;
    margin: 0 auto 60px;
}

.tm_features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.tm_feature-card {
    background: rgba(55, 65, 81, 0.2);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s;
}

.tm_feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.tm_feature-icon {
    font-size: 40px;
    margin-bottom: 20px;
    display: inline-block;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tm_feature-title {
    font-size: 22px;
    color: var(--heading-color);
    margin-bottom: 15px;
    font-weight: 600;
}


.tm_faq {
    max-width: 800px;
    margin: 0 auto;
}

.tm_faq-item {
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.tm_faq-question {
    padding: 20px;
    background: rgba(55, 65, 81, 0.2);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--heading-color);
}

.tm_faq-question i {
    transition: transform 0.3s;
}

.tm_faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s, padding 0.3s;
}

.tm_faq-item.active .tm_faq-answer {
    max-height: 200px;
    padding: 20px;
}

.tm_faq-item.active .tm_faq-question i {
    transform: rotate(180deg);
}


.tm_cta {
    text-align: center;
    background: url('../content/bg.jpg') center no-repeat;
    background-size: cover;
    border-radius: 16px;
    padding: 60px 40px;
    margin: 80px 0;
}

.tm_cta-subtitle {
    font-size: 18px;
    color: var(--accent-color);
    margin-bottom: 15px;
    font-weight: 500;
}

.tm_cta-title {
    font-size: 36px;
    color: var(--heading-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.tm_cta-text {
    max-width: 600px;
    margin: 0 auto 30px;
}


.tm_footer {
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-color);
}

.tm_footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.tm_footer-block {
    margin-right: 40px;
    margin-bottom: 30px;
}

.tm_footer-block h3 {
    color: #fff;
    margin-bottom: 12px;
}

.tm_footer-logo {
    font-size: 22px;
    font-weight: 700;
    color: var(--heading-color);
    display: flex;
    align-items: center;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.tm_footer-logo i {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-right: 10px;
}

.tm_footer-links {
    list-style: none;
}

.tm_footer-link {
    margin-bottom: 10px;
}

.tm_footer-link a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s;
}

.tm_footer-link a:hover {
    color: var(--accent-color);
}

.tm_footer-contact {
    display: flex;
    flex-direction: column;
}

.tm_footer-contact a {
    color: var(--text-color);
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.tm_footer-contact a:hover {
    color: var(--accent-color);
}

.tm_copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}


.tm_modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.9);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.tm_modal-content {
    background-color: var(--background-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 40px;
    width: 100%;
    max-width: 450px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.tm_modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 24px;
    cursor: pointer;
}

.tm_modal-title {
    font-size: 28px;
    color: var(--heading-color);
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
}

.tm_form-group {
    margin-bottom: 20px;
    position: relative;
}

.tm_form-input {
    width: 100%;
    padding: 15px;
    background-color: transparent;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-color);
    font-family: 'Figtree', sans-serif;
    transition: all 0.3s;
}

.tm_form-input:focus {
    outline: none;
    border-color: var(--accent-color);
}

.tm_form-label {
    position: absolute;
    left: 15px;
    top: 15px;
    color: var(--text-color);
    pointer-events: none;
    transition: all 0.3s;
}

.tm_form-input:focus+.tm_form-label,
.tm_form-input:not(:placeholder-shown)+.tm_form-label {
    top: -10px;
    left: 10px;
    font-size: 12px;
    background-color: var(--background-color);
    padding: 0 5px;
    color: var(--accent-color);
}

.tm_form-button {
    width: 100%;
    padding: 15px;
    margin-top: 10px;
}

.tm_modal-message {
    display: none;
    text-align: center;
    padding: 20px;
}

.tm_modal-message i {
    font-size: 50px;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.tm_modal-message h3 {
    font-size: 24px;
    color: var(--heading-color);
    margin-bottom: 15px;
}

.tm_about-page {
    padding: 80px 0;
}

.tm_about-stats {
    display: flex;
    justify-content: space-around;
    margin: 40px 0;
    flex-wrap: wrap;
}

.tm_stat {
    text-align: center;
    padding: 20px;
    background: rgba(55, 65, 81, 0.2);
    border-radius: 12px;
    margin: 10px;
    flex: 1;
    min-width: 150px;
    border: 1px solid var(--border-color);
}

.tm_stat-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 8px;
}

.tm_stat-label {
    color: var(--text-color);
    font-size: 14px;
}

.tm_tech-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.tm_tech-feature {
    background: rgba(55, 65, 81, 0.2);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    transition: transform 0.3s;
}

.tm_tech-feature:hover {
    transform: translateY(-5px);
}

.tm_tech-feature .tm_feature-icon {
    font-size: 40px;
    margin-bottom: 20px;
    display: inline-block;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tm_tech-feature h3 {
    font-size: 20px;
    color: var(--heading-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.tm_policy {
    padding: 80px 15px;
}

.tm_policy .tm_section-title {
    text-align: center;

}

.tm_policy-content {
    max-width: 800px;
    margin: 0 auto;
}

.tm_policy-update {
    color: var(--accent-color);
    margin-bottom: 40px;
    font-style: italic;
}

.tm_policy-section {
    margin-bottom: 40px;
}

.tm_policy-section h2 {
    color: var(--heading-color);
    margin-bottom: 15px;
    font-size: 24px;
}

.tm_policy-section p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.tm_policy-section ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.tm_policy-section li {
    margin-bottom: 8px;
}

.tm_policy-section a {
    color: var(--accent-color);
    text-decoration: none;
}

.tm_policy-section a:hover {
    text-decoration: underline;
}

.tm_contact {
    padding: 80px 0;
}

.tm_contact h2{
    text-align: center;
}

.tm_contact-subtitle {
    text-align: center;
    margin-bottom: 60px;
    font-size: 18px;
}


.tm_contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.tm_contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.tm_contact-icon {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 24px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    border-radius: 50%;
}

.tm_contact-details h3 {
    color: var(--heading-color);
    margin-bottom: 8px;
    font-size: 18px;
}

.tm_contact-details a,
.tm_contact-details p {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s;
}

.tm_contact-details a:hover {
    color: var(--accent-color);
}

.tm_contact-form {
    background: rgba(55, 65, 81, 0.2);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 40px;
}

.tm_form-textarea {
    resize: vertical;
    min-height: 120px;
}

.tm_contact-success {
    display: none;
    text-align: center;
    background: rgba(55, 65, 81, 0.2);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 40px;
    grid-column: 1 / -1;
}

.tm_success-icon {
    font-size: 60px;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.tm_contact-success h3 {
    color: var(--heading-color);
    margin-bottom: 15px;
    font-size: 24px;
}

@media (max-width: 968px) {
    .tm_contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}









@media (max-width: 992px) {
    .tm_about {
        flex-direction: column;
    }

    .tm_features-grid {
        grid-template-columns: 1fr;
    }

    .tm_footer-content {
        flex-direction: column;
    }

    .tm_footer-block {
        margin-right: 0;
    }
}

@media (max-width: 768px) {
    .tm_nav-list {
        display: none;
    }

    .tm_banner-title {
        font-size: 36px;
    }

    .tm_section-title {
        font-size: 28px;
    }
}