/* ============================================================
   Theme 010 — Parrots / Birds Encyclopedia
   Playful, colorful, pet-bird style
   Prefix: t10-
   ============================================================ */

/* ===== 1. ROOT VARIABLES ===== */
:root {
    --t10-primary: #2979FF;
    --t10-primary-dark: #1565C0;
    --t10-primary-light: #BBDEFB;
    --t10-primary-glow: rgba(41,121,255,0.12);
    --t10-secondary: #FFD54F;
    --t10-secondary-dark: #FFC107;
    --t10-secondary-glow: rgba(255,213,79,0.18);
    --t10-accent: #66BB6A;
    --t10-accent-dark: #43A047;
    --t10-accent-glow: rgba(102,187,106,0.14);
    --t10-dark: #1E293B;
    --t10-text: #37474F;
    --t10-muted: #78909C;
    --t10-light: #CFD8DC;
    --t10-bg: #ffffff;
    --t10-bg-alt: #F8FBFF;
    --t10-bg-hero: linear-gradient(160deg, #F0F7FF 0%, #ffffff 40%, #FFFDE7 75%, #F1F8E9 100%);
    --t10-border: #E3EAF2;
    --t10-r: 12px;
    --t10-r-sm: 8px;
    --t10-r-pill: 50px;
    --t10-shadow-sm: 0 2px 8px rgba(41,121,255,0.06);
    --t10-shadow: 0 8px 28px rgba(41,121,255,0.08);
    --t10-shadow-lg: 0 16px 48px rgba(41,121,255,0.12);
    --t10-font: 'Inter', system-ui, -apple-system, sans-serif;
    --t10-w: 1140px;
}

/* ===== 2. BODY / RESET ===== */
*, *::before, *::after { box-sizing: border-box; }

body, .t10-body {
    background: var(--t10-bg);
    color: var(--t10-text);
    font-family: var(--t10-font);
    margin: 0;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}
a { color: var(--t10-primary); text-decoration: none; }
a:hover { color: var(--t10-primary-dark); }

/* ===== 3. HEADER + BURGER ===== */
.t10-header {
    background: var(--t10-bg);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 3px solid var(--t10-primary);
    box-shadow: 0 2px 12px rgba(41,121,255,0.07);
}
.t10-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--t10-w);
    margin: 0 auto;
    padding: 0 28px;
    height: 68px;
}
.t10-logo {
    font-size: 22px;
    font-weight: 800;
    color: var(--t10-primary);
    text-decoration: none;
    letter-spacing: -0.3px;
}
.t10-logo::before {
    content: '\1F99C ';
    font-size: 24px;
}
.t10-nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 4px;
    align-items: center;
    height: 68px;
}
.t10-nav-link {
    display: flex;
    align-items: center;
    padding: 8px 18px;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--t10-text);
    text-decoration: none;
    border-radius: var(--t10-r-sm);
    transition: all 0.2s;
    height: auto;
}
.t10-nav-link:hover {
    background: var(--t10-primary-glow);
    color: var(--t10-primary);
}
/* Last nav item — yellow pill button */
.t10-nav-list li:last-child .t10-nav-link {
    background: var(--t10-secondary);
    color: var(--t10-dark);
    font-weight: 700;
    padding: 8px 24px;
    border-radius: var(--t10-r-pill);
    box-shadow: 0 3px 10px rgba(255,213,79,0.35);
}
.t10-nav-list li:last-child .t10-nav-link:hover {
    background: var(--t10-secondary-dark);
    transform: translateY(-1px);
    box-shadow: 0 5px 16px rgba(255,193,7,0.4);
}

/* Burger */
.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    flex-direction: column;
    gap: 5px;
    z-index: 101;
}
.burger-btn span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--t10-primary);
    border-radius: 3px;
    transition: transform 0.3s, opacity 0.3s;
}
.burger-btn.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger-btn.active span:nth-child(2) { opacity: 0; }
.burger-btn.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ===== 4. HERO ===== */
.t10-hero {
    background: var(--t10-bg-hero);
    padding: 90px 0 80px;
    position: relative;
    overflow: hidden;
    text-align: center;
}
/* Decorative circles — blue */
.t10-hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -60px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(41,121,255,0.10) 0%, transparent 65%);
    border-radius: 50%;
}
/* Decorative circles — yellow */
.t10-hero::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -40px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,213,79,0.15) 0%, transparent 65%);
    border-radius: 50%;
}
.t10-h1 {
    font-size: 46px;
    font-weight: 800;
    color: var(--t10-primary);
    margin-bottom: 18px;
    letter-spacing: -1px;
    line-height: 1.15;
    position: relative;
    z-index: 1;
}
.t10-hero-sub {
    font-size: 1.15rem;
    color: var(--t10-muted);
    max-width: 580px;
    margin: 0 auto 34px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}
.t10-hero-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    position: relative;
    z-index: 1;
}
.t10-hero-btn {
    padding: 14px 36px;
    font-size: 0.95rem;
    border-radius: var(--t10-r-sm);
    box-shadow: 0 4px 16px rgba(41,121,255,0.3);
}
/* Extra green decorative dot */
.t10-hero-decor {
    position: absolute;
    top: 40%;
    left: 8%;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(102,187,106,0.12) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

/* ===== 5. BUTTONS ===== */
.t10-btn-primary {
    background: var(--t10-primary);
    color: #fff;
    padding: 13px 34px;
    border-radius: 10px;
    display: inline-block;
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: all 0.25s;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(41,121,255,0.25);
}
.t10-btn-primary:hover {
    background: var(--t10-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(41,121,255,0.35);
    color: #fff;
}
.t10-btn-outline {
    background: transparent;
    color: var(--t10-primary);
    border: 2px solid var(--t10-primary);
    padding: 11px 30px;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s;
    display: inline-block;
    text-decoration: none;
}
.t10-btn-outline:hover {
    background: var(--t10-primary);
    color: #fff;
}
.t10-btn-accent {
    background: var(--t10-secondary);
    color: var(--t10-dark);
    padding: 13px 34px;
    border-radius: 10px;
    display: inline-block;
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: all 0.25s;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(255,213,79,0.35);
}
.t10-btn-accent:hover {
    background: var(--t10-secondary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255,193,7,0.4);
}
.t10-btn-full { display: block; text-align: center; }

/* ===== 6. BREADCRUMBS ===== */
.t10-breadcrumbs {
    padding: 14px 0;
    background: var(--t10-bg-alt);
    border-bottom: 1px solid var(--t10-border);
}
.t10-bc-list {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.85rem;
}
.t10-bc-item { display: flex; align-items: center; color: var(--t10-muted); }
.t10-bc-item a { color: var(--t10-primary); font-weight: 500; }
.t10-bc-item a:hover { text-decoration: underline; }
.t10-bc-item + .t10-bc-item::before {
    content: "\203A";
    margin: 0 10px;
    color: var(--t10-light);
    font-size: 1.1rem;
}
.t10-bc-item:last-child span { color: var(--t10-dark); font-weight: 600; }

/* ===== 7. LAYOUT UTILS ===== */
.t10-section { padding: 68px 0; }
.t10-section:nth-child(even) { background: var(--t10-bg-alt); }
.t10-container { max-width: var(--t10-w); margin: 0 auto; padding: 0 28px; }
.t10-text-center { text-align: center; }
.t10-text-sm { font-size: 0.85rem; }
.t10-text-muted { color: var(--t10-muted); }
.t10-subtitle { font-size: 1.1rem; color: var(--t10-muted); }
.t10-mb-0 { margin-bottom: 0 !important; }
.t10-mb-15 { margin-bottom: 15px; }
.t10-mb-30 { margin-bottom: 30px; }
.t10-mt-20 { margin-top: 20px; }
.t10-pt-0 { padding-top: 0 !important; }
.t10-pt-10 { padding-top: 10px !important; }
.t10-pt-20 { padding-top: 20px !important; }
.t10-pt-30 { padding-top: 30px !important; }
.t10-max-800 { max-width: 800px; }
.t10-m-auto { margin: 0 auto; }
.t10-hidden { display: none !important; }
.t10-flex-sb { display: flex; justify-content: space-between; align-items: baseline; }
.t10-flex-center { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }
.t10-bg-alt { background: var(--t10-bg-alt); }
.t10-bg-white { background: var(--t10-bg); }
.t10-bg-page { background: var(--t10-bg); }
.t10-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.t10-grid-auto { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; }

/* ===== 8. SECTION TITLES — bold blue with yellow star ===== */
.t10-section-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--t10-primary);
    margin-bottom: 28px;
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
}
.t10-section-title::after {
    content: '\2605';
    color: var(--t10-secondary);
    font-size: 0.6em;
    margin-left: 8px;
    vertical-align: super;
}
.t10-section-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--t10-secondary);
    color: var(--t10-dark);
    font-size: 0.74rem;
    font-weight: 700;
    padding: 3px 13px;
    border-radius: var(--t10-r-pill);
    margin-left: 10px;
    vertical-align: middle;
}

/* ===== 9. FEATURES — colorful icon circles (blue/yellow/green) ===== */
.t10-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 26px;
    counter-reset: t10feat;
}
.t10-feature-card {
    background: var(--t10-bg);
    border-radius: var(--t10-r);
    padding: 34px 26px 26px;
    position: relative;
    box-shadow: var(--t10-shadow-sm);
    border: none;
    transition: all 0.3s;
    counter-increment: t10feat;
    text-align: center;
}
.t10-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--t10-shadow-lg);
}
/* Alternating color top dot */
.t10-feature-card::before {
    content: "0" counter(t10feat);
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 800;
    font-size: 0.78rem;
    padding: 4px 14px;
    border-radius: var(--t10-r-pill);
    color: #fff;
}
.t10-feature-card:nth-child(3n+1)::before {
    background: var(--t10-primary);
    box-shadow: 0 4px 12px rgba(41,121,255,0.3);
}
.t10-feature-card:nth-child(3n+2)::before {
    background: var(--t10-secondary-dark);
    color: var(--t10-dark);
    box-shadow: 0 4px 12px rgba(255,193,7,0.3);
}
.t10-feature-card:nth-child(3n+3)::before {
    background: var(--t10-accent);
    box-shadow: 0 4px 12px rgba(102,187,106,0.3);
}
.t10-feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 22px;
}
.t10-feature-card:nth-child(3n+1) .t10-feature-icon {
    background: var(--t10-primary-glow);
    color: var(--t10-primary);
}
.t10-feature-card:nth-child(3n+2) .t10-feature-icon {
    background: var(--t10-secondary-glow);
    color: var(--t10-secondary-dark);
}
.t10-feature-card:nth-child(3n+3) .t10-feature-icon {
    background: var(--t10-accent-glow);
    color: var(--t10-accent-dark);
}
.t10-feature-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--t10-dark);
    margin: 0 0 8px;
}
.t10-feature-desc {
    font-size: 0.88rem;
    color: var(--t10-muted);
    margin: 0;
    line-height: 1.65;
}

/* ===== 10. TOP HUB CARDS — playful vertical with colored top bar ===== */
.t10-top-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}
.t10-top-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    background: var(--t10-bg);
    border-radius: var(--t10-r);
    padding: 28px 20px 22px;
    text-decoration: none;
    color: var(--t10-text);
    box-shadow: var(--t10-shadow-sm);
    border-top: 4px solid transparent;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}
.t10-top-card:nth-child(3n+1) { border-top-color: var(--t10-primary); }
.t10-top-card:nth-child(3n+2) { border-top-color: var(--t10-secondary-dark); }
.t10-top-card:nth-child(3n+3) { border-top-color: var(--t10-accent); }
.t10-top-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--t10-shadow);
}
.t10-top-img-wrap {
    width: 64px;
    height: 64px;
    min-width: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    padding: 6px;
    background: var(--t10-bg-alt);
    border: 2px solid var(--t10-border);
}
.t10-top-card:nth-child(3n+1) .t10-top-img-wrap { border-color: var(--t10-primary-light); }
.t10-top-card:nth-child(3n+2) .t10-top-img-wrap { border-color: var(--t10-secondary); }
.t10-top-card:nth-child(3n+3) .t10-top-img-wrap { border-color: rgba(102,187,106,0.4); }
.t10-top-img { max-width: 100%; max-height: 100%; object-fit: contain; border-radius: 50%; }
.t10-top-name { font-size: 0.95rem; font-weight: 700; color: var(--t10-dark); line-height: 1.3; }
.t10-top-meta { font-size: 0.82rem; color: var(--t10-primary); font-weight: 600; margin-top: 2px; }
.t10-top-specs { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 6px; justify-content: center; }
.t10-top-spec { font-size: 0.75rem; color: var(--t10-muted); background: var(--t10-bg-alt); padding: 2px 8px; border-radius: 4px; }
.t10-top-spec strong { color: var(--t10-dark); }

/* ===== 11. CARDS — soft shadows, blue tint hover ===== */
.t10-card {
    background: var(--t10-bg);
    border: none;
    border-radius: var(--t10-r);
    padding: 26px;
    box-shadow: var(--t10-shadow-sm);
    transition: all 0.3s;
    margin-bottom: 20px;
}
.t10-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--t10-shadow-lg);
    background: linear-gradient(180deg, rgba(41,121,255,0.02) 0%, var(--t10-bg) 100%);
}
.t10-card-title { font-size: 1.1rem; font-weight: 700; color: var(--t10-dark); margin-bottom: 8px; }
.t10-card-price { color: var(--t10-primary); font-weight: 800; font-size: 1.2rem; }
.t10-spec-list { display: flex; flex-direction: column; }
.t10-card-flex { display: flex; flex-direction: column; justify-content: space-between; height: 100%; }
.t10-card-desc {
    font-size: 0.9rem;
    color: var(--t10-muted);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 20px;
}
.t10-card-img-wrap {
    height: 110px;
    background: var(--t10-bg-alt);
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: var(--t10-r-sm);
}
.t10-card-link { text-decoration: none; color: inherit; display: block; }
.t10-card-link:hover { text-decoration: none; }
.t10-badge-wrap { margin-bottom: 6px; }
.t10-badge-sm {
    background: var(--t10-bg-alt);
    padding: 4px 12px;
    border-radius: var(--t10-r-pill);
    font-size: 0.8rem;
    font-weight: 500;
}
.t10-badge-accent {
    background: var(--t10-secondary-glow);
    color: var(--t10-secondary-dark);
    font-weight: 600;
}
.t10-show-more { text-align: center; margin-top: 28px; }
.t10-all-link {
    color: var(--t10-primary);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.t10-all-link:hover { color: var(--t10-primary-dark); }

/* ===== 12. HUB LIST ===== */
.t10-hub-title {
    margin-bottom: 32px;
    font-size: 2rem;
    font-weight: 800;
    color: var(--t10-primary);
    letter-spacing: -0.5px;
}
.t10-hub-list { display: flex; flex-wrap: wrap; gap: 12px; }
.t10-hub-item {
    padding: 10px 24px;
    background: var(--t10-bg);
    border: 2px solid var(--t10-border);
    border-radius: var(--t10-r-pill);
    text-decoration: none;
    color: var(--t10-text);
    font-size: 0.92rem;
    font-weight: 500;
    transition: all 0.25s;
    box-shadow: var(--t10-shadow-sm);
}
.t10-hub-item:hover {
    background: var(--t10-primary);
    color: #fff;
    border-color: var(--t10-primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(41,121,255,0.25);
}
.t10-hub-badge {
    padding: 18px 24px;
    background: var(--t10-bg);
    border: none;
    border-radius: var(--t10-r);
    text-decoration: none;
    color: var(--t10-text);
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: var(--t10-shadow-sm);
}
.t10-hub-badge:hover {
    box-shadow: var(--t10-shadow);
    transform: translateY(-3px);
}

/* ===== 13. DETAIL PAGE ===== */
.t10-grid-ms { display: grid; grid-template-columns: 1fr 320px; gap: 40px; }
.t10-sticky { position: sticky; top: 88px; }
.t10-item-row { display: flex; justify-content: space-between; padding: 12px 0; }
.t10-border-b { border-bottom: 1px solid var(--t10-border); }
.t10-card-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 20px; }

/* ===== 14. SECTION CARD + INFO GRID ===== */
.t10-section-card {
    background: var(--t10-bg);
    border: none;
    border-radius: var(--t10-r);
    padding: 34px;
    margin-bottom: 26px;
    box-shadow: var(--t10-shadow);
}
.t10-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 14px;
}
.t10-info-item {
    padding: 18px;
    background: var(--t10-bg-alt);
    border-radius: var(--t10-r-sm);
    border-left: 3px solid var(--t10-primary);
    transition: border-color 0.25s;
}
.t10-info-item:nth-child(3n+2) { border-left-color: var(--t10-secondary-dark); }
.t10-info-item:nth-child(3n+3) { border-left-color: var(--t10-accent); }
.t10-info-label {
    display: block;
    font-size: 0.78rem;
    color: var(--t10-muted);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.t10-info-value {
    display: block;
    font-weight: 700;
    color: var(--t10-dark);
    font-size: 1.05rem;
}

/* ===== 15. CONTACTS ===== */
.t10-contact-row { display: flex; align-items: center; gap: 15px; margin-bottom: 12px; }
.t10-social-links { display: flex; gap: 10px; }
.t10-social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--t10-primary-glow);
    color: var(--t10-primary);
    text-decoration: none;
    transition: all 0.25s;
    font-weight: 700;
}
.t10-social-btn:hover {
    background: var(--t10-primary);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(41,121,255,0.3);
}

/* ===== 16. PROMO ===== */
.t10-promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 18px;
    margin-top: 20px;
}
.t10-promo-modern {
    background: var(--t10-bg);
    border: none;
    border-radius: var(--t10-r);
    padding: 22px 26px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--t10-shadow-sm);
    transition: all 0.3s;
}
.t10-promo-modern:hover { transform: translateY(-4px); box-shadow: var(--t10-shadow); }
.t10-promo-info h3 { margin: 0 0 4px; font-size: 1rem; color: var(--t10-dark); }
.t10-promo-sub { margin: 0; font-size: 0.82rem; color: var(--t10-muted); }
.t10-promo-wrap { position: relative; }
.t10-promo-box {
    background: var(--t10-secondary-glow);
    border: 2px dashed var(--t10-secondary-dark);
    padding: 12px 22px;
    border-radius: var(--t10-r-sm);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s;
    min-width: 130px;
    justify-content: center;
}
.t10-promo-box:hover { background: rgba(255,213,79,0.3); }
.t10-promo-text {
    font-family: 'SFMono-Regular', Consolas, monospace;
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--t10-secondary-dark);
    letter-spacing: 1px;
}
.t10-copy-icon { color: var(--t10-secondary-dark); }
.copy-tooltip-x {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--t10-dark);
    color: #fff;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s;
    z-index: 10;
    white-space: nowrap;
}
.copy-tooltip-x::after {
    content: '';
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid var(--t10-dark);
}
.copy-tooltip-x.visible { opacity: 1; bottom: -45px; }

/* ===== 17. CITY TAGS ===== */
.t10-city-list { display: flex; flex-wrap: wrap; gap: 10px; }
.t10-city-tag {
    padding: 8px 20px;
    background: var(--t10-bg);
    border: 2px solid var(--t10-border);
    color: var(--t10-text);
    text-decoration: none;
    border-radius: var(--t10-r-pill);
    font-size: 0.88rem;
    font-weight: 500;
    transition: all 0.25s;
    box-shadow: var(--t10-shadow-sm);
}
.t10-city-tag:hover {
    background: var(--t10-primary);
    color: #fff;
    border-color: var(--t10-primary);
    box-shadow: 0 4px 14px rgba(41,121,255,0.25);
}
.t10-city-tag-more {
    border-style: dashed;
    background: transparent;
    color: var(--t10-accent-dark);
    border-color: var(--t10-accent);
}

/* ===== 18. ACCORDION ===== */
.t10-accordion {
    background: var(--t10-bg);
    border-radius: var(--t10-r);
    margin-bottom: 10px;
    overflow: hidden;
    box-shadow: var(--t10-shadow-sm);
    border-left: 4px solid var(--t10-primary);
}
.t10-accordion:nth-child(3n+2) { border-left-color: var(--t10-secondary-dark); }
.t10-accordion:nth-child(3n+3) { border-left-color: var(--t10-accent); }
.t10-accordion summary {
    padding: 20px 28px;
    font-weight: 600;
    font-size: 1rem;
    color: var(--t10-dark);
    cursor: pointer;
    list-style: none;
    position: relative;
    user-select: none;
    transition: background 0.2s;
}
.t10-accordion summary:hover { background: var(--t10-bg-alt); }
.t10-accordion summary::-webkit-details-marker { display: none; }
.t10-accordion summary::after {
    content: '+';
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    background: var(--t10-primary-glow);
    color: var(--t10-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    transition: all 0.3s;
}
.t10-accordion[open] summary::after {
    content: '\2212';
    background: var(--t10-primary);
    color: #fff;
    transform: translateY(-50%);
}
.t10-accordion .t10-accordion-content {
    padding: 0 28px 26px;
    border-top: 1px solid var(--t10-border);
    margin-top: 6px;
    padding-top: 18px;
    color: var(--t10-muted);
    line-height: 1.75;
}

/* ===== 19. PROSE ===== */
.t10-prose h2 { margin-top: 2rem; margin-bottom: 1rem; color: var(--t10-primary); font-weight: 800; }
.t10-prose h3 { margin-top: 1.5rem; margin-bottom: 0.8rem; color: var(--t10-dark); }
.t10-prose ul { padding-left: 0; margin: 15px 0; list-style: none; }
.t10-prose li { margin-bottom: 10px; padding-left: 22px; position: relative; }
.t10-prose li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.t10-prose li:nth-child(3n+1)::before { background: var(--t10-primary); }
.t10-prose li:nth-child(3n+2)::before { background: var(--t10-secondary); }
.t10-prose li:nth-child(3n+3)::before { background: var(--t10-accent); }
.t10-prose strong { color: var(--t10-dark); }
.t10-prose a { color: var(--t10-primary); font-weight: 500; border-bottom: 1px dashed var(--t10-primary-light); }
.t10-prose a:hover { border-bottom-style: solid; }

/* ===== 20. ERROR PAGE ===== */
.t10-error-page {
    padding: 100px 20px;
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}
.t10-error-code {
    font-size: 9rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, var(--t10-primary) 0%, var(--t10-secondary) 50%, var(--t10-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}
.t10-error-title { font-size: 1.6rem; font-weight: 700; color: var(--t10-dark); margin-bottom: 12px; }
.t10-error-desc { font-size: 1rem; color: var(--t10-muted); margin-bottom: 30px; line-height: 1.7; }
.t10-error-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* ===== 21. GEO PAGE ===== */
.t10-geo-container { max-width: var(--t10-w); }
.t10-hub-list-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 18px; }
.t10-hub-summary {
    background: var(--t10-bg);
    border: none;
    border-radius: var(--t10-r);
    padding: 24px;
    box-shadow: var(--t10-shadow-sm);
    transition: all 0.3s;
    border-top: 3px solid var(--t10-primary);
}
.t10-hub-summary:nth-child(3n+2) { border-top-color: var(--t10-secondary-dark); }
.t10-hub-summary:nth-child(3n+3) { border-top-color: var(--t10-accent); }
.t10-hub-summary:hover { box-shadow: var(--t10-shadow); transform: translateY(-3px); }
.t10-hub-summary-head { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.t10-hub-summary-logo { width: 48px; height: 48px; object-fit: contain; border-radius: 50%; }
.t10-hub-summary-title { font-weight: 700; font-size: 1.1rem; color: var(--t10-dark); text-decoration: none; }
.t10-hub-summary-title:hover { color: var(--t10-primary); }
.t10-hub-summary-specs { display: flex; flex-wrap: wrap; gap: 6px; }
.t10-hub-summary-spec {
    font-size: 0.82rem;
    color: var(--t10-muted);
    background: var(--t10-bg-alt);
    padding: 4px 10px;
    border-radius: var(--t10-r-pill);
}
.t10-geo-info-grid { margin-top: 15px; }
.t10-geo-promo-wrap { margin-top: 15px; }
.t10-geo-items-wrap { margin-top: 20px; }
.t10-geo-show-more { text-align: center; margin-top: 15px; }
.t10-geo-apps-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px; justify-content: center; }
.t10-app-btn { display: inline-block; line-height: 0; }
.t10-app-btn-img { height: 44px; width: auto; display: block; }
.t10-geo-hub-footer { margin-top: 20px; text-align: right; }
.t10-geo-zone-desc {
    margin-top: 20px;
    padding: 18px 22px;
    background: var(--t10-primary-glow);
    border-left: 4px solid var(--t10-primary);
    border-radius: var(--t10-r-sm);
    font-size: 0.95rem;
    color: var(--t10-muted);
}
.geo-map {
    width: 100%;
    height: 420px;
    background: var(--t10-bg-alt);
    border-radius: var(--t10-r);
    margin-top: 14px;
}

/* ===== 22. HUB PAGE ===== */
.t10-hub-logo-wrap {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 32px;
    padding-bottom: 28px;
    border-bottom: 3px solid var(--t10-border);
}
.t10-hub-logo-img { height: 72px; object-fit: contain; border-radius: 50%; }
.t10-hub-title-text { margin: 0; font-size: 34px; font-weight: 800; color: var(--t10-primary); letter-spacing: -0.5px; }
.t10-hub-sidebar {}
.t10-hub-specs-title { margin-top: 20px; }
.t10-mini-link { text-decoration: none; color: inherit; display: block; text-align: center; }
.t10-mini-name { font-weight: 600; font-size: 0.9rem; }
.t10-app-col { display: flex; flex-direction: column; gap: 10px; }

/* Brand logos row — horizontal scroll */
.t10-brands-row {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding: 16px 0;
    scrollbar-width: thin;
    scrollbar-color: var(--t10-primary-light) transparent;
    -webkit-overflow-scrolling: touch;
}
.t10-brands-row::-webkit-scrollbar { height: 4px; }
.t10-brands-row::-webkit-scrollbar-thumb { background: var(--t10-primary-light); border-radius: 4px; }
.t10-brand-logo {
    flex-shrink: 0;
    height: 44px;
    object-fit: contain;
    opacity: 0.6;
    transition: opacity 0.25s;
    filter: grayscale(40%);
}
.t10-brand-logo:hover { opacity: 1; filter: grayscale(0%); }

/* ===== 23. ITEM PAGE ===== */
.t10-item-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.t10-item-img-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--t10-bg-alt);
    border-radius: var(--t10-r);
    padding: 28px;
    border: 2px solid var(--t10-border);
}
.t10-item-h1 { margin-bottom: 24px; }
.t10-item-img { max-width: 100%; height: auto; object-fit: contain; }
.t10-item-specs-title { margin-top: 0; }
.t10-hub-info-row { display: flex; align-items: center; gap: 15px; flex-wrap: wrap; }
.t10-hub-info-logo { width: 48px; height: 48px; object-fit: contain; border-radius: 50%; }
.t10-hub-info-label { font-size: 0.85rem; color: var(--t10-muted); }
.t10-hub-info-name { font-weight: 700; font-size: 1.2rem; text-decoration: none; color: inherit; }
.t10-hub-info-name:hover { color: var(--t10-primary); }
.t10-app-buttons { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 15px; }

/* ===== 24. ITEMS MINI GRID ===== */
.t10-items-mini-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 14px;
}
.t10-items-mini-card {
    background: var(--t10-bg);
    border: none;
    border-radius: var(--t10-r-sm);
    padding: 14px;
    box-shadow: var(--t10-shadow-sm);
    transition: all 0.25s;
    text-align: center;
}
.t10-items-mini-card:hover {
    box-shadow: var(--t10-shadow);
    transform: translateY(-2px);
}
.t10-items-mini-img {
    width: 100%;
    height: 80px;
    object-fit: contain;
    margin-bottom: 8px;
}

/* ===== 25. FOOTER — dark blue-gray with colorful accents ===== */
.t10-footer {
    background: var(--t10-dark);
    color: #94a3b8;
    padding: 72px 0 36px;
    margin-top: 80px;
    font-size: 0.9rem;
}
.t10-footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; }
.t10-footer-brand h2 { color: #fff; margin-bottom: 20px; font-size: 1.3rem; font-weight: 800; }
.t10-footer-col h3 { color: #fff; font-size: 1rem; margin-bottom: 18px; font-weight: 700; }
.t10-footer-nav { list-style: none; padding: 0; margin: 0; }
.t10-footer-nav li { margin-bottom: 12px; }
.t10-footer-nav a { color: #94a3b8; transition: color 0.2s; }
.t10-footer-nav a:hover { color: var(--t10-secondary); }
.t10-footer p { line-height: 1.6; color: #7f8c8d; }
.t10-footer-accent { color: var(--t10-primary-light); }
.t10-footer-bottom {
    margin-top: 56px;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    color: #64748b;
    font-size: 0.85rem;
}
.t10-footer-btm-links { display: flex; gap: 20px; }
.t10-footer-btm-links a { color: #64748b; }
.t10-footer-btm-links a:hover { color: var(--t10-secondary); }

/* ===== 26. PRICING ===== */
.t10-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    align-items: start;
}
.t10-pricing-card {
    background: var(--t10-bg);
    border-radius: var(--t10-r);
    padding: 36px 32px;
    box-shadow: var(--t10-shadow-sm);
    transition: all 0.3s;
    position: relative;
    text-align: center;
}
.t10-pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--t10-shadow-lg);
}
.t10-pricing-popular {
    border: 2px solid var(--t10-primary);
    box-shadow: var(--t10-shadow), 0 0 0 4px var(--t10-primary-glow);
    transform: scale(1.04);
}
.t10-pricing-popular:hover { transform: scale(1.04) translateY(-4px); }
.t10-pricing-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--t10-secondary);
    color: var(--t10-dark);
    font-size: 0.78rem;
    font-weight: 700;
    padding: 4px 20px;
    border-radius: var(--t10-r-pill);
    box-shadow: 0 4px 12px rgba(255,213,79,0.35);
    white-space: nowrap;
}
.t10-pricing-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin: 0 auto 16px;
    display: block;
    border-radius: 50%;
}
.t10-pricing-name { font-size: 1.2rem; font-weight: 700; color: var(--t10-dark); margin: 0 0 8px; }
.t10-pricing-desc { font-size: 0.88rem; color: var(--t10-muted); margin: 0 0 20px; }
.t10-pricing-price { margin-bottom: 24px; }
.t10-pricing-amount { font-size: 2.4rem; font-weight: 800; color: var(--t10-primary); letter-spacing: -1px; }
.t10-pricing-period { font-size: 0.9rem; color: var(--t10-muted); }
.t10-pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    text-align: left;
}
.t10-pricing-features li {
    padding: 8px 0;
    border-bottom: 1px solid var(--t10-border);
    font-size: 0.9rem;
    color: var(--t10-text);
    padding-left: 24px;
    position: relative;
}
.t10-pricing-features li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    font-weight: 700;
}
.t10-pricing-features li:nth-child(3n+1)::before { color: var(--t10-primary); }
.t10-pricing-features li:nth-child(3n+2)::before { color: var(--t10-secondary-dark); }
.t10-pricing-features li:nth-child(3n+3)::before { color: var(--t10-accent); }

/* ===== 27. TESTIMONIALS ===== */
.t10-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}
.t10-testimonial-card {
    background: var(--t10-bg);
    border-radius: var(--t10-r);
    padding: 32px;
    box-shadow: var(--t10-shadow-sm);
    transition: all 0.3s;
    position: relative;
    border-bottom: 3px solid transparent;
}
.t10-testimonial-card:nth-child(3n+1) { border-bottom-color: var(--t10-primary); }
.t10-testimonial-card:nth-child(3n+2) { border-bottom-color: var(--t10-secondary); }
.t10-testimonial-card:nth-child(3n+3) { border-bottom-color: var(--t10-accent); }
.t10-testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 14px;
    left: 24px;
    font-size: 4rem;
    line-height: 1;
    color: var(--t10-primary-glow);
    font-family: Georgia, serif;
}
.t10-testimonial-card:hover { box-shadow: var(--t10-shadow); }
.t10-testimonial-text {
    font-size: 0.95rem;
    color: var(--t10-text);
    line-height: 1.7;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}
.t10-testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}
.t10-testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--t10-primary-light);
}
.t10-testimonial-name { font-weight: 700; font-size: 0.95rem; color: var(--t10-dark); }
.t10-testimonial-role { font-size: 0.82rem; color: var(--t10-muted); }

/* ===== 28. RESPONSIVE ===== */

/* -- 991px -- */
@media (max-width: 991px) {
    .t10-footer-grid { grid-template-columns: 1fr 1fr; }
    .t10-item-hero { grid-template-columns: 1fr; }
    .t10-grid-ms { grid-template-columns: 1fr; }
}

/* -- 768px + burger -- */
@media (max-width: 768px) {
    .t10-hero { padding: 60px 0 50px; }
    .t10-h1 { font-size: 30px; letter-spacing: -0.5px; }
    .t10-hero-sub { font-size: 1rem; }
    .t10-section { padding: 48px 0; }
    .t10-section-card { padding: 22px; margin-bottom: 18px; }
    .t10-grid-auto { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 16px; }
    .t10-grid-2 { grid-template-columns: 1fr; }
    .t10-info-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .t10-promo-grid { grid-template-columns: 1fr; }
    .t10-promo-modern { flex-direction: column; gap: 15px; text-align: center; }
    .t10-hub-title-text { font-size: 24px; }
    .t10-footer-bottom { flex-direction: column; text-align: center; }
    .t10-top-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .t10-top-specs { display: none; }
    .t10-features-grid { grid-template-columns: 1fr 1fr; }
    .t10-testimonials-grid { grid-template-columns: 1fr; }

    /* Burger menu */
    .burger-btn { display: flex; }
    .t10-nav-list {
        display: none;
        position: fixed;
        top: 68px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        padding: 12px 24px;
        gap: 0;
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        z-index: 100;
        height: auto;
    }
    .t10-nav-list.menu-open,
    .t10-nav-list[data-nav].menu-open { display: flex; }
    .t10-nav-list li { border-bottom: 1px solid var(--t10-border); }
    .t10-nav-list li:last-child .t10-nav-link {
        background: none;
        color: var(--t10-secondary-dark);
        border-radius: 0;
        padding: 14px 0;
        box-shadow: none;
    }
    .t10-nav-link { height: auto; padding: 14px 0; font-size: 1rem; border-radius: 0; }
}

/* -- 480px -- */
@media (max-width: 480px) {
    .t10-info-grid { grid-template-columns: 1fr; }
    .t10-header-inner { padding: 0 16px; }
    .t10-container { padding: 0 16px; }
    .t10-features-grid { grid-template-columns: 1fr; }
    .t10-hero-actions { flex-direction: column; align-items: center; }
    .t10-footer-grid { grid-template-columns: 1fr; }
    .t10-top-grid { grid-template-columns: 1fr; }
    .t10-pricing-grid { grid-template-columns: 1fr; }
    .t10-hub-list-grid { grid-template-columns: 1fr; }
}



/* ============================================================
   AUTO-PATCHED: новые блоки для theme_010
   ============================================================ */

/* Hero service */
.t10-hero-wrapper { max-width: 760px; margin: 0 auto; text-align: center; }
.t10-lead { font-size: 1.15rem; color: #555; margin: 0 0 20px; line-height: 1.6; text-align: center; }
.t10-hero-sub { font-size: 1rem; color: #666; margin: 0 0 24px; text-align: center; }
.t10-hero-btn-wrap { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; justify-content: center; }
.t10-btn-secondary { display: inline-flex; align-items: center; padding: 12px 24px; border-radius: 8px; font-size: 1rem; font-weight: 600; cursor: pointer; border: 2px solid #2979FF; background: transparent; color: #2979FF; text-decoration: none; transition: all 0.2s; }
.t10-btn-secondary:hover { background: rgba(41,121,255,0.12); }
.t10-btn-lg { padding: 14px 32px; font-size: 1.05rem; }

/* Trust bar */
.t10-trust-bar { display: flex; gap: 24px; flex-wrap: wrap; margin: 24px 0; padding: 20px 24px; background: rgba(41,121,255,0.12); border-radius: 12px; }
.t10-trust-item { display: flex; align-items: center; gap: 12px; }
.t10-trust-icon { font-size: 1.5rem; }
.t10-trust-text { display: flex; flex-direction: column; }
.t10-trust-text strong { font-size: 1.1rem; font-weight: 700; color: #0d1a3a; }
.t10-trust-text span { font-size: 0.8rem; color: #777; }

/* Steps */
.t10-steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; margin-top: 32px; }
.t10-step-card { background: #fff; border-radius: 12px; padding: 28px 24px; box-shadow: 0 4px 16px rgba(0,0,0,0.06); border-top: 3px solid #2979FF; }
.t10-step-num { font-size: 2rem; font-weight: 800; color: #2979FF; opacity: 0.3; margin-bottom: 12px; }
.t10-step-title { font-size: 1rem; font-weight: 700; color: #0d1a3a; margin-bottom: 8px; }
.t10-step-text { font-size: 0.9rem; color: #666; line-height: 1.5; margin: 0; }

/* Tariffs */
.t10-tariffs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; margin-top: 32px; }
.t10-tariff-card { background: #fff; border-radius: 12px; padding: 28px 24px; box-shadow: 0 4px 16px rgba(0,0,0,0.06); border: 2px solid #e8ecf0; display: flex; flex-direction: column; }
.t10-tariff-highlighted { border-color: #2979FF; box-shadow: 0 8px 32px rgba(41,121,255,0.12); position: relative; }
.t10-tariff-header { margin-bottom: 20px; }
.t10-tariff-title { font-size: 1.15rem; font-weight: 700; color: #0d1a3a; margin: 0 0 4px; }
.t10-tariff-features { list-style: none; padding: 0; margin: 0 0 24px; flex: 1; }
.t10-tariff-features li { padding: 8px 0; border-bottom: 1px solid #f0f0f0; font-size: 0.9rem; color: #555; }
.t10-tariff-features li::before { content: "✓ "; color: #2979FF; font-weight: 700; }

/* CTA section */
.t10-cta-section { background: rgba(41,121,255,0.12); border: 2px solid #2979FF; color: #0d1a3a; text-align: center; padding: 60px 20px; border-radius: 16px; margin: 0; }
.t10-cta-section h2 { color: #0d1a3a; font-size: 2rem; margin-bottom: 16px; }
.t10-cta-section p { color: #444; font-size: 1.1rem; margin-bottom: 28px; }
.t10-cta-section .t10-section-title { color: #0d1a3a; }
.t10-cta-section .t10-lead { color: #444; }

/* FAQ */
.t10-faq-list { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }

/* Features */
.t10-feature-icon { font-size: 2rem; margin-bottom: 12px; }
.t10-feature-title { font-size: 1rem; font-weight: 700; color: #0d1a3a; margin-bottom: 8px; }
.t10-feature-desc { font-size: 0.9rem; color: #666; line-height: 1.5; margin: 0; }

/* Prose */
.t10-prose { max-width: 800px; line-height: 1.8; color: #444; }
.t10-prose h2, .t10-prose h3 { color: #0d1a3a; }

/* Utility */
.t10-hub-all-link { display: inline-block; margin-top: 16px; color: #2979FF; font-weight: 600; text-decoration: none; }
.t10-hub-all-link:hover { color: #1565C0; text-decoration: underline; }
.t10-btn-outline { border: 2px solid #2979FF; color: #2979FF; background: transparent; padding: 10px 22px; border-radius: 8px; font-weight: 600; cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; transition: all 0.2s; }
.t10-btn-outline:hover { background: rgba(41,121,255,0.12); }
.t10-show-more { text-align: center; margin-top: 24px; }
.t10-mt-20 { margin-top: 20px; }
.t10-max-800 { max-width: 800px; }
.t10-m-auto { margin-left: auto; margin-right: auto; }
.t10-flex-center { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }
.t10-hidden { display: none; }
.t10-flex-sb { display: flex; justify-content: space-between; align-items: baseline; flex-wrap: wrap; gap: 8px; }
.t10-mb-0 { margin-bottom: 0; }
.t10-badge-accent { background: #2979FF; color: #fff; padding: 2px 10px; border-radius: 20px; font-size: 0.75rem; font-weight: 600; }
.t10-card-link { text-decoration: none; color: inherit; display: block; }
.t10-badge-wrap { display: flex; flex-wrap: wrap; gap: 6px; }
.t10-mb-15 { margin-bottom: 15px; }
.t10-mb-30 { margin-bottom: 30px; }
.t10-pt-0 { padding-top: 0; }
.t10-pt-10 { padding-top: 10px; }
.t10-pt-20 { padding-top: 20px; }
.t10-pt-30 { padding-top: 30px; }
.t10-body { background: #f8fafb; }
.t10-section-count { font-size: 0.85rem; color: #888; }

/* ============================================================
   GLOBAL: карты офисов и квиз — одинаковы для всех тем
   ============================================================ */

/* Офисы — карта */
.offices-map { width: 100%; height: 400px; border-radius: 10px; margin-bottom: 24px; background: #f0f0f0; overflow: hidden; }
.offices-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.offices-limited .office-card:nth-child(n+7) { display: none; }
.office-card { background: #fff; border: 1px solid #e8ecf0; border-radius: 10px; padding: 20px; display: flex; flex-direction: column; gap: 8px; }
.office-card-title { font-size: 1rem; font-weight: 700; margin: 0; }
.office-card-row { font-size: 0.88rem; color: #555; margin: 0; }
.office-highlighted { outline: 2px solid #4b83c3; }

/* Квиз */
.quiz-section { background: #f4f7fb; }
.quiz-wrap { max-width: 680px; margin: 0 auto; }
.quiz-progress-wrap { margin: 24px 0 32px; }
.quiz-step-label { font-size: 14px; color: #666; margin-bottom: 8px; }
.quiz-progress-bg { height: 6px; background: #e1e7f0; border-radius: 3px; overflow: hidden; }
.quiz-progress-fill { height: 100%; background: #4b83c3; border-radius: 3px; transition: width .3s ease; width: 0; }
.quiz-step { display: none; }
.quiz-step.active { display: block; }
.quiz-step-title { font-size: 20px; font-weight: 600; margin-bottom: 20px; }
.quiz-options { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.quiz-option { display: flex; align-items: center; gap: 12px; padding: 14px 18px; border: 2px solid #e1e7f0; border-radius: 10px; cursor: pointer; transition: border-color .2s, background .2s; }
.quiz-option:hover { border-color: #4b83c3; background: #fff; }
.quiz-option input[type="radio"] { accent-color: #4b83c3; width: 18px; height: 18px; flex-shrink: 0; }
.quiz-option:has(input:checked) { border-color: #4b83c3; background: #fff; }
.quiz-nav { display: flex; gap: 12px; align-items: center; }
.quiz-nav-center { justify-content: center; margin-top: 24px; }
.quiz-result-inner { padding: 24px 0; }
.quiz-result-icon { font-size: 48px; margin-bottom: 12px; }
.quiz-suggested-tariff { font-size: 22px; font-weight: 700; color: #4b83c3; margin: 12px 0; }
.quiz-result-sub { color: #666; margin-bottom: 0; }

/* CTA text override — в самом конце */
.t10-cta-section.t10-cta-section .t10-section-title { color: #0d1a3a; }
.t10-cta-section.t10-cta-section .t10-section-title::after { background: #2979FF; }
.t10-cta-section.t10-cta-section .t10-lead { color: #444; }
