/* ============================================
           RESET & BASE
        ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'DMSans', sans-serif;
    background: #ffffff;
    color: #0F2B46;
}

.mtc-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
           HEADER
        ============================================ */
.mtc-header {
    background: #F5F8FE;
    padding: 20px 0;
    border-bottom: 1px solid #e5e9f0;
}

.mtc-header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.mtc-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.mtc-logo img {
    width: 60px;
    height: 60px;
}

.mtc-logo span {
    font-size: 24px;
    font-weight: 700;
    color: #2F5A9F;
}

.mtc-nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.mtc-nav a {
    text-decoration: none;
    color: #142347;
    font-weight: 500;
    font-size: 16px;
    transition: 0.3s;
}

.mtc-nav a:hover,
.mtc-nav a.active {
    color: #2F5A9F;
}

.mtc-nav a.active {
    font-weight: 600;
}

.mtc-nav .mtc-phone {
    background: #2F5A9F;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
}

.mtc-nav .mtc-phone:hover {
    background: #1a3d6e;
    color: #fff;
}

@media (max-width: 768px) {
    .mtc-header-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .mtc-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
}

/* ============================================
           HERO
        ============================================ */
.mtc-hero {
    padding: 60px 20px 80px;
    background: linear-gradient(135deg, #F5F8FE 0%, #e8edf9 100%);
}

.mtc-hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.mtc-hero-title {
    font-size: 48px;
    font-weight: 800;
    color: #0F2B46;
    line-height: 1.2;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

.mtc-hero-description {
    font-size: 20px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

.mtc-hero-btn {
    display: inline-block;
    background: #B89B00;
    color: #fff;
    padding: 16px 40px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: 0.3s;
}

.mtc-hero-btn:hover {
    background: #9f8600;
    transform: translateY(-3px);
}

@media (max-width: 991px) {
    .mtc-hero-wrapper {
        grid-template-columns: 1fr;
    }

    .mtc-hero-title {
        font-size: 36px;
    }
}

/* ============================================
           TRUST BAR
        ============================================ */
.mtc-trust-bar {
    background: #ffffff;
    padding: 35px 20px;
    border-top: 4px solid #B89B00;
    border-bottom: 1px solid #ececec;
}

.mtc-trust-container {
    display: flex;
    justify-content: space-between;
    gap: 25px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.mtc-trust-item {
    flex: 1;
    min-width: 200px;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 15px 20px;
    border-radius: 14px;
    transition: 0.3s;
}

.mtc-trust-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
}

.mtc-trust-icon {
    width: 55px;
    height: 55px;
    background: #FFF8E1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    flex-shrink: 0;
}

.mtc-trust-text h4 {
    font-size: 17px;
    color: #0F2B46;
    font-weight: 700;
    margin-bottom: 4px;
}

.mtc-trust-text p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .mtc-trust-item {
        min-width: 100%;
    }
}

/* ============================================
           ABOUT
        ============================================ */
.mtc-about {
    padding: 100px 20px;
    background: #ffffff;
}

.mtc-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.mtc-about-image img {
    width: 100%;
    border-radius: 22px;
    display: block;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .12);
}

.mtc-about-content h2 {
    font-size: 38px;
    color: #0F2B46;
    margin: 15px 0 20px;
    line-height: 1.3;
    font-family: 'Poppins', sans-serif;
}

.mtc-about-content p {
    color: #666;
    line-height: 1.9;
    margin-bottom: 20px;
    font-size: 17px;
}

.mtc-subtitle {
    display: inline-block;
    color: #B89B00;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 13px;
}

.mtc-about-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 30px 0;
}

.mtc-about-item {
    background: #F8F9FB;
    padding: 16px 20px;
    border-radius: 12px;
    font-weight: 600;
    color: #0F2B46;
    font-size: 15px;
}

.mtc-about-btn {
    display: inline-block;
    background: #B89B00;
    color: #fff;
    padding: 16px 40px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
    border: none;
    cursor: pointer;
}

.mtc-about-btn:hover {
    background: #9f8600;
    transform: translateY(-3px);
}

@media (max-width: 991px) {
    .mtc-about-grid {
        grid-template-columns: 1fr;
    }

    .mtc-about-content {
        text-align: center;
    }

    .mtc-about-list {
        grid-template-columns: 1fr;
    }

    .mtc-about-content h2 {
        font-size: 32px;
    }
}

/* ============================================
           HOW IT WORKS
        ============================================ */
.mtc-how {
    padding: 90px 20px;
    background: #F8F9FB;
}

.mtc-heading {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 70px;
}

.mtc-heading h2 {
    font-size: 38px;
    color: #0F2B46;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

.mtc-heading p {
    color: #666;
    line-height: 1.9;
    font-size: 17px;
}

.mtc-how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.mtc-step {
    background: #FFF;
    padding: 45px 35px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .05);
    transition: 0.35s;
    position: relative;
    overflow: hidden;
}

.mtc-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 55px rgba(0, 0, 0, .10);
}

.mtc-step::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: #B89B00;
}

.mtc-step-number {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 50%;
    background: linear-gradient(135deg, #B89B00, #d8bc3f);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
}

.mtc-step h3 {
    font-size: 22px;
    color: #0F2B46;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

.mtc-step p {
    color: #666;
    line-height: 1.8;
    font-size: 16px;
}

@media (max-width: 991px) {
    .mtc-how-grid {
        grid-template-columns: 1fr;
    }

    .mtc-heading h2 {
        font-size: 32px;
    }
}

/* ============================================
           CASES
        ============================================ */
.mtc-cases {
    padding: 100px 20px;
    background: #ffffff;
}

.mtc-cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.mtc-case-card {
    background: #fff;
    border-radius: 18px;
    padding: 35px;
    border: 1px solid #ececec;
    transition: 0.35s;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.mtc-case-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, .10);
    border-color: #B89B00;
}

.mtc-case-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: #B89B00;
    transform: scaleX(0);
    transition: 0.35s;
}

.mtc-case-card:hover::before {
    transform: scaleX(1);
}

.mtc-case-badge {
    display: inline-block;
    background: #FFF4D6;
    color: #8b6d00;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 20px;
}

.mtc-case-icon {
    width: 64px;
    height: 64px;
    background: #FFF8E1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 22px;
}

.mtc-case-card h3 {
    font-size: 22px;
    color: #0F2B46;
    margin-bottom: 12px;
    font-family: 'Poppins', sans-serif;
}

.mtc-case-card p {
    color: #666;
    line-height: 1.8;
    flex-grow: 1;
    margin-bottom: 20px;
}

.mtc-case-link {
    color: #B89B00;
    font-weight: 700;
    transition: 0.3s;
    cursor: pointer;
}

.mtc-case-card:hover .mtc-case-link {
    padding-left: 8px;
}

@media (max-width: 991px) {
    .mtc-cases-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
           EARLY
        ============================================ */
.mtc-early {
    background: #F8F9FB;
    padding: 100px 20px;
}

.mtc-early-content {
    max-width: 900px;
    margin: 0 auto;
}

.mtc-early-content h2 {
    font-size: 38px;
    color: #0F2B46;
    margin: 15px 0 30px;
    line-height: 1.3;
    font-family: 'Poppins', sans-serif;
}

.mtc-early-content p {
    font-size: 17px;
    line-height: 2;
    color: #555;
    margin-bottom: 25px;
}

.mtc-highlight {
    margin: 40px 0;
    padding: 30px;
    border-left: 5px solid #B89B00;
    background: #fff;
    border-radius: 10px;
    font-size: 20px;
    font-style: italic;
    color: #0F2B46;
    line-height: 1.7;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
}

@media (max-width: 768px) {
    .mtc-early {
        padding: 70px 20px;
    }

    .mtc-early-content h2 {
        font-size: 30px;
    }

    .mtc-highlight {
        font-size: 18px;
        padding: 20px;
    }
}

/* ============================================
           TESTIMONIALS
        ============================================ */
.mtc-testimonials {
    padding: 100px 20px;
    background: #ffffff;
}

.mtc-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    margin-top: 60px;
}

.mtc-testimonial-card {
    background: #F8F9FB;
    padding: 35px;
    border-radius: 18px;
    border-left: 5px solid #B89B00;
    transition: 0.35s;
}

.mtc-testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .08);
}

.mtc-stars {
    color: #B89B00;
    font-size: 20px;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.mtc-review {
    color: #555;
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 25px;
    font-style: italic;
}

.mtc-client {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mtc-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #B89B00;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: 700;
}

.mtc-client strong {
    color: #0F2B46;
    font-size: 16px;
}

.mtc-client span {
    color: #777;
    font-size: 14px;
}

@media (max-width: 991px) {
    .mtc-testimonial-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
           FAQ
        ============================================ */
.mtc-faq {
    padding: 100px 20px;
    background: #F8F9FB;
}

.mtc-faq-wrapper {
    max-width: 900px;
    margin: 60px auto 0;
}

.mtc-faq-item {
    background: #fff;
    margin-bottom: 18px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .05);
}

.mtc-faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 22px 28px;
    font-size: 18px;
    font-weight: 700;
    color: #0F2B46;
    position: relative;
}

.mtc-faq-item summary::-webkit-details-marker {
    display: none;
}

.mtc-faq-item summary::after {
    content: "+";
    position: absolute;
    right: 28px;
    font-size: 26px;
    color: #B89B00;
    transition: 0.3s;
}

.mtc-faq-item[open] summary::after {
    content: "−";
}

.mtc-faq-item p {
    padding: 0 28px 24px;
    color: #666;
    line-height: 1.9;
    font-size: 16px;
}

@media (max-width: 768px) {
    .mtc-faq {
        padding: 70px 20px;
    }

    .mtc-faq-item summary {
        font-size: 16px;
        padding: 18px 20px;
    }

    .mtc-faq-item p {
        padding: 0 20px 20px;
        font-size: 15px;
    }
}

/* ============================================
           CTA
        ============================================ */
.mtc-cta {
    padding: 80px 20px;
    background: linear-gradient(135deg, #F5F8FE 0%, #e8edf9 100%);
    text-align: center;
}

.mtc-cta-content h2 {
    font-size: 38px;
    color: #0F2B46;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

.mtc-cta-content p {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
}

/* ============================================
           FOOTER
        ============================================ */
.mtc-footer {
    background: #142347;
    color: #fff;
    padding: 60px 20px;
}

.mtc-footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.mtc-footer h3 {
    font-size: 20px;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

.mtc-footer a {
    color: #fff;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: 0.3s;
}

.mtc-footer a:hover {
    color: #B89B00;
}

.mtc-footer-bottom {
    text-align: center;
    padding-top: 40px;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .mtc-footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* ============================================
           FORM
        ============================================ */
#mtc-lead-form {
    max-width: 100%;
    margin: 0 auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
}

#mtc-lead-form .mtc-row {
    display: flex;
    gap: 20px;
    margin-bottom: 18px;
}

#mtc-lead-form .mtc-field {
    flex: 1;
}

#mtc-lead-form label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #1F2937;
}

#mtc-lead-form input,
#mtc-lead-form select {
    width: 100%;
    height: 52px;
    padding: 0 16px;
    border: 1px solid #D1D5DB;
    border-radius: 10px;
    background: #fff;
    font-size: 15px;
    transition: 0.25s ease;
    box-sizing: border-box;
}

#mtc-lead-form input:focus,
#mtc-lead-form select:focus {
    outline: none;
    border-color: #B89B00;
    box-shadow: 0 0 0 4px rgba(184, 155, 0, .15);
}

#mtc-lead-form input::placeholder {
    color: #9CA3AF;
}

#mtc-lead-form button {
    width: 100%;
    height: 56px;
    border: none;
    border-radius: 10px;
    background: #B89B00;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.25s ease;
    margin-top: 10px;
}

#mtc-lead-form button:hover {
    background: #a98d00;
    transform: translateY(-2px);
}

#mtc-lead-form input:hover,
#mtc-lead-form select:hover {
    border-color: #B89B00;
}

.mtc-disclaimer {
    height: 110px;
    overflow-y: auto;
    background: #ffffff;
    border: 1px solid #d9d9d9;
    border-radius: 10px;
    padding: 14px;
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 13px;
    line-height: 1.7;
    color: #555;
}

.mtc-disclaimer p {
    margin: 0;
}

.mtc-disclaimer a {
    color: #B89B00;
    text-decoration: none;
    font-weight: 600;
}

.mtc-disclaimer a:hover {
    text-decoration: underline;
}

.mtc-disclaimer::-webkit-scrollbar {
    width: 6px;
}

.mtc-disclaimer::-webkit-scrollbar-track {
    background: #f3f3f3;
    border-radius: 10px;
}

.mtc-disclaimer::-webkit-scrollbar-thumb {
    background: #B89B00;
    border-radius: 10px;
}

@media (max-width: 768px) {
    #mtc-lead-form {
        padding: 20px;
    }

    #mtc-lead-form .mtc-row {
        flex-direction: column;
        gap: 16px;
    }
}