﻿/* ============================================================
   Mijntoernooi.info – Homepage CSS  (geconsolideerde versie)
   ============================================================ */

:root {
    --mti-dark: #424322;
    --mti-mid: #67662F;
    --mti-cta: #CDC936;
    --mti-light: #F8F8F4;
    --mti-border: #e7e6d3;
    --mti-text: #242516;
    --mob-w: 290px;
}

*, *::before, *::after {
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--mti-text);
    background: #fff;
    overflow-x: hidden;
}

.navbar {
    background: #fff;
    border-bottom: 1px solid var(--mti-border);
    padding: 14px 0;
}

.navbar-brand {
    font-weight: 900;
    color: var(--mti-dark);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
}

@media (max-width: 460px) {
    .navbar-brand {
        font-size: 13px;
    }
}

.mti-logo-img {
    height: 46px;
    width: auto;
}

.nav-link {
    color: var(--mti-dark);
    font-weight: 700;
}

/* ── Buttons ── */
.btn-mti {
    border-radius: 999px;
    padding: 12px 26px;
    font-weight: 900;
    text-decoration: none;
    display: inline-block;
    /*white-space: nowrap;*/
    background: var(--mti-cta);
    color: var(--mti-dark);
    border: 1px solid var(--mti-cta);
}

.btn-mti-primary {
    background: var(--mti-cta);
    color: var(--mti-dark);
    border: 1px solid var(--mti-cta);
}

.btn-mti:hover {
    border: 1px solid var(--mti-dark);
    background: var(--mti-dark);
    color: #fff;
}



.btn-mti-outline {
    background: #fff;
    color: var(--mti-dark);
    border: 1px solid var(--mti-border);
    white-space: normal;
    text-align: center;
}

/* Fix 1: Demo-knop — zichtbaar anders dan trust-items én andere knoppen */
.btn-mti-demo {
    background: transparent;
    color: var(--mti-dark);
    border: 2px solid var(--mti-dark);
    border-radius: 999px;
    padding: 10px 22px;
    font-weight: 900;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
    transition: background .2s, color .2s;
}

    .btn-mti-demo:hover {
        background: var(--mti-dark);
        color: #fff;
    }

/* ── Hero ── */
.hero {
    padding: 40px 0 74px;
    background: radial-gradient(circle at 80% 20%, rgba(205,201,54,.18), transparent 34%), linear-gradient(180deg, #fff 0%, var(--mti-light) 100%);
    overflow: hidden;
}

.eyebrow {
    display: inline-flex;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--mti-border);
    font-weight: 900;
    color: var(--mti-mid);
    margin-bottom: 18px;
}

h1 {
    font-size: clamp(32px, 5vw, 54px);
    line-height: 1.03;
    letter-spacing: -1.6px;
    font-weight: 900;
    margin-bottom: 22px;
}

.hero-intro {
    font-size: 20px;
    line-height: 1.6;
    color: #555842;
    max-width: 660px;
}

.hero-sub {
    font-size: 20px;
    font-weight: 900;
    color: var(--mti-mid);
    margin-bottom: 30px;
}

.trustbar {
    margin-top: 30px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.trust-item {
    background: #fff;
    border: 1px solid var(--mti-border);
    border-radius: 999px;
    padding: 10px 15px;
    font-weight: 900;
    box-shadow: 0 8px 20px rgba(66,67,34,.06);
}

.hero-media {
    position: relative;
    padding-bottom: 120px;
    padding-top: 95px;
}

.screen-frame {
    background: #fff;
    border-radius: 24px;
    padding: 6px;
}

    .screen-frame img {
        display: block;
        width: 100%;
        height: auto;
        border-radius: 14px;
    }

.hero-laptop {
    display: block;
    width: 100%;
    transform: rotate(-.3deg);
    box-shadow: 0 20px 55px rgba(66,67,34,.12);
}

.hero-phone {
    position: absolute;
    bottom: 0;
    right: 75px;
    width: min(230px, 38%);
    z-index: 4;
    transform: rotate(8deg);
    transform-origin: center bottom;
}

    .hero-phone img {
        border-radius: 26px;
    }

/* ── Changing rooms ── */
.changing-media {
    position: relative;
    padding-bottom: 100px;
}

.changing-laptop {
    display: block;
    width: 100%;
    transform: rotate(-.3deg);
    box-shadow: 0 20px 55px rgba(66,67,34,.12);
}

.changing-phone {
    position: absolute;
    bottom: 0;
    right: 0;
    width: min(230px, 38%);
    z-index: 4;
    transform: rotate(8deg);
    transform-origin: center bottom;
    background: #fff;
    padding: 6px;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(66,67,34,.18);
}

    .changing-phone img {
        border-radius: 14px;
        width: 100%;
        display: block;
    }

@media (max-width: 991px) {
    .changing-phone {
        width: min(210px, 36%);
        right: 10px;
        transform: rotate(4deg);
    }
}

@media (max-width: 575px) {
    .changing-media {
        padding-bottom: 60px;
    }

    .changing-phone {
        width: min(150px, 36%);
        right: 4px;
        transform: none;
    }
}

@media (max-width: 768px) {
    .center768 {
        text-align: center !important;
    }
}
    
    /* ── Secties ── */
    .section {
        padding: 82px 0;
    }

    .section-light {
        background: var(--mti-light);
    }

    .section-dark {
        background: var(--mti-dark);
        color: #fff;
    }

    .section-title {
        font-size: clamp(26px, 3.5vw, 40px);
        line-height: 1.12;
        font-weight: 900;
        letter-spacing: -.8px;
        margin-bottom: 18px;
    }

    .section-lead {
        font-size: 18px;
        line-height: 1.65;
        color: #62654e;
        max-width: 820px;
        margin-bottom: 36px;
    }

    .section-dark .section-lead {
        color: #eeeedb;
    }

    /* ── Timeline ── */
    .timeline {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 14px;
    }

    .step-card, .feature-card, .text-card, .price-card {
        background: #fff;
        border: 1px solid var(--mti-border);
        border-radius: 24px;
        padding: 24px;
        height: 100%;
        box-shadow: 0 10px 30px rgba(66,67,34,.055);
    }

    .step-number {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background: var(--mti-cta);
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 900;
        margin-bottom: 14px;
        color: var(--mti-dark);
    }

    .step-card h3, .text-card h3, .feature-card h3 {
        font-size: 19px;
        font-weight: 900;
    }

    .demo-strip {
        margin-top: 28px;
        background: var(--mti-dark);
        color: #fff;
        border-radius: 28px;
        padding: 28px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
        flex-wrap: wrap;
    }

    /* ── Photo band ── */
    .photo-band {
        min-height: 330px;
        border-radius: 34px;
        background: linear-gradient(90deg, rgba(66,67,34,.82), rgba(66,67,34,.25)), radial-gradient(circle at 30% 40%, #c8ca6b 0, #93923C 30%, #67662F 62%, #424322 100%);
        color: #fff;
        padding: 48px;
        display: flex;
        align-items: flex-end;
    }

        .photo-band h2 {
            max-width: 100%;
            font-size: clamp(26px, 3vw, 42px);
            font-weight: 900;
            line-height: 1.12;
            white-space: nowrap; /* Fix 9: geen regelbreuk */
        }

    /* ── Screenshots ── */
    .screenshot-card {
        background: #fff;
        border: 1px solid var(--mti-border);
        border-radius: 20px;
        padding: 6px;
        box-shadow: 0 20px 55px rgba(66,67,34,.12);
    }

        .screenshot-card img {
            width: 100%;
            display: block;
            border-radius: 14px;
        }

    .mobile-shot {
        max-width: 290px;
        margin-inline: auto;
    }

    @media (max-width: 575px) {
        .mobile-shot {
            max-width: 48%;
        }
    }

    .visitor-mobile-col {
        flex: 0 0 50%;
        max-width: 50%;
    }

    /* ── Standen overlap ── */
    .overlap-stage {
        position: relative;
    }

    @media (min-width: 1200px) {
        .overlap-stage {
            min-height: 640px;
        }

        .overlap-desktop {
            position: absolute;
            left: 0;
            top: 30px;
            width: 70%;
            z-index: 1;
        }

        .overlap-mobile {
            position: absolute;
            right: 0;
            top: 0;
            width: var(--mob-w);
            z-index: 3;
        }

            .overlap-mobile.second {
                top: 280px;
                right: calc(var(--mob-w) + 20px);
                width: var(--mob-w);
                z-index: 2;
            }

        .standings-desktop-card {
            top: 20px;
            width: 70%;
        }

        .standings-mobile-card {
            top: 0;
            right: 0;
        }

        .standings-ranking-card {
            top: 300px;
            right: calc(var(--mob-w) + 16px);
            width: var(--mob-w);
        }

        #stand-finales {
            padding-bottom: 120px;
        }

            #stand-finales .overlap-stage {
                min-height: 840px;
            }

        .changing-stage {
            min-height: 520px;
        }

        .changing-desktop-card {
            position: absolute;
            left: 0;
            top: -39px;
            width: 100%;
            z-index: 1;
        }

        .changing-mobile-card {
            position: absolute;
            right: -46px;
            top: -39px;
            width: var(--mob-w);
            z-index: 4;
        }
    }

    @media (min-width: 992px) and (max-width: 1199px) {
        .overlap-stage {
            position: relative;
            min-height: 600px;
        }

        .overlap-desktop, .standings-desktop-card {
            position: absolute;
            left: 0;
            top: 20px;
            width: 72%;
            z-index: 1;
        }

        .standings-mobile-card {
            position: absolute;
            right: 20px;
            top: 60px;
            width: 240px;
            z-index: 2;
            transform: none;
            margin: 0;
        }

        #stand-finales .standings-ranking-card, .standings-ranking-card {
            position: absolute !important;
            right: 190px !important;
            top: 200px !important;
            width: 240px !important;
            z-index: 10 !important;
            transform: none !important;
            margin: 0 !important;
        }

        .overlap-mobile {
            position: absolute;
            right: 0;
            top: 0;
            width: 240px;
            z-index: 3;
            transform: none;
            margin: 0;
        }

            .overlap-mobile.second {
                position: absolute;
                right: 0;
                top: 280px;
                width: 240px;
                z-index: 2;
                transform: none;
                margin: 0;
            }

        #stand-finales .overlap-stage {
            min-height: 660px;
        }

        #stand-finales {
            padding-bottom: 140px;
        }

        .changing-stage {
            position: relative;
            min-height: 520px;
        }

        .changing-desktop-card {
            position: absolute;
            left: 0;
            top: -39px;
            width: 100%;
            z-index: 1;
        }

        .changing-mobile-card {
            position: absolute;
            right: 144px;
            top: 71px;
            width: 240px;
            z-index: 4;
        }
    }

    @media (min-width: 768px) and (max-width: 991px) {
        .overlap-stage {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 18px;
        }

        .overlap-desktop, .standings-desktop-card {
            position: static;
            width: 100%;
            grid-column: 1 / -1;
        }

        .overlap-mobile, .overlap-mobile.second, .standings-mobile-card, .standings-ranking-card {
            position: static;
            width: 100%;
            max-width: 260px;
            margin: 0 auto;
            transform: none;
        }
    }

    @media (min-width: 576px) and (max-width: 767px) {
        .overlap-stage {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px;
        }

        .overlap-desktop, .standings-desktop-card {
            position: static;
            width: 100%;
            grid-column: 1 / -1;
            transform: none;
            margin: 0;
        }

        .overlap-mobile, .overlap-mobile.second, .standings-mobile-card, .standings-ranking-card {
            position: static;
            width: 100%;
            max-width: none;
            transform: none;
            margin: 0;
        }
    }

    @media (max-width: 575px) {
        .overlap-stage {
            display: block;
        }

        .overlap-desktop, .standings-desktop-card {
            position: static;
            width: 100%;
            transform: none;
            margin: 0 0 14px 0;
        }

        .overlap-mobile, .overlap-mobile.second, .standings-mobile-card, .standings-ranking-card {
            position: static;
            width: 100%;
            max-width: none;
            transform: none;
            margin: 0 0 14px 0;
        }
    }

    /* ── Rapportages ── */
    @media (min-width: 1200px) {
        #rapportages .report-stack {
            position: relative;
            min-height: 640px;
        }

            #rapportages .report-stack .screenshot-card {
                position: absolute;
            }

        .report-card-one {
            right: 0;
            top: 60px;
            width: 60%;
            z-index: 3;
        }

        .report-card-two {
            left: 0;
            top: 200px;
            width: 60%;
            z-index: 2;
            transform: rotate(-2deg);
        }

        .report-stack .three {
            right: 38px;
            bottom: 0;
            width: 60%;
            z-index: 1;
            transform: rotate(2deg);
        }
    }

    @media (min-width: 992px) and (max-width: 1199px) {
        #rapportages .report-stack {
            position: relative;
            min-height: 620px;
        }

            #rapportages .report-stack .screenshot-card {
                position: absolute;
            }

        .report-card-one {
            right: 0;
            top: 0;
            width: 60%;
            z-index: 3;
            transform: rotate(1deg);
        }

        .report-card-two {
            left: 16%;
            top: 160px;
            width: 60%;
            z-index: 2;
            transform: rotate(-2deg);
        }

        .report-stack .three {
            left: 8%;
            bottom: 0;
            width: 60%;
            z-index: 1;
            transform: rotate(1.5deg);
        }
    }

    @media (min-width: 576px) and (max-width: 991px) {
        #rapportages .report-stack {
            position: static !important;
            min-height: 0 !important;
            display: grid !important;
            grid-template-columns: 1fr 1fr !important;
            gap: 18px !important;
        }

            #rapportages .report-stack .screenshot-card, #rapportages .report-card-one, #rapportages .report-card-two, #rapportages .report-stack .one, #rapportages .report-stack .two, #rapportages .report-stack .three {
                position: static !important;
                width: 100% !important;
                max-width: none !important;
                transform: none !important;
                top: auto !important;
                right: auto !important;
                bottom: auto !important;
                left: auto !important;
                margin: 0 !important;
            }

            #rapportages .report-stack .three {
                grid-column: 1 / -1 !important;
                max-width: 520px !important;
                margin-inline: auto !important;
            }
    }

    @media (max-width: 575px) {
        #rapportages .report-stack {
            position: static !important;
            min-height: 0 !important;
            display: flex !important;
            flex-direction: column !important;
            gap: 14px !important;
        }

            #rapportages .report-stack .screenshot-card, #rapportages .report-stack .one, #rapportages .report-stack .two, #rapportages .report-stack .three, #rapportages .report-card-one, #rapportages .report-card-two {
                position: static !important;
                width: 100% !important;
                max-width: none !important;
                transform: none !important;
                top: auto !important;
                right: auto !important;
                bottom: auto !important;
                left: auto !important;
                margin: 0 !important;
            }
    }

    /* ── Presentatieschermen ── */
    .presentation-shot {
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .presentation-shot img {
            aspect-ratio: 16/9;
            object-fit: contain;
            background: #fff;
            width: 100%;
        }

    /* ── Overige ── */
    .icon {
        width: 48px;
        height: 48px;
        border-radius: 16px;
        background: var(--mti-light);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--mti-mid);
        font-size: 22px;
        margin-bottom: 16px;
    }

    .sport-card {
        background: #fff;
        border: 1px solid var(--mti-border);
        border-radius: 22px;
        padding: 22px 12px;
        text-align: center;
        font-size: 18px;
        font-weight: 900;
        box-shadow: 0 10px 30px rgba(66,67,34,.055);
    }

    .sport-note {
        margin-top: 22px;
        background: #fff;
        border: 1px solid var(--mti-border);
        border-radius: 24px;
        padding: 22px;
        font-weight: 800;
    }

    a.language-pill {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        margin: 4px;
        padding: 8px 16px;
        border-radius: 999px;
        border: 1px solid var(--mti-border);
        background: #fff;
        color: var(--mti-text);
        font-size: 15px;
        font-weight: 700;
        text-decoration: none;
        cursor: pointer;
        transition: background .2s, border-color .2s, transform .15s;
    }

        a.language-pill:hover {
            background: var(--mti-cta);
            border-color: var(--mti-cta);
            color: var(--mti-dark);
            transform: translateY(-2px);
        }

        a.language-pill.active {
            background: var(--mti-cta);
            border-color: var(--mti-cta);
            font-weight: 900;
            color: var(--mti-dark);
        }

        a.language-pill .lang-flag {
            width: 22px;
            height: 16px;
            object-fit: cover;
            border-radius: 2px;
            flex-shrink: 0;
        }

    /* ── Prijzen ── */
    .price-card.featured {
        border: 2px solid var(--mti-cta);
        background: #fffef0;
    }

    .price-number {
        font-size: 48px;
        font-weight: 900;
        margin: 14px 0;
    }

    .credits-table {
        width: 100%;
        border-collapse: separate;
        border-spacing: 0 8px;
    }

        .credits-table td {
            background: #fff;
            border-top: 1px solid var(--mti-border);
            border-bottom: 1px solid var(--mti-border);
            padding: 12px 16px;
        }

            .credits-table td:first-child {
                border-left: 1px solid var(--mti-border);
                border-radius: 12px 0 0 12px;
            }

            .credits-table td:last-child {
                border-right: 1px solid var(--mti-border);
                border-radius: 0 12px 12px 0;
                text-align: right;
                font-weight: 900;
            }

    /* ── FAQ ── */
    .faq .accordion-button {
        font-weight: 900;
        color: var(--mti-dark);
        background: #fff;
    }

    /* ── Final CTA ── */
    .final-cta {
        background: var(--mti-cta);
        border-radius: 34px;
        padding: 58px 28px;
        text-align: center;
    }

        .final-cta h2 {
            font-size: clamp(26px, 4vw, 42px);
            font-weight: 900;
        }

    /* ── Footer ── */
    footer {
        background: var(--mti-dark);
        color: #fff;
        padding: 34px 0;
    }

        footer a {
            color: #fff;
            text-decoration: none;
            margin: 0 10px;
        }

    /* ── Testimonials ── */
    .testimonial-card {
        background: #fff;
        border: 1px solid var(--mti-border);
        border-radius: 24px;
        padding: 28px;
        box-shadow: 0 10px 30px rgba(66,67,34,.055);
    }

    /* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */
 /*   @media (max-width: 1399px) {
        .hero-phone {
            width: min(210px, 36%);
            right: 100px;
            transform: rotate(4deg);
        }
    }*/


    @media (max-width: 991px) {
        .hero {
            padding: 60px 0 50px;
        }

        .section {
            padding: 60px 0;
        }

        .hero-media {
            margin-top: 0;
            padding-bottom: 100px;
        }

        .hero-laptop {
            transform: none;
        }

        .hero-phone {
            width: min(210px, 36%);
            right: 65px;
            transform: rotate(4deg);
        }

        .timeline {
            grid-template-columns: 1fr 1fr;
        }

        .demo-strip {
            flex-direction: column;
            align-items: flex-start;
        }

            .demo-strip .btn-mti {
                margin-top: 16px;
            }

        .photo-band {
            padding: 32px;
            min-height: 240px;
        }
            /* Fix 9: op tablet mag de h2 wel wrappen */
            .photo-band h2 {
                white-space: normal;
            }
    }

    @media (max-width: 575px) {
        .hero {
            padding: 48px 0 38px;
        }

        .section {
            padding: 48px 0;
        }

        .hero-intro, .hero-sub {
            font-size: 17px;
        }

        .trustbar {
            flex-direction: column;
        }

        .trust-item {
            margin-bottom: 8px;
        }

        .timeline {
            grid-template-columns: 1fr;
        }

        .photo-band {
            padding: 24px;
            min-height: 200px;
        }

        .photo-band h2 {
            font-size: 24px;
        }

        .hero-media {
            padding-bottom: 90px;
        }

        .hero-phone {
            width: min(150px, 36%);
            right: 65px;
            transform: none;
            background: #fff;
            padding: 6px;
            box-shadow: 0 8px 24px rgba(66,67,34,.18);
        }

        #bezoekers .col-6 {
            padding-inline: 5px !important;
            flex: 0 0 50% !important;
            max-width: 50% !important;
        }

        #bezoekers .mobile-shot {
            max-width: 100% !important;
            width: 100% !important;
            margin: 0 !important;
        }

        #bezoekers .mt-5 {
            margin-top: 0 !important;
        }

        #stand-finales .overlap-stage {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
        }

        #stand-finales .standings-desktop-card {
            position: static;
            width: 100%;
            grid-column: 1 / -1;
            margin-bottom: 0;
            transform: none;
        }

        #stand-finales .standings-mobile-card, #stand-finales .standings-ranking-card {
            position: static;
            width: 100%;
            max-width: none;
            margin: 0;
            transform: none;
        }

        .final-cta {
            padding: 40px 20px;
        }
    }

    /* ── Video blok ── */
    .demo-video-card {
        background: #fff;
        border: 1px solid var(--mti-border);
        border-radius: 28px;
        padding: 42px 28px;
        box-shadow: 0 10px 30px rgba(66,67,34,.055);
    }

    /* ── Lightbox ── */
    #mti-lightbox {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(30,31,14,.82);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 9999;
        opacity: 0;
        pointer-events: none;
        transition: opacity .3s ease;
        backdrop-filter: blur(4px);
        overflow: hidden;
    }

    #mti-lightbox.open {
        opacity: 1;
        pointer-events: all;
    }

    #mti-lb-wrap {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px;
        box-sizing: border-box;
        transform: scale(.08) translateY(40px);
        transition: transform .8s cubic-bezier(.175,.885,.32,1.275), opacity .4s ease;
        opacity: 0;
    }

    #mti-lightbox.open #mti-lb-wrap {
        transform: scale(1) translateY(0);
        opacity: 1;
    }

    #mti-lb-img {
        display: block;
        max-width: 100%;
        max-height: 100%;
        width: auto;
        height: auto;
        border-radius: 16px;
        box-shadow: 0 32px 80px rgba(0,0,0,.5);
        object-fit: contain;
    }

    #mti-lb-close {
        position: fixed;
        top: 20px;
        right: 24px;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: #e63329;
        color: #fff;
        border: none;
        font-size: 26px;
        line-height: 1;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 16px rgba(0,0,0,.3);
        transition: background .2s, transform .2s;
        z-index: 10000;
    }

    #mti-lb-close:hover {
        background: #c0251c;
        transform: scale(1.1);
    }

    .screenshot-card img, .screen-frame img {
        cursor: pointer;
    }

    /* ── Maintenance ── */
    .awf50 {
        font-size: 50vw;
    }

    .awf30 {
        font-size: 30vw;
    }

    .awf25 {
        font-size: 25vw;
    }

    .maintenanceoverlay {
        position: fixed;
        display: block;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0,0,0,0.9);
        z-index: 999999;
        cursor: pointer;
    }

    .maintenanceicon {
        position: absolute;
        top: 50%;
        left: 50%;
        font-size: 50px;
        color: white;
        transform: translate(-50%,-50%);
        -ms-transform: translate(-50%,-50%);
    }

    .texttop {
        position: absolute;
        top: 0;
        left: 0;
        width: 100vw;
        font-size: 50px;
        line-height: 50px;
        color: white;
        text-align: center;
        padding: 30px;
        padding-top: 20px;
        border-style: none;
    }

    .textbottom {
        position: absolute;
        bottom: 10px;
        left: 0;
        width: 100vw;
        font-size: 24px;
        color: white;
        text-align: center;
        padding: 20px;
        border-style: none;
    }

    .td1-3-4 {
        width: 100%;
        padding: 10px;
        border-style: none;
    }

    .td2 {
        width: 100%;
        padding: 10px;
        font-size: 24px;
        line-height: 30px;
        border-style: none;
    }

    .maintable {
        width: 100%;
        padding: 10px;
    }

    /* ── Check lists */
    .check-list {
        list-style: none !important;
        margin: 22px 0 0;
        padding: 0;
    }

    .check-list li {
        margin-bottom: 12px;
        font-weight: 700;
    }

    .check-list i {
        color: var(--mti-mid);
        margin-right: 8px;
    }

.nav-divider-v {
    display: block;
    width: 1.5px;
    height: 22px;
    background-color: var(--mti-dark);
    opacity: 0.3;
}

.nav-divider-h {
    border: none;
    height: 1.5px;
    background-color: var(--mti-dark);
    opacity: 0.3;
}