:root {
    --mwt-navy: #081526;
    --mwt-navy-2: #0f2742;
    --mwt-blue: #1f7aff;
    --mwt-cyan: #35d4ff;
    --mwt-gold: #f5b841;
    --mwt-green: #21c58b;
    --mwt-slate: #64748b;
    --mwt-light: #f7fbff;
    --mwt-border: rgba(15, 39, 66, .10);
    --mwt-radius: 1.35rem;
    --mwt-shadow: 0 20px 55px rgba(8, 21, 38, .12);
}

html {
    scroll-behavior: smooth;
}

body {
    background: #f8fafc;
    color: #142033;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
    text-decoration: none;
}

.mwt-navbar {
    background: rgba(8, 21, 38, .92);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.mwt-brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at 30% 20%, var(--mwt-cyan), transparent 35%),
        linear-gradient(135deg, var(--mwt-blue), var(--mwt-navy-2));
    color: white;
    font-weight: 900;
    letter-spacing: -1px;
    box-shadow: 0 10px 30px rgba(31, 122, 255, .35);
}

.mwt-nav-link {
    color: rgba(255,255,255,.78) !important;
    font-weight: 600;
    font-size: .95rem;
}

.mwt-nav-link:hover {
    color: white !important;
}

.mwt-btn-primary {
    border: 0;
    color: white;
    font-weight: 700;
    background: linear-gradient(135deg, var(--mwt-blue), #0d54c7);
    box-shadow: 0 10px 25px rgba(31, 122, 255, .25);
}

.mwt-btn-primary:hover {
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(31, 122, 255, .32);
}

.mwt-btn-outline-light {
    color: white;
    border-color: rgba(255,255,255,.22);
    font-weight: 700;
}

.mwt-btn-outline-light:hover {
    color: var(--mwt-navy);
    background: white;
}

.mwt-hero {
    position: relative;
    overflow: hidden;
    color: white;
    background:
        radial-gradient(circle at 15% 20%, rgba(53, 212, 255, .28), transparent 26%),
        radial-gradient(circle at 80% 10%, rgba(245, 184, 65, .18), transparent 28%),
        linear-gradient(135deg, #081526 0%, #0f2742 46%, #102f55 100%);
}

.mwt-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,.95), rgba(0,0,0,.3));
}

.mwt-hero > .container {
    position: relative;
    z-index: 2;
}

.mwt-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(255,255,255,.08);
    color: #dff7ff;
    padding: .45rem .8rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: .9rem;
}

.mwt-gradient-text {
    background: linear-gradient(90deg, #ffffff, #c7f4ff, #ffe3a4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mwt-hero-card {
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.10);
    backdrop-filter: blur(18px);
    border-radius: var(--mwt-radius);
    box-shadow: 0 30px 80px rgba(0,0,0,.25);
}

.mwt-floating-card {
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.08);
    border-radius: 1rem;
}

.mwt-section {
    padding: 86px 0;
}

.mwt-section-sm {
    padding: 56px 0;
}

.mwt-section-title {
    font-weight: 900;
    letter-spacing: -.04em;
    color: var(--mwt-navy);
}

.mwt-text-muted {
    color: var(--mwt-slate);
}

.mwt-card {
    border: 1px solid var(--mwt-border);
    border-radius: var(--mwt-radius);
    box-shadow: 0 12px 30px rgba(8, 21, 38, .06);
    transition: .2s ease;
    background: white;
}

.mwt-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--mwt-shadow);
}

.mwt-icon {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(31,122,255,.10), rgba(53,212,255,.14));
    color: var(--mwt-blue);
    font-size: 1.4rem;
}

.mwt-stat {
    border-radius: 1.1rem;
    background: rgba(255,255,255,.09);
    border: 1px solid rgba(255,255,255,.12);
    padding: 1rem;
}

.mwt-globe {
    position: relative;
    min-height: 430px;
}

.mwt-map-card {
    position: absolute;
    border-radius: 1rem;
    padding: 1rem;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.10);
    backdrop-filter: blur(16px);
    box-shadow: 0 20px 45px rgba(0,0,0,.20);
}

.mwt-map-card.one {
    top: 40px;
    left: 0;
}

.mwt-map-card.two {
    top: 155px;
    right: 10px;
}

.mwt-map-card.three {
    bottom: 35px;
    left: 45px;
}

.mwt-circle {
    width: 280px;
    height: 280px;
    margin: 72px auto 0;
    border-radius: 50%;
    background:
        radial-gradient(circle at 30% 30%, rgba(53,212,255,.55), transparent 24%),
        radial-gradient(circle at 70% 60%, rgba(245,184,65,.36), transparent 25%),
        linear-gradient(135deg, rgba(255,255,255,.18), rgba(255,255,255,.05));
    border: 1px solid rgba(255,255,255,.18);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 80px rgba(255,255,255,.08), 0 30px 80px rgba(0,0,0,.25);
}

.mwt-circle i {
    font-size: 6.5rem;
    color: rgba(255,255,255,.86);
}

.mwt-cta {
    background:
        radial-gradient(circle at 20% 20%, rgba(53,212,255,.22), transparent 25%),
        linear-gradient(135deg, var(--mwt-navy), var(--mwt-navy-2));
    color: white;
    border-radius: 2rem;
    overflow: hidden;
}

.mwt-footer {
    background: #06111f;
    color: rgba(255,255,255,.78);
}

.mwt-footer a {
    color: rgba(255,255,255,.72);
}

.mwt-footer a:hover {
    color: white;
}

.mwt-social {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.08);
    color: white !important;
}

.mwt-social:hover {
    background: var(--mwt-blue);
}

.table {
    --bs-table-bg: transparent;
}

@media (max-width: 991px) {
    .mwt-globe {
        min-height: auto;
    }

    .mwt-map-card,
    .mwt-map-card.one,
    .mwt-map-card.two,
    .mwt-map-card.three {
        position: static;
        margin-bottom: .75rem;
    }

    .mwt-circle {
        margin: 1.5rem auto;
    }
}


/* Module 20 public directory UI */
.mwt-directory-hero {
    padding: 86px 0 34px;
    background:
        radial-gradient(circle at 12% 0%, rgba(31,122,255,.10), transparent 30%),
        radial-gradient(circle at 88% 10%, rgba(53,212,255,.13), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.mwt-eyebrow-dark {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    border: 1px solid rgba(31, 122, 255, .16);
    background: rgba(31, 122, 255, .08);
    color: #0d54c7;
    padding: .45rem .8rem;
    border-radius: 999px;
    font-weight: 800;
    font-size: .9rem;
}

.mwt-filter-panel {
    border: 1px solid rgba(15, 39, 66, .09);
    background: rgba(255,255,255,.92);
    box-shadow: 0 18px 45px rgba(8,21,38,.08);
    border-radius: 1.2rem;
    padding: 1rem;
}

.mwt-mini-stat {
    height: 100%;
    border: 1px solid rgba(15, 39, 66, .09);
    background: white;
    border-radius: 1rem;
    padding: 1rem;
    box-shadow: 0 12px 35px rgba(8,21,38,.07);
}

.mwt-mini-stat strong {
    display: block;
    color: var(--mwt-navy);
    font-size: 1.55rem;
    line-height: 1;
    letter-spacing: -.04em;
}

.mwt-mini-stat span {
    color: var(--mwt-slate);
    font-weight: 700;
    font-size: .82rem;
}

.mwt-directory-card,
.mwt-product-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(15, 39, 66, .10);
    background: #fff;
    border-radius: 1.35rem;
    box-shadow: 0 22px 50px rgba(8,21,38,.08);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.mwt-directory-card {
    padding: 1.45rem;
}

.mwt-directory-card:hover,
.mwt-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 70px rgba(8,21,38,.13);
    border-color: rgba(31,122,255,.22);
}

.mwt-logo-tile {
    width: 66px;
    height: 66px;
    flex: 0 0 66px;
    object-fit: contain;
    border: 1px solid rgba(15, 39, 66, .11);
    border-radius: 18px;
    padding: .45rem;
    background: #fff;
    box-shadow: 0 10px 28px rgba(8,21,38,.06);
}

.mwt-logo-placeholder {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--mwt-blue);
    background: linear-gradient(135deg, #eef7ff, #e9fbff);
    font-size: 1.6rem;
}

.mwt-icon-lg {
    width: 62px;
    height: 62px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--mwt-blue);
    background: linear-gradient(135deg, #eef7ff, #e9fbff);
    font-size: 1.55rem;
    box-shadow: 0 14px 30px rgba(31, 122, 255, .08);
}

.mwt-soft-badge {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: .35rem .65rem;
    background: rgba(31,122,255,.08);
    color: #0d54c7;
    font-weight: 800;
    font-size: .78rem;
}

.mwt-card-description {
    color: var(--mwt-slate);
    min-height: 2.8em;
}

.mwt-count-grid,
.mwt-country-stats,
.mwt-profile-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .65rem;
}

.mwt-count-grid > div,
.mwt-country-stats > div,
.mwt-profile-stats > div {
    border: 1px solid rgba(15,39,66,.08);
    background: #f8fbff;
    border-radius: .95rem;
    padding: .75rem;
}

.mwt-count-grid strong,
.mwt-country-stats strong,
.mwt-profile-stats strong {
    display: block;
    color: var(--mwt-navy);
    font-size: 1.1rem;
    line-height: 1;
}

.mwt-count-grid span,
.mwt-country-stats span,
.mwt-profile-stats span {
    color: var(--mwt-slate);
    font-weight: 700;
    font-size: .72rem;
}

.mwt-product-media {
    height: 210px;
    position: relative;
    background: linear-gradient(135deg, #f8fafc, #eef7ff);
    border-bottom: 1px solid rgba(15,39,66,.08);
}

.mwt-product-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mwt-product-placeholder {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(8,21,38,.28);
    font-size: 3.2rem;
}

.mwt-product-type {
    position: absolute;
    left: 1rem;
    bottom: .9rem;
    border-radius: 999px;
    padding: .4rem .65rem;
    background: rgba(8,21,38,.82);
    color: #fff;
    font-size: .75rem;
    font-weight: 800;
    backdrop-filter: blur(10px);
}

.mwt-price {
    font-size: 1.05rem;
    font-weight: 900;
    color: var(--mwt-navy);
}

.mwt-price span {
    display: block;
    font-size: .75rem;
    font-weight: 600;
    color: var(--mwt-slate);
}

@media (max-width: 575.98px) {
    .mwt-count-grid,
    .mwt-country-stats,
    .mwt-profile-stats {
        grid-template-columns: 1fr;
    }

    .mwt-directory-hero {
        padding-top: 56px;
    }
}


/* Module 21 — Public image size fix
   Keeps /businesses and /products cards stable even when uploaded images/logos are very large. */
.mwt-directory-card {
    min-height: 260px;
}

.mwt-logo-tile {
    width: 58px !important;
    height: 58px !important;
    max-width: 58px !important;
    max-height: 58px !important;
    min-width: 58px !important;
    object-fit: contain !important;
    object-position: center !important;
    overflow: hidden;
}

.mwt-logo-tile img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.mwt-product-card {
    display: flex;
    flex-direction: column;
    min-height: 450px;
}

.mwt-product-media {
    height: 170px !important;
    max-height: 170px !important;
    min-height: 170px !important;
    width: 100%;
    overflow: hidden !important;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8fafc, #eef7ff);
}

.mwt-product-media img {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 170px !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block;
}

.mwt-product-placeholder {
    width: 100%;
    height: 100%;
    min-height: 170px;
}

.mwt-product-card .p-4 {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
}

.mwt-product-card .mwt-card-description {
    min-height: 3.2rem;
}

.mwt-product-card .d-flex.justify-content-between.align-items-end {
    margin-top: auto;
}

@media (max-width: 767.98px) {
    .mwt-product-media {
        height: 150px !important;
        max-height: 150px !important;
        min-height: 150px !important;
    }

    .mwt-product-media img {
        max-height: 150px !important;
    }
}


/* Module 22 — hard public card layout fix */
body .mwt-directory-hero img,
body .mwt-section img {
    max-width: 100%;
}

body .card img {
    max-width: 100%;
}

body .card .position-relative[style*="height:180px"] img {
    height: 180px !important;
    max-height: 180px !important;
    width: 100% !important;
    object-fit: cover !important;
}

body .rounded-4[style*="width:64px"] img {
    width: 100% !important;
    height: 100% !important;
    max-width: 50px !important;
    max-height: 50px !important;
    object-fit: contain !important;
}


/* Module 23 — meet-world.com homepage + how-it-works branding */
.text-white-75 { color: rgba(255,255,255,.75) !important; }
.py-lg-6 { padding-top: 5.5rem !important; padding-bottom: 5.5rem !important; }

.mwt-home-hero,
.mwt-how-hero {
    position: relative;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 15% 14%, rgba(53,212,255,.26), transparent 28%),
        radial-gradient(circle at 88% 10%, rgba(245,184,65,.18), transparent 24%),
        linear-gradient(135deg, #07111f 0%, #0f2742 48%, #10345f 100%);
}

.mwt-home-hero::before,
.mwt-how-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
    background-size: 46px 46px;
    opacity: .75;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,.95), rgba(0,0,0,.25));
}

.mwt-home-hero .container,
.mwt-how-hero .container { position: relative; z-index: 2; }

.mwt-hero-pill,
.mwt-section-kicker {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    border-radius: 999px;
    font-weight: 850;
    letter-spacing: -.01em;
}

.mwt-hero-pill {
    border: 1px solid rgba(255,255,255,.16);
    background: rgba(255,255,255,.08);
    color: #dcf7ff;
    padding: .52rem .85rem;
    font-size: .92rem;
    backdrop-filter: blur(16px);
}

.mwt-section-kicker {
    color: #0d54c7;
    background: rgba(31,122,255,.08);
    border: 1px solid rgba(31,122,255,.14);
    padding: .48rem .8rem;
    font-size: .86rem;
}

.mwt-hero-answer {
    display: grid;
    gap: .65rem;
    max-width: 660px;
}

.mwt-hero-answer > div {
    display: flex;
    align-items: flex-start;
    gap: .65rem;
    padding: .85rem 1rem;
    border-radius: 1rem;
    background: rgba(255,255,255,.09);
    border: 1px solid rgba(255,255,255,.12);
    color: rgba(255,255,255,.9);
    box-shadow: 0 12px 34px rgba(0,0,0,.12);
}

.mwt-hero-answer i { color: #70e7bb; font-size: 1.1rem; margin-top: .1rem; }

.mwt-hero-dashboard,
.mwt-how-summary {
    border: 1px solid rgba(255,255,255,.14);
    background: linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.07));
    border-radius: 2rem;
    padding: 1.5rem;
    box-shadow: 0 30px 90px rgba(0,0,0,.28);
    backdrop-filter: blur(20px);
}

.mwt-flow-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    margin-bottom: .85rem;
    border-radius: 1.1rem;
    background: rgba(255,255,255,.09);
    border: 1px solid rgba(255,255,255,.10);
}

.mwt-flow-card.active {
    background: rgba(31,122,255,.22);
    border-color: rgba(53,212,255,.28);
}

.mwt-flow-card span {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(255,255,255,.14);
    color: #fff;
    font-weight: 900;
}

.mwt-flow-card strong,
.mwt-flow-card small {
    display: block;
}

.mwt-flow-card small { color: rgba(255,255,255,.62); margin-top: .2rem; }

.mwt-hero-stat {
    border-radius: 1rem;
    padding: .9rem;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.11);
}

.mwt-hero-stat strong {
    display: block;
    font-size: 1.35rem;
    line-height: 1;
    color: #fff;
    font-weight: 950;
}

.mwt-hero-stat span { color: rgba(255,255,255,.62); font-size: .78rem; font-weight: 700; }

.mwt-soft-section {
    background:
        radial-gradient(circle at 10% 10%, rgba(31,122,255,.08), transparent 26%),
        linear-gradient(180deg, #f8fbff, #eef7ff);
}

.mwt-value-card,
.mwt-step-mini,
.mwt-plan-preview,
.mwt-category-link,
.mwt-business-tile,
.mwt-compare-card,
.mwt-timeline-item {
    border: 1px solid rgba(15,39,66,.09);
    background: #fff;
    border-radius: 1.35rem;
    box-shadow: 0 16px 42px rgba(8,21,38,.07);
}

.mwt-value-card { padding: 1.5rem; }

.mwt-step-mini {
    padding: 1.35rem;
    transition: .18s ease;
}

.mwt-step-mini:hover,
.mwt-category-link:hover,
.mwt-business-tile:hover {
    transform: translateY(-4px);
    box-shadow: 0 26px 62px rgba(8,21,38,.12);
}

.mwt-step-mini span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--mwt-blue), #0d54c7);
    color: #fff;
    font-weight: 900;
    margin-bottom: 1rem;
}

.mwt-step-mini strong { display: block; font-size: 1.05rem; color: var(--mwt-navy); margin-bottom: .35rem; }
.mwt-step-mini p { color: var(--mwt-slate); margin: 0; }

.mwt-plan-preview {
    padding: 1.25rem;
    transition: .18s ease;
}

.mwt-plan-preview.featured {
    border-color: rgba(31,122,255,.35);
    box-shadow: 0 22px 58px rgba(31,122,255,.12);
}

.mwt-plan-preview strong { color: var(--mwt-navy); font-size: 1.05rem; }
.mwt-plan-preview span { color: #0d54c7; font-weight: 950; }
.mwt-plan-preview p { color: var(--mwt-slate); margin: .65rem 0 0; }

.mwt-category-link,
.mwt-business-tile {
    display: block;
    color: inherit;
    padding: 1rem;
    transition: .18s ease;
}

.mwt-category-link { display: flex; }
.mwt-category-link span {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(31,122,255,.09);
    color: var(--mwt-blue);
}
.mwt-category-link strong,
.mwt-category-link small,
.mwt-business-tile strong,
.mwt-business-tile small,
.mwt-business-tile span { display: block; }
.mwt-category-link small,
.mwt-business-tile small { color: var(--mwt-slate); margin-top: .15rem; }
.mwt-business-tile span { color: #0d54c7; font-weight: 800; margin-top: .8rem; font-size: .82rem; }
.mwt-business-tile.muted { background: linear-gradient(135deg, #f8fbff, #eef7ff); border-style: dashed; }

.mwt-how-hero { padding: 86px 0; }
.mwt-how-summary { color: #fff; }
.mwt-how-summary strong { display: block; font-size: 1.2rem; margin-bottom: 1rem; }
.mwt-how-summary div {
    display: flex;
    gap: .75rem;
    align-items: center;
    padding: .85rem 0;
    border-top: 1px solid rgba(255,255,255,.12);
    color: rgba(255,255,255,.82);
}
.mwt-how-summary span {
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.12);
    color: #fff;
    font-weight: 900;
}

.mwt-timeline {
    display: grid;
    gap: 1rem;
    max-width: 920px;
    margin: 0 auto;
}

.mwt-timeline-item {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 1rem;
    padding: 1.25rem;
}

.mwt-timeline-item > span {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--mwt-blue), #0d54c7);
    color: #fff;
    font-weight: 950;
}

.mwt-timeline-item h3 { color: var(--mwt-navy); font-size: 1.1rem; font-weight: 850; margin-bottom: .35rem; }
.mwt-timeline-item p { color: var(--mwt-slate); margin: 0; }

.mwt-compare-card { padding: 1.35rem; }
.mwt-compare-card.highlighted { border-color: rgba(31,122,255,.32); background: linear-gradient(180deg, #fff, #f8fbff); }
.mwt-compare-card h3 { font-size: 1.1rem; font-weight: 900; color: var(--mwt-navy); }
.mwt-compare-card ul { margin: 1rem 0 0; padding-left: 1.1rem; color: var(--mwt-slate); display: grid; gap: .45rem; }

@media (max-width: 991.98px) {
    .mwt-home-hero h1 { font-size: 3rem; }
    .mwt-how-hero { padding: 64px 0; }
}

@media (max-width: 575.98px) {
    .mwt-home-hero h1 { font-size: 2.45rem; }
    .mwt-hero-answer > div { font-size: .92rem; }
    .mwt-timeline-item { grid-template-columns: 1fr; }
    .mwt-flow-card { padding: .85rem; }
    .mwt-hero-dashboard,
    .mwt-how-summary { border-radius: 1.35rem; padding: 1rem; }
}


/* Module 24 — Branding, readability and freemium logic */
:root {
    --mwt-bg-soft: #f4f8fc;
    --mwt-bg-soft-2: #eef6ff;
    --mwt-text-strong: #071b33;
}

body {
    background: #f6f9fc;
    color: var(--mwt-text-strong);
}

.mwt-soft-section {
    background:
        radial-gradient(circle at top left, rgba(31,122,255,.08), transparent 34%),
        linear-gradient(180deg, #f4f8fc 0%, #eef6ff 100%) !important;
}

.mwt-section-title,
.mwt-home-hero h1,
.mwt-page-hero h1 {
    letter-spacing: -0.045em;
}

.mwt-text-muted,
.text-muted {
    color: #53657d !important;
}

.mwt-home-hero .lead {
    font-size: clamp(1.08rem, 1.1vw, 1.25rem);
    line-height: 1.62;
}

.mwt-hero-answer {
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 1.25rem;
    padding: 1rem 1.15rem;
}

.mwt-hero-answer div {
    font-weight: 650;
}

.mwt-access-card {
    border: 1px solid rgba(8,21,38,.08);
    background: #fff;
    border-radius: 1.35rem;
    padding: 1.35rem;
    box-shadow: 0 18px 45px rgba(8,21,38,.08);
}

.mwt-access-card > span {
    display: inline-flex;
    padding: .32rem .65rem;
    border-radius: 999px;
    background: rgba(31,122,255,.10);
    color: #0d54c7;
    font-size: .78rem;
    font-weight: 900;
    margin-bottom: .85rem;
}

.mwt-access-card h3 {
    font-size: 1.1rem;
    font-weight: 900;
    margin-bottom: .85rem;
}

.mwt-access-card ul {
    padding-left: 1.1rem;
    margin-bottom: 0;
    color: #53657d;
}

.mwt-access-card li + li {
    margin-top: .45rem;
}

.mwt-access-card.featured {
    border-color: rgba(31,122,255,.24);
    box-shadow: 0 22px 55px rgba(31,122,255,.12);
}

.mwt-access-card.paid {
    background: linear-gradient(135deg, #071b33, #123761);
    color: #fff;
}

.mwt-access-card.paid ul {
    color: rgba(255,255,255,.78);
}

.mwt-access-card.paid > span {
    background: rgba(255,255,255,.14);
    color: #fff;
}

.mwt-category-link.more {
    border-style: dashed;
    background: linear-gradient(135deg, #ffffff, #eef6ff);
}

.mwt-business-tile.register-tile {
    display: block;
    cursor: pointer;
    border-color: rgba(31,122,255,.28);
}

.mwt-business-tile.register-tile:hover {
    transform: translateY(-3px);
    background: #fff;
    box-shadow: 0 18px 45px rgba(31,122,255,.16);
}

.mwt-card {
    border: 1px solid rgba(8,21,38,.08);
    box-shadow: 0 18px 48px rgba(8,21,38,.08);
}

@media (max-width: 991.98px) {
    .mwt-home-hero {
        text-align: left;
    }

    .mwt-home-hero h1 {
        font-size: 2.65rem;
    }
}


/* Module 25 — Privacy page and B2B wording */
.mwt-privacy-content h2 {
    font-size: 1.35rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--mwt-text-strong, #071b33);
}

.mwt-privacy-content p,
.mwt-privacy-content li {
    color: #53657d;
    line-height: 1.72;
}

.mwt-privacy-content ul {
    padding-left: 1.15rem;
    margin-bottom: 0;
}

.mwt-privacy-content li + li {
    margin-top: .45rem;
}


/* Module 26 — Terms, consent banner and scroll-to-top */
.mwt-legal-content h2 {
    font-size: 1.35rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--mwt-text-strong, #071b33);
}

.mwt-legal-content p,
.mwt-legal-content li {
    color: #53657d;
    line-height: 1.72;
}

.mwt-legal-content ul {
    padding-left: 1.15rem;
    margin-bottom: 0;
}

.mwt-legal-content li + li {
    margin-top: .45rem;
}

.mwt-footer-link-button {
    appearance: none;
    border: 0;
    background: transparent;
    color: inherit;
    padding: 0;
    font: inherit;
    text-decoration: none;
}

.mwt-footer-link-button:hover {
    color: #fff;
    text-decoration: underline;
}

.mwt-scroll-top {
    position: fixed;
    right: 22px;
    bottom: 24px;
    z-index: 1050;
    width: 52px;
    height: 52px;
    border: 0;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background:
        radial-gradient(circle at 35% 20%, rgba(255,255,255,.35), transparent 30%),
        linear-gradient(135deg, #1f7aff, #0a3d91);
    box-shadow: 0 18px 45px rgba(31,122,255,.35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(14px) scale(.92);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.mwt-scroll-top i {
    font-size: 1.7rem;
    line-height: 1;
}

.mwt-scroll-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.mwt-scroll-top:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 22px 55px rgba(31,122,255,.45);
}

.mwt-consent-banner {
    position: fixed;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    z-index: 1040;
    width: min(1120px, calc(100% - 32px));
    border: 1px solid rgba(8,21,38,.10);
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(18px);
    border-radius: 1.35rem;
    box-shadow: 0 24px 80px rgba(8,21,38,.22);
    padding: 1rem;
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
}

.mwt-consent-copy {
    max-width: 670px;
}

.mwt-consent-copy strong {
    display: block;
    color: #071b33;
    font-weight: 900;
    margin-bottom: .25rem;
}

.mwt-consent-copy p {
    color: #53657d;
    margin: 0;
    font-size: .95rem;
}

.mwt-consent-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    justify-content: flex-end;
}

.mwt-consent-option {
    border: 1px solid rgba(8,21,38,.09);
    border-radius: 1rem;
    background: #fff;
    padding: 1rem;
    box-shadow: 0 12px 30px rgba(8,21,38,.06);
}

.mwt-consent-option strong {
    display: block;
    font-weight: 900;
    margin-bottom: .45rem;
}

.mwt-consent-option p {
    color: #53657d;
    font-size: .92rem;
    line-height: 1.6;
    margin-bottom: .75rem;
}

@media (max-width: 767.98px) {
    .mwt-consent-banner {
        align-items: stretch;
        flex-direction: column;
        bottom: 12px;
        width: calc(100% - 20px);
    }

    .mwt-consent-actions {
        justify-content: stretch;
    }

    .mwt-consent-actions .btn {
        flex: 1 1 100%;
    }

    .mwt-scroll-top {
        right: 14px;
        bottom: 14px;
        width: 48px;
        height: 48px;
        border-radius: 16px;
    }
}


/* Module 27 — Visual sitemap */
.mwt-sitemap-intro,
.mwt-sitemap-block {
    border: 1px solid rgba(8,21,38,.08);
    border-radius: 1.35rem;
    background: #fff;
    box-shadow: 0 18px 45px rgba(8,21,38,.07);
    padding: 1.5rem;
}

.mwt-sitemap-card,
.mwt-sitemap-small {
    display: block;
    height: 100%;
    text-decoration: none;
    border: 1px solid rgba(8,21,38,.08);
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border-radius: 1.15rem;
    padding: 1.15rem;
    box-shadow: 0 12px 30px rgba(8,21,38,.05);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.mwt-sitemap-card:hover,
.mwt-sitemap-small:hover {
    transform: translateY(-3px);
    border-color: rgba(31,122,255,.28);
    box-shadow: 0 20px 45px rgba(31,122,255,.12);
}

.mwt-sitemap-card strong,
.mwt-sitemap-small strong {
    display: block;
    color: #071b33;
    font-size: 1.02rem;
    font-weight: 900;
    margin-bottom: .4rem;
}

.mwt-sitemap-card small,
.mwt-sitemap-small span {
    display: block;
    color: #53657d;
    line-height: 1.55;
}

.mwt-sitemap-icon {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: .9rem;
    color: #0d54c7;
    background: rgba(31,122,255,.09);
    margin-bottom: .85rem;
}

.mwt-sitemap-card.action {
    background: linear-gradient(180deg, #ffffff 0%, #eef7ff 100%);
}

.mwt-sitemap-card.legal {
    background: linear-gradient(180deg, #ffffff 0%, #f7f7fb 100%);
}


/* Module 28 — Multi-language selector */
.mwt-language-button {
    border: 1px solid rgba(255,255,255,.28);
    color: #fff;
    background: rgba(255,255,255,.08);
    border-radius: .75rem;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-weight: 800;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.12);
}

.mwt-language-button:hover,
.mwt-language-button:focus {
    color: #fff;
    background: rgba(255,255,255,.14);
    border-color: rgba(255,255,255,.45);
}

.mwt-language-flag {
    display: inline-flex;
    width: 1.3rem;
    height: 1.3rem;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255,255,255,.14);
    font-size: .88rem;
}

.mwt-language-menu {
    border: 1px solid rgba(8,21,38,.10);
    border-radius: 1rem;
    padding: .45rem;
    box-shadow: 0 18px 50px rgba(8,21,38,.18);
    min-width: 190px;
}

.mwt-language-menu .dropdown-item {
    border-radius: .75rem;
    font-weight: 750;
    padding: .65rem .75rem;
}

.mwt-language-menu .dropdown-item.active {
    background: linear-gradient(135deg, #1f7aff, #0a3d91);
    color: #fff;
}

@media (max-width: 991.98px) {
    .mwt-language-button {
        margin-top: .5rem;
        width: 100%;
        justify-content: center;
    }
}


/* Module 36 — Translation admin UX */
.mwt-translation-admin {
    scroll-behavior: smooth;
}

.mwt-translation-toolbar {
    position: sticky;
    top: 0;
    z-index: 100;
    border: 1px solid rgba(8,21,38,.08);
}

.mwt-translation-stat {
    display: block;
    height: 100%;
    border: 1px solid rgba(8,21,38,.08);
    border-radius: 1rem;
    padding: 1rem;
    background: #fff;
    box-shadow: 0 12px 32px rgba(8,21,38,.06);
    color: inherit;
    transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

.mwt-translation-stat:hover,
.mwt-translation-stat.active {
    transform: translateY(-2px);
    border-color: rgba(31,122,255,.28);
    box-shadow: 0 18px 42px rgba(31,122,255,.12);
}

.mwt-translation-stat strong {
    display: block;
    font-size: 1.65rem;
    line-height: 1;
    font-weight: 900;
    color: #071b33;
}

.mwt-translation-stat span {
    display: block;
    margin-top: .35rem;
    font-weight: 800;
    color: #071b33;
}

.mwt-translation-stat small {
    display: block;
    margin-top: .25rem;
    color: #6b7a90;
}

.mwt-translation-accordion .accordion-item {
    border: 1px solid rgba(8,21,38,.08);
    border-radius: 1rem !important;
    overflow: hidden;
    margin-bottom: .75rem;
    box-shadow: 0 8px 24px rgba(8,21,38,.04);
}

.mwt-translation-accordion .accordion-button {
    gap: .25rem;
    font-weight: 750;
}

.mwt-translation-accordion .accordion-button:not(.collapsed) {
    background: #f4f9ff;
    color: #071b33;
    box-shadow: none;
}

.mwt-original-box {
    max-height: 260px;
    overflow: auto;
    white-space: normal;
    border: 1px solid rgba(8,21,38,.08);
    background: #f8fafc;
    border-radius: .85rem;
    padding: .9rem;
    color: #334155;
    line-height: 1.6;
}

@media (max-width: 991.98px) {
    .mwt-translation-toolbar {
        position: static;
    }
}

/* Module 38 — Dashboard UX + role capabilities */
.mwt-dashboard-hero {
    border-radius: 1.5rem;
    padding: 1.75rem;
    color: #fff;
    background: radial-gradient(circle at top left, rgba(37, 99, 235, .95), rgba(8, 21, 38, .98) 58%), #081526;
    box-shadow: 0 24px 60px rgba(8, 21, 38, .18);
    overflow: hidden;
    position: relative;
}

.mwt-dashboard-hero::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    right: -90px;
    top: -110px;
    border-radius: 999px;
    background: rgba(255,255,255,.08);
}

.mwt-dashboard-hero.business-hero {
    background: radial-gradient(circle at top left, rgba(5, 150, 105, .95), rgba(8, 21, 38, .98) 58%), #081526;
}

.text-white-75 { color: rgba(255,255,255,.75); }

.mwt-priority-box {
    display: inline-block;
    min-width: 210px;
    padding: 1.1rem 1.25rem;
    border-radius: 1.2rem;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.16);
    backdrop-filter: blur(10px);
}

.mwt-dashboard-stat {
    display: flex;
    align-items: center;
    gap: .9rem;
    height: 100%;
    padding: 1rem;
    border-radius: 1.15rem;
    text-decoration: none;
    color: #071b33;
    background: #fff;
    border: 1px solid rgba(8, 21, 38, .08);
    box-shadow: 0 12px 34px rgba(8, 21, 38, .06);
    transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

.mwt-dashboard-stat:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 46px rgba(8, 21, 38, .11);
    border-color: rgba(37,99,235,.24);
    color: #071b33;
}

.mwt-dashboard-stat small {
    display: block;
    color: #6b7a90;
    font-weight: 750;
}

.mwt-dashboard-stat strong {
    display: block;
    font-size: 1.65rem;
    line-height: 1.05;
    font-weight: 900;
}

.mwt-dashboard-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    color: #fff;
    background: linear-gradient(135deg, #2563eb, #0f172a);
}

.tone-warning .mwt-dashboard-icon { background: linear-gradient(135deg, #f59e0b, #92400e); }
.tone-danger .mwt-dashboard-icon { background: linear-gradient(135deg, #ef4444, #991b1b); }
.tone-success .mwt-dashboard-icon { background: linear-gradient(135deg, #10b981, #065f46); }
.tone-info .mwt-dashboard-icon { background: linear-gradient(135deg, #06b6d4, #075985); }

.mwt-panel-card {
    background: #fff;
    border: 1px solid rgba(8, 21, 38, .08);
    border-radius: 1.35rem;
    padding: 1.25rem;
    box-shadow: 0 14px 38px rgba(8, 21, 38, .06);
}

.mwt-action-tile {
    display: block;
    height: 100%;
    padding: 1rem;
    border-radius: 1rem;
    text-decoration: none;
    background: #f8fafc;
    border: 1px solid rgba(8, 21, 38, .07);
    color: #071b33;
    transition: all .15s ease;
}

.mwt-action-tile:hover {
    background: #eef6ff;
    border-color: rgba(37,99,235,.2);
    transform: translateY(-2px);
    color: #071b33;
}

.mwt-action-tile strong,
.mwt-action-tile small {
    display: block;
}

.mwt-action-tile small {
    margin-top: .25rem;
    color: #6b7a90;
}

.mwt-capability-list {
    display: grid;
    gap: .75rem;
}

.mwt-capability-list > div {
    display: flex;
    gap: .65rem;
    align-items: flex-start;
    line-height: 1.45;
}

.mwt-capability-list .ok,
.mwt-checklist .ok {
    width: 24px;
    height: 24px;
    min-width: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #dcfce7;
    color: #166534;
    font-weight: 900;
}

.mwt-capability-list .warn,
.mwt-checklist .warn {
    width: 24px;
    height: 24px;
    min-width: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #fef3c7;
    color: #92400e;
    font-weight: 900;
}

.mwt-capability-list.muted { color: #475569; }

.mwt-notice-row {
    display: block;
    padding: .85rem 1rem;
    border-radius: .95rem;
    border: 1px solid rgba(8, 21, 38, .07);
    background: #f8fafc;
    color: #071b33;
    text-decoration: none;
}

.mwt-notice-row:hover { background: #eef6ff; color: #071b33; }
.mwt-notice-row strong,
.mwt-notice-row small,
.mwt-notice-row span { display: block; }
.mwt-notice-row small { color: #64748b; }
.mwt-notice-row span { color: #94a3b8; font-size: .78rem; margin-top: .25rem; }

.mwt-mini-metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .75rem;
}

.mwt-mini-metrics > div,
.mwt-mini-kpi {
    border-radius: 1rem;
    background: #f8fafc;
    border: 1px solid rgba(8, 21, 38, .07);
    padding: .9rem;
}

.mwt-mini-metrics strong,
.mwt-mini-kpi strong { display: block; font-size: 1.35rem; font-weight: 900; color: #071b33; }
.mwt-mini-metrics span,
.mwt-mini-kpi span { display: block; color: #64748b; font-size: .85rem; font-weight: 700; }

.mwt-limit-row { margin-bottom: 1rem; }
.mwt-limit-row .progress { height: .65rem; border-radius: 999px; background: #e2e8f0; }
.mwt-limit-row .progress-bar { border-radius: 999px; background: linear-gradient(90deg, #2563eb, #10b981); }

.mwt-progress-circle {
    width: 128px;
    height: 128px;
    border-radius: 50%;
    background: conic-gradient(#2563eb calc(var(--value) * 1%), #e2e8f0 0);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-inline: auto;
    position: relative;
}

.mwt-progress-circle::after {
    content: "";
    position: absolute;
    inset: 12px;
    background: #fff;
    border-radius: 50%;
}

.mwt-progress-circle span {
    position: relative;
    z-index: 1;
    font-weight: 900;
    font-size: 1.45rem;
    color: #071b33;
}

.mwt-checklist {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .65rem;
}

.mwt-checklist > div {
    display: flex;
    align-items: center;
    gap: .5rem;
    color: #475569;
    text-transform: capitalize;
}

.mwt-layout-language .dropdown-menu .active { background: #2563eb; }

@media (max-width: 767.98px) {
    .mwt-mini-metrics,
    .mwt-checklist { grid-template-columns: 1fr; }
    .mwt-dashboard-hero { padding: 1.25rem; }
}


/* Module 40 — Admin business translation + dashboard clarity */
.list-group-item.active {
    background: linear-gradient(135deg, #1f7aff, #0f4fb8);
    border-color: rgba(31,122,255,.65);
    color: #fff;
    font-weight: 800;
}

.mwt-mini-metrics-wide {
    grid-template-columns: repeat(3, 1fr);
}

.mwt-mini-metrics small {
    display: block;
    margin-top: .25rem;
    color: #64748b;
    font-size: .72rem;
    line-height: 1.35;
}

@media (max-width: 991.98px) {
    .mwt-mini-metrics-wide {
        grid-template-columns: 1fr;
    }
}


/* Module 41 — Business panel translation */
.list-group-item.active {
    background: linear-gradient(135deg, #1f7aff, #0f4fb8);
    border-color: rgba(31,122,255,.65);
    color: #fff;
    font-weight: 800;
}

/* Module 53 — Scalable public business directory */
.mwt-business-card-compact {
    transition: transform .15s ease, box-shadow .15s ease;
}
.mwt-business-card-compact:hover {
    transform: translateY(-2px);
    box-shadow: 0 1rem 2rem rgba(15, 23, 42, .08) !important;
}
.mwt-filter-panel .form-control,
.mwt-filter-panel .form-select {
    min-height: 52px;
}


/* Module 60 — stable language badges instead of emoji flags */
.mwt-flag-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.85rem;
    height: 1.25rem;
    padding: 0 .35rem;
    border-radius: .35rem;
    background: linear-gradient(135deg, #e11d48, #2563eb);
    color: #fff;
    font-weight: 900;
    font-size: .68rem;
    letter-spacing: .03em;
    line-height: 1;
    vertical-align: middle;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.25);
}
.dropdown-item.active .mwt-flag-badge { box-shadow: inset 0 0 0 1px rgba(255,255,255,.45); }
.mwt-flag-badge.mwt-language-flag { width: auto; min-width: 1.85rem; height: 1.25rem; border-radius: .35rem; }


/* Module 65 — mobile cookie consent modal fix */
@media (max-width: 767.98px) {
    #mwtConsentModal .modal-dialog {
        margin: .5rem;
        max-height: calc(100dvh - 1rem);
    }

    #mwtConsentModal .modal-content {
        max-height: calc(100dvh - 1rem);
        overflow: hidden;
    }

    #mwtConsentModal .modal-body {
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 1rem;
    }

    #mwtConsentModal .modal-footer {
        position: sticky;
        bottom: 0;
        z-index: 2;
        background: #fff;
        box-shadow: 0 -12px 30px rgba(8,21,38,.08);
    }

    #mwtConsentModal .modal-footer .btn {
        flex: 1 1 100%;
    }
}


/* Module 71 — subscription status line polish */
.mwt-subscription-status-line {
    border-color: rgba(25, 135, 84, .25) !important;
    background: linear-gradient(135deg, rgba(25,135,84,.10), rgba(25,135,84,.04)) !important;
    color: #0f5132 !important;
}
