/* HelvetiCalc — styles de base (fonctionne sans CDN Tailwind) */
*, *::before, *::after { box-sizing: border-box; }

html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    color: #0f172a;
    background: #f8fafc;
    overflow-x: hidden;
    min-width: 320px;
}

img, svg { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

/* Layout */
.site-container {
    width: 100%;
    max-width: 72rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: max(1.25rem, env(safe-area-inset-left, 0px));
    padding-right: max(1.25rem, env(safe-area-inset-right, 0px));
}

@media (min-width: 640px) {
    .site-container {
        padding-left: max(1.5rem, env(safe-area-inset-left, 0px));
        padding-right: max(1.5rem, env(safe-area-inset-right, 0px));
    }
}

main { display: block; width: 100%; }

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #e2e8f0;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    min-height: 4rem;
    flex-wrap: nowrap;
}

.site-nav .site-logo {
    flex: 1 1 auto;
    min-width: 0;
}

.site-nav .site-menu-btn {
    flex-shrink: 0;
    margin-right: -0.25rem;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    min-width: 0;
}

.site-logo-icon {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.75rem;
    background: #0f172a;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.site-logo-icon .swiss-cross {
    position: absolute;
    inset: 0;
    opacity: 0.9;
}

.site-logo-text {
    font-weight: 700;
    font-size: 1rem;
    white-space: nowrap;
}

.site-logo-tagline {
    display: none;
    font-size: 0.625rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

@media (min-width: 640px) {
    .site-logo-tagline { display: block; }
}

.site-nav-links {
    display: none;
    align-items: center;
    gap: 0.25rem;
    flex-wrap: wrap;
}

@media (min-width: 768px) {
    .site-nav-links { display: flex; }
    .site-menu-btn { display: none !important; }
}

.site-nav-links a {
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    color: #475569;
    border-radius: 0.5rem;
    white-space: nowrap;
}

.site-nav-links a:hover {
    color: #0f172a;
    background: #f1f5f9;
}

.site-nav-links a.nav-gold { color: #ca8a04; font-weight: 500; }

/* Sélecteur de langue — desktop dropdown */
.lang-dropdown {
    position: relative;
    margin-left: 0.25rem;
}

.lang-dropdown-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.4375rem 0.625rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #475569;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 0.625rem;
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s, color 0.15s;
    white-space: nowrap;
}

.lang-dropdown-btn:hover,
.lang-dropdown.is-open .lang-dropdown-btn {
    border-color: #fecaca;
    background: #fff;
    color: #0f172a;
}

.lang-dropdown-icon { color: #94a3b8; flex-shrink: 0; }

.lang-dropdown-chevron {
    color: #94a3b8;
    transition: transform 0.2s;
    flex-shrink: 0;
}

.lang-dropdown.is-open .lang-dropdown-chevron {
    transform: rotate(180deg);
}

.lang-dropdown-menu {
    position: absolute;
    top: calc(100% + 0.375rem);
    right: 0;
    min-width: 11.5rem;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    box-shadow: 0 10px 40px rgba(15, 23, 42, 0.12);
    padding: 0.375rem;
    z-index: 60;
}

.lang-dropdown-menu:not([hidden]) {
    display: block;
    animation: langDropIn 0.15s ease;
}

@keyframes langDropIn {
    from { opacity: 0; transform: translateY(-4px); }
    to { opacity: 1; transform: translateY(0); }
}

.lang-dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.5rem 0.625rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    color: #334155;
    transition: background 0.12s, color 0.12s;
}

.lang-dropdown-item:hover {
    background: #f8fafc;
    color: #0f172a;
}

.lang-dropdown-item.is-active {
    background: #fef2f2;
    color: #dc2626;
    font-weight: 600;
}

.lang-dropdown-code {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: inherit;
    opacity: 0.85;
}

.lang-dropdown-name { flex: 1; }

.lang-dropdown-check {
    color: #dc2626;
    flex-shrink: 0;
    margin-left: auto;
}

/* Langues — mobile */
.lang-mobile {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid #e2e8f0;
}

.lang-mobile-label {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #94a3b8;
    margin: 0 0 0.5rem 0.25rem;
}

.lang-mobile-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.lang-mobile-item {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
    padding: 0.625rem 0.75rem;
    border-radius: 0.625rem;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    font-size: 0.8125rem;
    transition: border-color 0.15s, background 0.15s;
}

.lang-mobile-item:hover {
    border-color: #fecaca;
    background: #fff;
}

.lang-mobile-item.is-active {
    border-color: #fca5a5;
    background: #fef2f2;
    color: #dc2626;
}

.lang-mobile-code {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    opacity: 0.7;
}

.lang-mobile-name {
    font-weight: 600;
    color: inherit;
}

.site-menu-btn {
    display: flex;
    padding: 0.5rem;
    border: none;
    background: transparent;
    border-radius: 0.5rem;
    cursor: pointer;
}

.site-menu-btn:hover { background: #f1f5f9; }

.site-mobile-menu {
    display: none;
    border-top: 1px solid #e2e8f0;
    background: #fff;
}

.site-mobile-menu-inner {
    padding: 0.75rem max(1.25rem, env(safe-area-inset-left, 0px)) 1rem max(1.25rem, env(safe-area-inset-right, 0px));
}

@media (min-width: 640px) {
    .site-mobile-menu-inner {
        padding-left: max(1.5rem, env(safe-area-inset-left, 0px));
        padding-right: max(1.5rem, env(safe-area-inset-right, 0px));
    }
}

.site-mobile-menu:not([hidden]) {
    display: block;
}

.site-mobile-menu.is-open {
    display: block;
}

@media (min-width: 768px) {
    .site-mobile-menu { display: none !important; }
}

.site-mobile-menu a {
    display: block;
    padding: 0.625rem 0.75rem;
    font-size: 0.875rem;
    border-radius: 0.5rem;
}

.site-mobile-menu a:hover { background: #f8fafc; }

/* Hero */
.hero-bg {
    background-color: #0f172a;
    background-image:
        radial-gradient(at 15% 25%, rgba(220, 38, 38, 0.18) 0, transparent 45%),
        radial-gradient(at 85% 15%, rgba(234, 179, 8, 0.08) 0, transparent 40%),
        radial-gradient(at 50% 90%, rgba(100, 116, 139, 0.15) 0, transparent 50%);
    color: #fff;
    position: relative;
    overflow-x: hidden;
    width: 100%;
}

.hero-inner {
    position: relative;
    padding-top: 3rem;
    padding-bottom: 4rem;
}

@media (min-width: 640px) {
    .hero-inner {
        padding-top: 5rem;
        padding-bottom: 7rem;
    }
}

.hero-blobs {
    position: absolute;
    inset: 0;
    opacity: 0.2;
    pointer-events: none;
    overflow: hidden;
}

.hero-blob {
    position: absolute;
    border-radius: 9999px;
    filter: blur(64px);
}

.hero-blob-1 { top: 4rem; left: 2rem; width: 16rem; height: 16rem; background: rgba(220, 38, 38, 0.3); }
.hero-blob-2 { bottom: 2rem; right: 3rem; width: 20rem; height: 20rem; background: rgba(234, 179, 8, 0.1); }

.hero-content { position: relative; max-width: 48rem; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.875rem;
    color: #fca5a5;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: clamp(1.875rem, 5vw, 3.75rem);
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 1.5rem;
    letter-spacing: -0.02em;
}

.hero-title span {
    background: linear-gradient(to right, #f87171, #facc15);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.hero-desc {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: #cbd5e1;
    line-height: 1.6;
    margin: 0 0 2rem;
    max-width: 42rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

@media (max-width: 639px) {
    .hero-actions .btn {
        flex: 1 1 100%;
        justify-content: center;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0.75rem;
    border: none;
    cursor: pointer;
    text-align: center;
    white-space: normal;
    word-break: break-word;
}

.btn-primary {
    background: #dc2626;
    color: #fff;
    box-shadow: 0 10px 15px -3px rgba(220, 38, 38, 0.25);
}

.btn-primary:hover { background: #b91c1c; }

.btn-glass {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
}

.btn-glass:hover { background: rgba(255, 255, 255, 0.12); }

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem 1rem;
    max-width: 32rem;
}

@media (max-width: 380px) {
    .hero-stats { gap: 0.5rem; }
    .hero-stat-label { font-size: 0.6875rem; line-height: 1.3; }
}

.hero-stat-val {
    font-size: clamp(1.25rem, 3vw, 1.875rem);
    font-weight: 700;
    color: #facc15;
}

.hero-stat-label {
    font-size: 0.75rem;
    color: #94a3b8;
    margin-top: 0.25rem;
}

/* Grids & cards */
.section-overlap {
    margin-top: -2.5rem;
    position: relative;
    z-index: 10;
    padding-bottom: 4rem;
    padding-left: max(0px, env(safe-area-inset-left, 0px));
    padding-right: max(0px, env(safe-area-inset-right, 0px));
}

.grid-3 {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .grid-3.cols-3 { grid-template-columns: repeat(3, 1fr); }
}

.grid-2 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
    .grid-2 { grid-template-columns: 1fr 1fr; }
}

.grid-sim {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
    .grid-sim { grid-template-columns: 2fr 3fr; }
}

.card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    padding: 1.25rem;
}

@media (min-width: 640px) {
    .card { padding: 1.5rem; }
}

.card:hover {
    border-color: rgba(248, 113, 113, 0.4);
    box-shadow: 0 20px 25px -5px rgba(220, 38, 38, 0.05);
}

.card-tool { padding: 1.5rem; }

@media (min-width: 640px) {
    .card-tool { padding: 2rem; }
}

/* Footer */
.site-footer {
    background: #020617;
    color: #cbd5e1;
    margin-top: 5rem;
    padding: 3rem 0;
}

.site-footer h4 {
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    margin: 0 0 0.75rem;
}

.site-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-footer li { margin-bottom: 0.5rem; }

.site-footer a:hover { color: #f87171; }

.footer-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .footer-grid { grid-template-columns: repeat(4, 1fr); }
}

.footer-bottom {
    border-top: 1px solid #1e293b;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 0.75rem;
    color: #64748b;
}

@media (min-width: 640px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

/* Swiss cross */
.swiss-cross {
    background:
        linear-gradient(to bottom, transparent 42%, #dc2626 42%, #dc2626 58%, transparent 58%),
        linear-gradient(to right, transparent 42%, #dc2626 42%, #dc2626 58%, transparent 58%);
}

/* Forms — sliders tactiles (mobile-first) */
.range-control {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.range-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.range-value {
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 700;
    color: #dc2626;
    font-size: 0.875rem;
    text-align: right;
    flex-shrink: 0;
    min-width: 4.5rem;
}

.range-input-wrap {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    flex-shrink: 0;
}

.range-number {
    width: 6.5rem;
    padding: 0.5rem 0.625rem;
    border-radius: 0.625rem;
    border: 1px solid #e2e8f0;
    background: #fff;
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 600;
    font-size: 0.875rem;
    color: #dc2626;
    text-align: right;
    -moz-appearance: textfield;
}

.range-number::-webkit-outer-spin-button,
.range-number::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.range-number:focus {
    outline: none;
    border-color: #dc2626;
    box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.15);
}

.range-suffix {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #64748b;
    flex-shrink: 0;
}

input[type=range] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(
        to right,
        #dc2626 0%,
        #dc2626 var(--range-pct, 50%),
        #e2e8f0 var(--range-pct, 50%),
        #e2e8f0 100%
    );
    cursor: pointer;
    touch-action: manipulation;
    flex: 1;
    min-width: 0;
}

input[type=range]::-webkit-slider-runnable-track {
    height: 8px;
    border-radius: 999px;
}

input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    margin-top: -8px;
    border-radius: 50%;
    background: #dc2626;
    border: 3px solid #fff;
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.35);
    cursor: grab;
}

input[type=range]:active::-webkit-slider-thumb {
    cursor: grabbing;
    transform: scale(1.08);
}

input[type=range]::-moz-range-track {
    height: 8px;
    border-radius: 999px;
    background: #e2e8f0;
}

input[type=range]::-moz-range-progress {
    height: 8px;
    border-radius: 999px;
    background: #dc2626;
}

input[type=range]::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #dc2626;
    border: 3px solid #fff;
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.35);
    cursor: grab;
}

@media (max-width: 640px) {
    .range-row {
        flex-direction: column;
        align-items: stretch;
        gap: 0.625rem;
        padding: 0.25rem 0;
    }

    .range-value {
        order: -1;
        text-align: left;
        font-size: 1.125rem;
        min-width: 0;
        padding: 0.125rem 0;
    }

    .range-input-wrap {
        order: -1;
        justify-content: flex-end;
    }

    .range-number {
        width: 100%;
        max-width: 10rem;
        font-size: 1rem;
        padding: 0.625rem 0.75rem;
    }

    input[type=range] {
        height: 10px;
        padding: 16px 0;
        margin: -16px 0;
    }

    input[type=range]::-webkit-slider-runnable-track {
        height: 10px;
    }

    input[type=range]::-webkit-slider-thumb {
        width: 32px;
        height: 32px;
        margin-top: -11px;
        border-width: 4px;
    }

    input[type=range]::-moz-range-thumb {
        width: 32px;
        height: 32px;
    }
}

select, .form-select {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    font-size: 1rem;
    font-family: inherit;
}

/* Utilities */
.text-muted { color: #64748b; }
.text-red { color: #dc2626; }
.text-gold { color: #eab308; }
.font-mono { font-family: 'IBM Plex Mono', monospace; }
.py-section { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.mb-8 { margin-bottom: 2rem; }
.sr-only-focusable:not(:focus) { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

.ad-slot {
    min-height: 90px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 1px dashed #cbd5e1;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

.ad-slot-wrap {
    margin: 2rem 0;
}

.ad-funding-note {
    margin-top: 0.75rem;
    padding: 0.75rem 1rem;
    font-size: 0.8125rem;
    line-height: 1.5;
    color: #64748b;
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: 0.625rem;
    text-align: center;
}

.ad-funding-link {
    display: inline;
    margin-left: 0.25rem;
    color: #dc2626;
    font-weight: 600;
    text-decoration: underline;
    background: none;
    border: none;
    cursor: pointer;
    font-size: inherit;
    padding: 0;
}

/* Bannière cookies LPD */
.cookie-banner {
    position: fixed;
    inset: auto 0 0 0;
    z-index: 9999;
    padding: 1rem;
    background: rgba(15, 23, 42, 0.55);
    backdrop-filter: blur(6px);
}

.cookie-banner[hidden] {
    display: none !important;
}

.cookie-banner-inner {
    max-width: 52rem;
    margin: 0 auto;
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    padding: 1.25rem 1.5rem;
    border: 1px solid #e2e8f0;
}

.cookie-banner-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.cookie-banner-text {
    font-size: 0.875rem;
    color: #475569;
    line-height: 1.55;
    margin-bottom: 0.5rem;
}

.cookie-banner-link {
    color: #dc2626;
    text-decoration: underline;
    font-weight: 500;
}

.cookie-panel {
    margin: 1rem 0;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 0.75rem;
    border: 1px solid #e2e8f0;
}

.cookie-toggle {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    font-size: 0.8125rem;
    color: #334155;
    margin-bottom: 0.75rem;
    cursor: pointer;
}

.cookie-toggle:last-child {
    margin-bottom: 0;
}

.cookie-toggle input {
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.cookie-banner-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.cookie-btn {
    padding: 0.625rem 1.125rem;
    border-radius: 0.625rem;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: background 0.15s, color 0.15s;
}

.cookie-btn-primary {
    background: #dc2626;
    color: #fff;
}

.cookie-btn-primary:hover {
    background: #b91c1c;
}

.cookie-btn-secondary {
    background: #0f172a;
    color: #fff;
}

.cookie-btn-ghost {
    background: #f1f5f9;
    color: #334155;
    border: 1px solid #e2e8f0;
}

.cookie-btn-link {
    background: transparent;
    color: #64748b;
    text-decoration: underline;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.cookie-table {
    border-collapse: collapse;
}

.cookie-table th,
.cookie-table td {
    border: 1px solid #e2e8f0;
    padding: 0.5rem 0.75rem;
    text-align: left;
}

.cookie-table th {
    background: #f1f5f9;
    font-weight: 600;
    color: #0f172a;
}

@media (max-width: 640px) {
    .cookie-banner-actions {
        flex-direction: column;
    }
    .cookie-btn {
        width: 100%;
        text-align: center;
    }
}

.methodology-table th,
.methodology-table td { vertical-align: top; }

@media (max-width: 640px) {
    .methodology-table { font-size: 0.8125rem; }
    .methodology-table th:nth-child(3),
    .methodology-table td:nth-child(3) { display: none; }
}

.disclaimer-box a { color: #b45309; }
.sources-box a { color: #dc2626; }
.is-hidden { display: none !important; }

[hidden].site-mobile-menu { display: none !important; }

.result-pop { animation: popIn 0.4s ease; }

@keyframes popIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Tailwind CDN fallback — uniquement si CDN indisponible */
.tw-fallback .is-hidden { display: none !important; }

@media (max-width: 767px) {
    .tw-fallback .md\:flex { display: none !important; }
    .tw-fallback .md\:hidden { display: block !important; }
}

.grid-sim .space-y-6 > * + * { margin-top: 1.5rem; }

table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }

.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }

@media (min-width: 768px) {
    .site-nav { flex-wrap: nowrap; }
    .tw-fallback .md\:flex { display: flex !important; }
    .tw-fallback .md\:hidden { display: none !important; }
}
