/* =====================================================================
   alternate-theme.css — Modern redesign for 11500.net
   A clean, professional, card-based design system.
   Self-contained (no Bootstrap dependency) so it can sit alongside
   the existing theme without touching it.
   ===================================================================== */

:root {
    --primary: #4f46e5;
    --primary-dark: #4338ca;
    --primary-light: #eef2ff;
    --accent: #f59e0b;
    --accent-dark: #d97706;
    --bg: #f9fafb;
    --surface: #ffffff;
    --text: #1f2937;
    --muted: #6b7280;
    --border: #e5e7eb;
    --success: #10b981;
    --radius: 14px;
    --radius-sm: 10px;
    --shadow-sm: 0 1px 2px rgba(16, 24, 40, .06), 0 1px 3px rgba(16, 24, 40, .10);
    --shadow: 0 4px 12px rgba(16, 24, 40, .08), 0 2px 4px rgba(16, 24, 40, .04);
    --shadow-lg: 0 12px 32px rgba(16, 24, 40, .12);
    --maxw: 1180px;
    --nav-h: 68px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body.alt-modern {
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-dark); }

img { max-width: 100%; }

/* ---------- Layout helpers ---------- */
.alt-container {
    width: 100%;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 24px;
}
.alt-section { padding: 64px 0; }
.alt-section--tight { padding: 40px 0; }
.alt-section--alt { background: var(--surface); }
.alt-section--tint { background: var(--primary-light); }

.alt-eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--primary);
    background: var(--primary-light);
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 16px;
}
.alt-section-title {
    font-size: 30px;
    font-weight: 800;
    letter-spacing: -.02em;
    margin: 0 0 10px;
    color: var(--text);
}
.alt-section-sub {
    font-size: 17px;
    color: var(--muted);
    margin: 0 0 36px;
    max-width: 640px;
}
.alt-center { text-align: center; }
.alt-center .alt-section-sub { margin-left: auto; margin-right: auto; }

/* ---------- Top navigation ---------- */
.alt-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: saturate(180%) blur(12px);
    -webkit-backdrop-filter: saturate(180%) blur(12px);
    border-bottom: 1px solid var(--border);
    height: var(--nav-h);
}
.alt-nav__inner {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 24px;
}
.alt-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 19px;
    color: var(--text);
    letter-spacing: -.02em;
    white-space: nowrap;
}
.alt-brand__mark {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary), #7c3aed);
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    box-shadow: var(--shadow-sm);
}
.alt-brand small { display: block; font-size: 11px; font-weight: 600; color: var(--muted); letter-spacing: 0; }

.alt-menu {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: 8px;
    flex: 1;
}
.alt-menu__item { position: relative; }
.alt-menu__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 14px;
    border-radius: 9px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    transition: background .15s, color .15s;
}
.alt-menu__link:hover { background: var(--primary-light); color: var(--primary); }
.alt-menu__link .caret { font-size: 10px; opacity: .6; }

/* dropdown */
.alt-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 230px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity .15s, transform .15s, visibility .15s;
}
.alt-menu__item:hover .alt-dropdown,
.alt-menu__item:focus-within .alt-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.alt-dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
}
.alt-dropdown a:hover { background: var(--primary-light); color: var(--primary); }
.alt-dropdown .dd-icon { font-size: 16px; width: 22px; text-align: center; }
.alt-dropdown .dd-label {
    padding: 8px 12px 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--muted);
}
.alt-dropdown hr { border: none; border-top: 1px solid var(--border); margin: 6px 0; }

/* nav actions */
.alt-actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }

/* buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 20px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform .12s, box-shadow .12s, background .15s, color .15s;
    white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--primary); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--primary-dark); color: #fff; box-shadow: var(--shadow); }
.btn--accent { background: var(--accent); color: #fff; box-shadow: var(--shadow-sm); }
.btn--accent:hover { background: var(--accent-dark); color: #fff; }
.btn--ghost { background: transparent; color: var(--text); border-color: var(--border); }
.btn--ghost:hover { background: var(--surface); border-color: #d1d5db; }
.btn--light { background: #fff; color: var(--primary); }
.btn--light:hover { background: #f3f4f6; color: var(--primary-dark); }
.btn--lg { padding: 14px 28px; font-size: 16px; border-radius: 12px; }
.btn--sm { padding: 8px 14px; font-size: 13px; }

/* mobile nav toggle */
.alt-burger {
    display: none;
    margin-left: auto;
    background: none;
    border: 1px solid var(--border);
    border-radius: 9px;
    width: 42px;
    height: 42px;
    font-size: 20px;
    cursor: pointer;
    color: var(--text);
}

/* ---------- Hero ---------- */
.alt-hero {
    position: relative;
    background:
        radial-gradient(1200px 500px at 85% -10%, rgba(124, 58, 237, .25), transparent 60%),
        radial-gradient(900px 400px at 0% 110%, rgba(79, 70, 229, .18), transparent 55%),
        linear-gradient(180deg, #ffffff 0%, #f5f6ff 100%);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}
.alt-hero__inner {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 84px 24px 92px;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 48px;
    align-items: center;
}
.alt-hero h1 {
    font-size: 52px;
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -.03em;
    margin: 0 0 20px;
}
.alt-hero h1 .grad {
    background: linear-gradient(90deg, var(--primary), #7c3aed);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.alt-hero p.lead {
    font-size: 19px;
    color: var(--muted);
    margin: 0 0 30px;
    max-width: 520px;
}
.alt-hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }
.alt-hero__stats {
    display: flex;
    gap: 32px;
    margin-top: 40px;
    flex-wrap: wrap;
}
.alt-hero__stat b { display: block; font-size: 26px; font-weight: 800; color: var(--text); }
.alt-hero__stat span { font-size: 13px; color: var(--muted); }

/* hero visual card stack */
.alt-hero__visual { position: relative; }
.alt-hero__card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    padding: 22px;
}
.alt-hero__card + .alt-hero__card { margin-top: 16px; }
.alt-hero__card .row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px;
    border-radius: 12px;
    transition: background .15s;
}
.alt-hero__card .row:hover { background: var(--primary-light); }
.alt-hero__card .ic {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-size: 22px;
    background: var(--primary-light);
    flex-shrink: 0;
}
.alt-hero__card .row b { display: block; font-size: 15px; }
.alt-hero__card .row span { font-size: 13px; color: var(--muted); }

/* ---------- Category cards grid ---------- */
.alt-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.alt-grid--3 { grid-template-columns: repeat(3, 1fr); }
.alt-grid--2 { grid-template-columns: repeat(2, 1fr); }

.alt-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 26px;
    box-shadow: var(--shadow-sm);
    transition: transform .15s, box-shadow .15s, border-color .15s;
    display: flex;
    flex-direction: column;
}
.alt-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: #c7d2fe;
}
.alt-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    font-size: 26px;
    background: var(--primary-light);
    margin-bottom: 16px;
}
.alt-card h3 { font-size: 18px; font-weight: 700; margin: 0 0 8px; }
.alt-card p { font-size: 14px; color: var(--muted); margin: 0 0 16px; flex: 1; }
.alt-card__links { display: flex; flex-wrap: wrap; gap: 8px; }

/* pill links inside cards */
.pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 13px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    background: var(--bg);
    border: 1px solid var(--border);
    color: var(--text);
    transition: all .15s;
}
.pill:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.pill--primary { background: var(--primary-light); border-color: #c7d2fe; color: var(--primary); }
.pill--primary:hover { background: var(--primary); color: #fff; }

/* ---- Link status indicators (link audit) ----
   .link-dead    = RED   — link is broken / no longer active
   .link-fixed   = GREEN — link was broken, now repaired
   .link-suggest = BLUE  — suggested replacement for a dead link */
a.link-dead, .pill.link-dead {
    color: #b91c1c !important;
    background: #fee2e2 !important;
    border-color: #fca5a5 !important;
    text-decoration: line-through;
    cursor: not-allowed;
}
a.link-dead:hover, .pill.link-dead:hover {
    background: #fecaca !important;
    color: #b91c1c !important;
}
a.link-fixed, .pill.link-fixed {
    color: #15803d !important;
    background: #dcfce7 !important;
    border-color: #86efac !important;
}
a.link-fixed:hover, .pill.link-fixed:hover {
    background: #bbf7d0 !important;
    color: #15803d !important;
}
a.link-suggest, .pill.link-suggest {
    color: #1d4ed8 !important;
    background: #dbeafe !important;
    border-color: #93c5fd !important;
}
a.link-suggest:hover, .pill.link-suggest:hover {
    background: #bfdbfe !important;
    color: #1d4ed8 !important;
}
/* .link-alt = PURPLE — original site shut down; invented a different alternative resource */
a.link-alt, .pill.link-alt {
    color: #6b21a8 !important;
    background: #f3e8ff !important;
    border-color: #d8b4fe !important;
}
a.link-alt:hover, .pill.link-alt:hover {
    background: #e9d5ff !important;
    color: #6b21a8 !important;
}
/* Subtle direct-contact links (email / phone / WhatsApp) */
.alt-direct {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    font-size: 0.92rem;
}
.alt-direct a {
    color: var(--muted);
    text-decoration: none;
    border-bottom: 1px dotted var(--muted);
    transition: color 0.15s ease, border-color 0.15s ease;
}
.alt-direct a:hover {
    color: var(--accent);
    border-color: var(--accent);
}

/* ---------- Level cards ---------- */
.alt-level {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    transition: transform .15s, box-shadow .15s;
    position: relative;
    overflow: hidden;
}
.alt-level:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.alt-level__badge {
    display: inline-block;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .04em;
    padding: 5px 12px;
    border-radius: 8px;
    margin-bottom: 14px;
}
.alt-level h3 { font-size: 17px; font-weight: 700; margin: 0 0 6px; }
.alt-level p { font-size: 13px; color: var(--muted); margin: 0 0 14px; }
.alt-level__links { display: flex; flex-wrap: wrap; gap: 7px; }
.lv-a1 { background: #dcfce7; color: #166534; }
.lv-a2 { background: #d1fae5; color: #065f46; }
.lv-b1 { background: #dbeafe; color: #1e40af; }
.lv-b2 { background: #e0e7ff; color: #3730a3; }
.lv-c1 { background: #ede9fe; color: #5b21b6; }
.lv-c2 { background: #fce7f3; color: #9d174d; }

/* ---------- CTA banner ---------- */
.alt-cta {
    background: linear-gradient(120deg, var(--primary), #7c3aed);
    border-radius: 22px;
    padding: 48px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    box-shadow: var(--shadow-lg);
    flex-wrap: wrap;
}
.alt-cta h2 { font-size: 28px; font-weight: 800; margin: 0 0 8px; letter-spacing: -.02em; }
.alt-cta p { margin: 0; opacity: .9; font-size: 16px; }

/* ---------- Footer ---------- */
.alt-footer {
    background: #111827;
    color: #cbd5e1;
    padding: 56px 0 28px;
    margin-top: 0;
}
.alt-footer__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
    gap: 28px;
    margin-bottom: 36px;
}
.alt-footer h4 { color: #fff; font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; margin: 0 0 16px; }
.alt-footer a { color: #cbd5e1; font-size: 14px; display: block; padding: 5px 0; }
.alt-footer a:hover { color: #fff; }
.alt-footer__brand { font-size: 18px; font-weight: 800; color: #fff; margin-bottom: 12px; }
.alt-footer__brand p { font-size: 14px; color: #94a3b8; font-weight: 400; margin: 8px 0 0; max-width: 280px; }
.alt-footer__bottom {
    border-top: 1px solid #1f2937;
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #64748b;
    flex-wrap: wrap;
    gap: 10px;
}

/* ---------- Media (news/magazines) region cards ---------- */
.alt-region {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    transition: transform .15s, box-shadow .15s;
}
.alt-region:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.alt-region__head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
}
.alt-region__flag { font-size: 28px; }
.alt-region__head h3 { font-size: 17px; font-weight: 700; margin: 0; }
.alt-region__head span { font-size: 12px; color: var(--muted); display: block; }
.alt-region__links { display: flex; flex-wrap: wrap; gap: 8px; }

/* topic cards for magazines */
.alt-topic {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px;
    box-shadow: var(--shadow-sm);
    transition: transform .15s, box-shadow .15s;
}
.alt-topic:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.alt-topic__icon { font-size: 30px; margin-bottom: 12px; }
.alt-topic h3 { font-size: 16px; font-weight: 700; margin: 0 0 14px; }
.alt-topic__links { display: flex; flex-wrap: wrap; gap: 7px; }

/* ---------- Page hero (for sub pages) ---------- */
.alt-pagehero {
    background:
        radial-gradient(800px 300px at 90% -20%, rgba(124, 58, 237, .22), transparent 60%),
        linear-gradient(180deg, #ffffff, #f5f6ff);
    border-bottom: 1px solid var(--border);
    padding: 56px 0;
}
.alt-pagehero h1 { font-size: 40px; font-weight: 800; letter-spacing: -.02em; margin: 0 0 12px; }
.alt-pagehero p { font-size: 18px; color: var(--muted); margin: 0; max-width: 680px; }

/* ---------- Back link ---------- */
.alt-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--muted);
    margin-bottom: 20px;
}
.alt-back:hover { color: var(--primary); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .alt-grid { grid-template-columns: repeat(3, 1fr); }
    .alt-hero__inner { grid-template-columns: 1fr; padding: 60px 24px; }
    .alt-hero__visual { max-width: 480px; }
    .alt-hero h1 { font-size: 42px; }
}
@media (max-width: 820px) {
    .alt-menu { display: none; }
    .alt-burger { display: inline-flex; align-items: center; justify-content: center; }
    .alt-actions .btn--ghost { display: none; }
    .alt-grid, .alt-grid--3 { grid-template-columns: repeat(2, 1fr); }
    .alt-footer__grid { grid-template-columns: 1fr 1fr; }
    .alt-section { padding: 44px 0; }
    .alt-section-title { font-size: 25px; }
    .alt-cta { padding: 32px; }
    .alt-split, .alt-split--wide { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
    .alt-grid, .alt-grid--3, .alt-grid--2 { grid-template-columns: 1fr; }
    .alt-hero h1 { font-size: 34px; }
    .alt-hero__stats { gap: 20px; }
    .alt-footer__grid { grid-template-columns: 1fr; }
    .alt-pagehero h1 { font-size: 30px; }
}

/* ---------- Callout / info box ---------- */
.alt-callout {
    background: var(--surface);
    border: 1px solid var(--border);
    border-left: 4px solid var(--primary);
    border-radius: var(--radius-sm);
    padding: 20px 24px;
    box-shadow: var(--shadow-sm);
    margin: 0 0 24px;
}
.alt-callout--accent { border-left-color: var(--accent); }
.alt-callout--success { border-left-color: var(--success); }
.alt-callout h3 { font-size: 16px; font-weight: 700; margin: 0 0 8px; display: flex; align-items: center; gap: 8px; }
.alt-callout p, .alt-callout li { font-size: 14.5px; color: var(--muted); }
.alt-callout ul { margin: 8px 0 0; padding-left: 20px; }
.alt-callout li { margin: 4px 0; }

/* ---------- Numbered steps ---------- */
.alt-steps { counter-reset: step; display: grid; gap: 14px; margin: 8px 0 0; }
.alt-step {
    display: flex; gap: 16px; align-items: flex-start;
    background: var(--surface); border: 1px solid var(--border);
    border-radius: var(--radius-sm); padding: 16px 18px; box-shadow: var(--shadow-sm);
}
.alt-step::before {
    counter-increment: step; content: counter(step);
    flex: 0 0 auto; width: 34px; height: 34px; border-radius: 50%;
    background: var(--primary); color: #fff; font-weight: 800; font-size: 16px;
    display: grid; place-items: center;
}
.alt-step b { display: block; font-size: 15px; margin-bottom: 2px; }
.alt-step span { font-size: 14px; color: var(--muted); }

/* ---------- Badges / tags ---------- */
.alt-badge {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 12px; font-weight: 700; letter-spacing: .02em;
    padding: 4px 11px; border-radius: 999px;
    background: var(--primary-light); color: var(--primary);
}
.alt-badge--accent { background: #fef3c7; color: var(--accent-dark); }
.alt-badge--success { background: #d1fae5; color: #065f46; }
.alt-badge--muted { background: #f3f4f6; color: var(--muted); }

/* ---------- Two-column split ---------- */
.alt-split { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: start; }
.alt-split--wide { grid-template-columns: 1.4fr 1fr; }

/* ---------- Styled table ---------- */
.alt-table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-sm); background: var(--surface); }
.alt-table { width: 100%; border-collapse: collapse; font-size: 14.5px; }
.alt-table th, .alt-table td { padding: 13px 18px; text-align: left; border-bottom: 1px solid var(--border); }
.alt-table thead th { background: var(--primary-light); color: var(--primary-dark); font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: .04em; }
.alt-table tbody tr:last-child td { border-bottom: none; }
.alt-table tbody tr:hover { background: #fafbff; }
.alt-table td.price { font-weight: 700; color: var(--text); }
.alt-table .rowhead { font-weight: 700; color: var(--primary-dark); background: #fafbff; }

/* ---------- Form ---------- */
.alt-form { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-sm); }
.alt-form .field { margin-bottom: 20px; }
.alt-form label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 7px; color: var(--text); }
.alt-form label .opt { color: var(--muted); font-weight: 400; }
.alt-form input, .alt-form textarea {
    width: 100%; padding: 12px 14px; font-size: 15px; font-family: inherit;
    border: 1px solid var(--border); border-radius: 10px; background: var(--bg);
    color: var(--text); transition: border-color .15s, box-shadow .15s;
}
.alt-form input:focus, .alt-form textarea:focus {
    outline: none; border-color: var(--primary); background: #fff;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, .12);
}
.alt-form textarea { resize: vertical; min-height: 140px; }
.alt-form .hint { font-size: 13px; color: var(--muted); margin-top: 6px; }

/* ---------- Feature row (icon + text) ---------- */
.alt-feature { display: flex; gap: 16px; align-items: flex-start; }
.alt-feature__icon {
    flex: 0 0 auto; width: 46px; height: 46px; border-radius: 12px;
    background: var(--primary-light); display: grid; place-items: center; font-size: 22px;
}
.alt-feature b { font-size: 15px; display: block; margin-bottom: 2px; }
.alt-feature span { font-size: 14px; color: var(--muted); }

/* ---------- Info list (definition style) ---------- */
.alt-infolist { display: grid; gap: 12px; }
.alt-infolist .row { display: flex; gap: 12px; align-items: baseline; font-size: 14.5px; }
.alt-infolist .row .k { font-weight: 700; color: var(--primary-dark); min-width: 130px; }
.alt-infolist .row .v { color: var(--muted); }

/* mobile menu panel */
.alt-mobile-menu {
    display: none;
    position: fixed;
    inset: var(--nav-h) 0 0 0;
    background: var(--surface);
    z-index: 999;
    padding: 20px 24px;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
}
.alt-mobile-menu.open { display: block; }
.alt-mobile-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 12px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
}
.alt-mobile-menu a:hover { background: var(--primary-light); color: var(--primary); }
.alt-mobile-menu .mm-label {
    padding: 14px 12px 6px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--muted);
}
.alt-mobile-menu hr { border: none; border-top: 1px solid var(--border); margin: 8px 0; }
