/* ============================================================
   Theme 003 — Botanical Encyclopedia
   Clean, airy, structured plant-catalog aesthetic
   Primary: #2E7D32 (forest green)  Secondary: #81C784 (light green)
   ============================================================ */

/* ===== 1. ROOT VARIABLES ===== */
:root {
    --t3-primary: #2E7D32;
    --t3-primary-light: #81C784;
    --t3-primary-pale: rgba(46,125,50,0.08);
    --t3-primary-hover: #1B5E20;
    --t3-dark: #1a2e1a;
    --t3-text: #3e4a3e;
    --t3-muted: #7a8a7a;
    --t3-light: #d4ddd4;
    --t3-bg: #ffffff;
    --t3-bg-alt: #f6f9f6;
    --t3-border: #e2ebe2;
    --t3-r: 8px;
    --t3-r-sm: 6px;
    --t3-shadow-sm: 0 1px 4px rgba(0,0,0,0.04);
    --t3-shadow: 0 4px 16px rgba(0,0,0,0.06);
    --t3-shadow-lg: 0 12px 40px rgba(0,0,0,0.09);
    --t3-font: 'Inter', system-ui, -apple-system, sans-serif;
    --t3-w: 1100px;
}

/* ===== 2. BODY / RESET ===== */
*, *::before, *::after { box-sizing: border-box; }

body, .t3-body {
    background: var(--t3-bg);
    color: var(--t3-text);
    font-family: var(--t3-font);
    margin: 0;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}
a { color: var(--t3-primary); text-decoration: none; }
a:hover { color: var(--t3-primary-hover); text-decoration: none; }

/* ===== 3. HEADER ===== */
.t3-header {
    background: var(--t3-bg);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--t3-border);
}
.t3-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--t3-w);
    margin: 0 auto;
    padding: 0 28px;
    height: 64px;
}
.t3-logo {
    font-size: 19px;
    font-weight: 700;
    color: var(--t3-dark);
    text-decoration: none;
    letter-spacing: -0.3px;
}
.t3-nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 4px;
    align-items: center;
    height: 64px;
}
.t3-nav-link {
    display: flex;
    align-items: center;
    padding: 7px 14px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--t3-text);
    text-decoration: none;
    border-radius: var(--t3-r);
    transition: color 0.2s, background 0.2s;
    height: auto;
    border-bottom: none;
}
.t3-nav-link:hover {
    background: var(--t3-primary-pale);
    color: var(--t3-primary);
}
.t3-nav-list li:last-child .t3-nav-link {
    background: var(--t3-primary);
    color: #fff;
    font-weight: 600;
    padding: 7px 20px;
    border-radius: var(--t3-r);
}
.t3-nav-list li:last-child .t3-nav-link:hover {
    background: var(--t3-primary-hover);
}

/* 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: 22px;
    height: 2px;
    background: var(--t3-dark);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}
.burger-btn.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger-btn.active span:nth-child(2) { opacity: 0; }
.burger-btn.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== 4. HERO ===== */
.t3-hero {
    background: var(--t3-bg);
    padding: 88px 0 72px;
    position: relative;
    overflow: hidden;
}
/* Scattered leaf-like decorative elements via box-shadows */
.t3-hero::before {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 50% 0 50% 0;
    background: rgba(129,199,132,0.18);
    top: 40px;
    right: 12%;
    box-shadow:
        -120px 60px 0 6px rgba(46,125,50,0.07),
        -300px 20px 0 4px rgba(129,199,132,0.12),
        80px 120px 0 8px rgba(46,125,50,0.05),
        -400px 100px 0 5px rgba(129,199,132,0.10),
        200px -20px 0 7px rgba(46,125,50,0.06),
        -60px 140px 0 3px rgba(129,199,132,0.14),
        320px 80px 0 6px rgba(46,125,50,0.05);
}
.t3-hero::after {
    content: '';
    position: absolute;
    width: 14px;
    height: 14px;
    border-radius: 0 50% 0 50%;
    background: rgba(46,125,50,0.10);
    bottom: 50px;
    left: 8%;
    box-shadow:
        160px -40px 0 5px rgba(129,199,132,0.12),
        300px -80px 0 7px rgba(46,125,50,0.06),
        50px 30px 0 4px rgba(129,199,132,0.10),
        400px 20px 0 6px rgba(46,125,50,0.05);
}
.t3-h1 {
    font-size: 44px;
    font-weight: 700;
    color: var(--t3-dark);
    margin-bottom: 18px;
    letter-spacing: -1px;
    line-height: 1.15;
}
.t3-hero-sub {
    font-size: 1.1rem;
    color: var(--t3-muted);
    max-width: 540px;
    margin: 0 auto 32px;
    line-height: 1.75;
}
.t3-hero-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}
.t3-hero-btn {
    padding: 13px 32px;
    font-size: 0.95rem;
    border-radius: var(--t3-r);
}

/* ===== 5. BUTTONS ===== */
.t3-btn-primary {
    background: var(--t3-primary);
    color: #fff;
    padding: 13px 32px;
    border-radius: var(--t3-r);
    display: inline-block;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: background 0.25s, transform 0.2s;
    text-decoration: none;
}
.t3-btn-primary:hover {
    background: var(--t3-primary-hover);
    transform: translateY(-2px);
    color: #fff;
}
.t3-btn-outline {
    background: transparent;
    color: var(--t3-primary);
    border: 1px solid var(--t3-primary);
    padding: 12px 30px;
    border-radius: var(--t3-r);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.25s, color 0.25s;
    display: inline-block;
    text-decoration: none;
}
.t3-btn-outline:hover { background: var(--t3-primary); color: #fff; }

/* ===== 6. BREADCRUMBS ===== */
.t3-breadcrumbs { padding: 12px 0; background: var(--t3-bg); border-bottom: 1px solid var(--t3-border); }
.t3-bc-list { display: flex; flex-wrap: wrap; list-style: none; margin: 0; padding: 0; font-size: 0.84rem; }
.t3-bc-item { display: flex; align-items: center; color: var(--t3-muted); }
.t3-bc-item a { color: var(--t3-primary); }
.t3-bc-item a:hover { text-decoration: underline; }
.t3-bc-item + .t3-bc-item::before { content: "/"; margin: 0 8px; color: var(--t3-light); font-size: 0.9rem; }
.t3-bc-item:last-child span { color: var(--t3-dark); font-weight: 600; }

/* ===== 7. LAYOUT UTILS ===== */
.t3-section { padding: 64px 0; }
.t3-section:nth-child(even) { background: var(--t3-bg-alt); }
.t3-container { max-width: var(--t3-w); margin: 0 auto; padding: 0 28px; }
.t3-text-center { text-align: center; }
.t3-text-sm { font-size: 0.85rem; }
.t3-text-muted { color: var(--t3-muted); }
.t3-subtitle { font-size: 1.05rem; color: var(--t3-muted); }
.t3-mb-0 { margin-bottom: 0 !important; }
.t3-mb-15 { margin-bottom: 15px; }
.t3-mb-30 { margin-bottom: 30px; }
.t3-mt-20 { margin-top: 20px; }
.t3-pt-0 { padding-top: 0 !important; }
.t3-pt-10 { padding-top: 10px !important; }
.t3-pt-20 { padding-top: 20px !important; }
.t3-pt-30 { padding-top: 30px !important; }
.t3-max-800 { max-width: 800px; }
.t3-m-auto { margin: 0 auto; }
.t3-hidden { display: none !important; }
.t3-flex-sb { display: flex; justify-content: space-between; align-items: baseline; }
.t3-flex-center { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }
.t3-bg-alt { background: var(--t3-bg-alt); }
.t3-bg-white { background: var(--t3-bg); }
.t3-bg-page { background: var(--t3-bg); }
.t3-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.t3-grid-auto { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 22px; }

/* ===== 8. SECTION TITLES — green underline accent ===== */
.t3-section-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--t3-dark);
    margin-bottom: 28px;
    letter-spacing: -0.3px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}
.t3-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--t3-primary);
    border-radius: 2px;
}
.t3-text-center .t3-section-title::after,
.t3-section-title.t3-text-center::after {
    left: 50%;
    transform: translateX(-50%);
}
.t3-section-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--t3-primary-pale);
    color: var(--t3-primary);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: var(--t3-r);
    margin-left: 8px;
    vertical-align: middle;
}

/* ===== 9. FEATURES — cards with green top-border ===== */
.t3-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
}
.t3-feature-card {
    background: var(--t3-bg);
    border-radius: var(--t3-r);
    padding: 32px 24px 24px;
    position: relative;
    border: 1px solid var(--t3-border);
    border-top: 3px solid var(--t3-primary);
    transition: box-shadow 0.3s, transform 0.3s;
    text-align: left;
}
.t3-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--t3-shadow);
}
.t3-feature-icon {
    width: 44px;
    height: 44px;
    background: var(--t3-primary-pale);
    color: var(--t3-primary);
    border-radius: var(--t3-r);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 20px;
}
.t3-feature-title { font-size: 1rem; font-weight: 700; color: var(--t3-dark); margin: 0 0 8px; }
.t3-feature-desc { font-size: 0.88rem; color: var(--t3-muted); margin: 0; line-height: 1.65; }

/* ===== 10. TOP HUB CARDS — vertical layout, image on top ===== */
.t3-top-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}
.t3-top-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    background: var(--t3-bg);
    border-radius: var(--t3-r);
    padding: 0;
    text-decoration: none;
    color: var(--t3-text);
    border: 1px solid var(--t3-border);
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
}
.t3-top-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--t3-shadow-lg);
}
.t3-top-img-wrap {
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--t3-bg-alt);
    padding: 16px;
}
.t3-top-img { max-width: 100%; max-height: 100%; object-fit: contain; }
.t3-top-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--t3-dark);
    line-height: 1.3;
    padding: 14px 16px 0;
    text-align: center;
}
.t3-top-meta {
    font-size: 0.82rem;
    color: var(--t3-primary);
    font-weight: 600;
    margin-top: 4px;
    padding: 0 16px;
    text-align: center;
}
.t3-top-specs { display: flex; flex-wrap: wrap; gap: 6px; padding: 10px 16px 16px; justify-content: center; }
.t3-top-spec {
    font-size: 0.75rem;
    color: var(--t3-muted);
    background: var(--t3-bg-alt);
    padding: 2px 8px;
    border-radius: var(--t3-r-sm);
}
.t3-top-spec strong { color: var(--t3-dark); }

/* ===== 11. CARDS ===== */
.t3-card {
    background: var(--t3-bg);
    border: 1px solid var(--t3-border);
    border-radius: var(--t3-r);
    padding: 24px;
    transition: transform 0.3s, box-shadow 0.3s;
    margin-bottom: 18px;
}
.t3-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--t3-shadow);
}
.t3-card-title { font-size: 1.05rem; font-weight: 700; color: var(--t3-dark); margin-bottom: 6px; }
.t3-card-price { color: var(--t3-primary); font-weight: 700; font-size: 1.15rem; }
.t3-spec-list { display: flex; flex-direction: column; }
.t3-card-flex { display: flex; flex-direction: column; justify-content: space-between; height: 100%; }
.t3-card-desc {
    font-size: 0.9rem;
    color: var(--t3-muted);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 18px;
}
.t3-btn-full { display: block; text-align: center; }
.t3-card-img-wrap {
    height: 100px;
    background: var(--t3-bg-alt);
    margin-bottom: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: var(--t3-r-sm);
}
.t3-card-link { text-decoration: none; color: inherit; display: block; }
.t3-card-link:hover { text-decoration: none; }
.t3-badge-wrap { margin-bottom: 6px; }
.t3-badge-sm {
    background: var(--t3-bg-alt);
    padding: 3px 10px;
    border-radius: var(--t3-r-sm);
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid var(--t3-border);
}
.t3-badge-accent { background: var(--t3-primary-pale); color: var(--t3-primary); font-weight: 600; border-color: rgba(46,125,50,0.15); }
.t3-show-more { text-align: center; margin-top: 24px; }
.t3-all-link {
    color: var(--t3-primary);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.t3-all-link:hover { color: var(--t3-primary-hover); }

/* ===== 12. HUB LIST ===== */
.t3-hub-title { margin-bottom: 28px; font-size: 1.9rem; font-weight: 700; color: var(--t3-dark); letter-spacing: -0.3px; }
.t3-hub-list { display: flex; flex-wrap: wrap; gap: 10px; }
.t3-hub-item {
    padding: 9px 20px;
    background: var(--t3-bg);
    border: 1px solid var(--t3-border);
    border-radius: var(--t3-r);
    text-decoration: none;
    color: var(--t3-text);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.25s;
}
.t3-hub-item:hover {
    background: var(--t3-primary);
    color: #fff;
    border-color: var(--t3-primary);
}
.t3-hub-badge {
    padding: 16px 22px;
    background: var(--t3-bg);
    border: 1px solid var(--t3-border);
    border-radius: var(--t3-r);
    text-decoration: none;
    color: var(--t3-text);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    transition: all 0.25s;
}
.t3-hub-badge:hover {
    box-shadow: var(--t3-shadow);
    border-color: var(--t3-primary-light);
}

/* ===== 13. DETAIL PAGES ===== */
.t3-grid-ms { display: grid; grid-template-columns: 1fr 300px; gap: 36px; }
.t3-sticky { position: sticky; top: 84px; }
.t3-item-row { display: flex; justify-content: space-between; padding: 11px 0; }
.t3-border-b { border-bottom: 1px solid var(--t3-border); }
.t3-card-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 18px; }

/* ===== 14. SECTION CARD / INFO GRID ===== */
.t3-section-card {
    background: var(--t3-bg);
    border: 1px solid var(--t3-border);
    border-radius: var(--t3-r);
    padding: 32px;
    margin-bottom: 24px;
}
.t3-info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 12px; }
.t3-info-item {
    padding: 16px;
    background: var(--t3-bg-alt);
    border-radius: var(--t3-r-sm);
    border: 1px solid var(--t3-border);
}
.t3-info-label {
    display: block;
    font-size: 0.76rem;
    color: var(--t3-muted);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.t3-info-value { display: block; font-weight: 700; color: var(--t3-dark); font-size: 1rem; }

/* ===== 15. CONTACTS ===== */
.t3-contact-row { display: flex; align-items: center; gap: 15px; margin-bottom: 12px; }
.t3-social-links { display: flex; gap: 10px; }
.t3-social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: var(--t3-r);
    background: var(--t3-primary-pale);
    color: var(--t3-primary);
    text-decoration: none;
    transition: all 0.25s;
    font-weight: 700;
    border: 1px solid transparent;
}
.t3-social-btn:hover {
    background: var(--t3-primary);
    color: #fff;
    transform: translateY(-2px);
}

/* ===== 16. PROMO ===== */
.t3-promo-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 16px; margin-top: 20px; }
.t3-promo-modern {
    background: var(--t3-bg);
    border: 1px solid var(--t3-border);
    border-radius: var(--t3-r);
    padding: 22px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: box-shadow 0.3s;
}
.t3-promo-modern:hover { box-shadow: var(--t3-shadow); }
.t3-promo-info h3 { margin: 0 0 4px; font-size: 1rem; color: var(--t3-dark); }
.t3-promo-sub { margin: 0; font-size: 0.82rem; color: var(--t3-muted); }
.t3-promo-wrap { position: relative; }
.t3-promo-box {
    background: var(--t3-primary-pale);
    border: 1px dashed var(--t3-primary-light);
    padding: 10px 20px;
    border-radius: var(--t3-r-sm);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background 0.2s;
    min-width: 130px;
    justify-content: center;
}
.t3-promo-box:hover { background: rgba(46,125,50,0.12); }
.t3-promo-text {
    font-family: 'SFMono-Regular', Consolas, monospace;
    font-weight: 700;
    font-size: 1rem;
    color: var(--t3-primary);
    letter-spacing: 1px;
}
.t3-copy-icon { color: var(--t3-primary-light); }
.copy-tooltip-x {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--t3-dark);
    color: #fff;
    padding: 5px 12px;
    border-radius: var(--t3-r-sm);
    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(--t3-dark);
}
.copy-tooltip-x.visible { opacity: 1; bottom: -45px; }

/* ===== 17. CITY TAGS ===== */
.t3-city-list { display: flex; flex-wrap: wrap; gap: 8px; }
.t3-city-tag {
    padding: 7px 16px;
    background: var(--t3-bg);
    border: 1px solid var(--t3-border);
    color: var(--t3-text);
    text-decoration: none;
    border-radius: var(--t3-r);
    font-size: 0.88rem;
    font-weight: 500;
    transition: all 0.25s;
}
.t3-city-tag:hover {
    background: var(--t3-primary);
    color: #fff;
    border-color: var(--t3-primary);
}
.t3-city-tag-more {
    border-style: dashed;
    background: transparent;
    color: var(--t3-primary);
    border-color: var(--t3-light);
}

/* ===== 18. ACCORDION ===== */
.t3-accordion {
    background: var(--t3-bg);
    border: 1px solid var(--t3-border);
    border-radius: var(--t3-r);
    margin-bottom: 8px;
    overflow: hidden;
}
.t3-accordion summary {
    padding: 18px 24px;
    font-weight: 600;
    font-size: 1rem;
    color: var(--t3-dark);
    cursor: pointer;
    list-style: none;
    position: relative;
    user-select: none;
    transition: background 0.2s;
}
.t3-accordion summary:hover { background: var(--t3-bg-alt); }
.t3-accordion summary::-webkit-details-marker { display: none; }
.t3-accordion summary::after {
    content: '+';
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    width: 26px;
    height: 26px;
    background: var(--t3-primary-pale);
    color: var(--t3-primary);
    border-radius: var(--t3-r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.3s;
}
.t3-accordion[open] summary::after {
    content: '\2212';
    background: var(--t3-primary);
    color: #fff;
    transform: translateY(-50%);
}
.t3-accordion .t3-accordion-content {
    padding: 0 24px 24px;
    border-top: 1px solid var(--t3-border);
    margin-top: 6px;
    padding-top: 18px;
    color: var(--t3-muted);
    line-height: 1.75;
}

/* ===== 19. PROSE ===== */
.t3-prose h2 { margin-top: 2rem; margin-bottom: 1rem; color: var(--t3-dark); }
.t3-prose h3 { margin-top: 1.5rem; margin-bottom: 0.8rem; color: var(--t3-dark); }
.t3-prose ul { padding-left: 0; margin: 15px 0; list-style: none; }
.t3-prose li { margin-bottom: 10px; padding-left: 22px; position: relative; }
.t3-prose li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: var(--t3-primary-light);
    border-radius: 50%;
}
.t3-prose strong { color: var(--t3-dark); }

/* ===== 20. ERROR PAGE ===== */
.t3-error-page { padding: 100px 20px; max-width: 480px; margin: 0 auto; text-align: center; }
.t3-error-code {
    font-size: 8rem;
    font-weight: 700;
    line-height: 1;
    color: var(--t3-primary-light);
    margin-bottom: 10px;
}
.t3-error-title { font-size: 1.5rem; font-weight: 700; color: var(--t3-dark); margin-bottom: 12px; }
.t3-error-desc { font-size: 1rem; color: var(--t3-muted); margin-bottom: 28px; line-height: 1.7; }
.t3-error-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* ===== 21. GEO PAGE ===== */
.t3-geo-container { max-width: var(--t3-w); }
.t3-hub-list-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 18px; }
.t3-hub-summary {
    background: var(--t3-bg);
    border: 1px solid var(--t3-border);
    border-radius: var(--t3-r);
    padding: 22px;
    transition: box-shadow 0.3s, transform 0.3s;
}
.t3-hub-summary:hover { box-shadow: var(--t3-shadow); transform: translateY(-3px); }
.t3-hub-summary-head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.t3-hub-summary-logo { width: 44px; height: 44px; object-fit: contain; border-radius: var(--t3-r); }
.t3-hub-summary-title { font-weight: 700; font-size: 1.05rem; color: var(--t3-dark); text-decoration: none; }
.t3-hub-summary-title:hover { color: var(--t3-primary); }
.t3-hub-summary-specs { display: flex; flex-wrap: wrap; gap: 6px; }
.t3-hub-summary-spec {
    font-size: 0.82rem;
    color: var(--t3-muted);
    background: var(--t3-bg-alt);
    padding: 3px 10px;
    border-radius: var(--t3-r-sm);
    border: 1px solid var(--t3-border);
}
.t3-geo-info-grid { margin-top: 15px; }
.t3-geo-promo-wrap { margin-top: 15px; }
.t3-geo-items-wrap { margin-top: 20px; }
.t3-geo-show-more { text-align: center; margin-top: 15px; }
.t3-geo-apps-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px; justify-content: center; }
.t3-app-btn { display: inline-block; line-height: 0; }
.t3-app-btn-img { height: 44px; width: auto; display: block; }
.t3-geo-hub-footer { margin-top: 20px; text-align: right; }
.t3-geo-zone-desc {
    margin-top: 20px;
    padding: 16px 20px;
    background: var(--t3-primary-pale);
    border-left: 3px solid var(--t3-primary);
    border-radius: var(--t3-r-sm);
    font-size: 0.95rem;
    color: var(--t3-muted);
}
.geo-map {
    width: 100%;
    height: 420px;
    background: var(--t3-bg-alt);
    border-radius: var(--t3-r);
    margin-top: 14px;
    border: 1px solid var(--t3-border);
}

/* ===== 22. HUB PAGE ===== */
.t3-hub-logo-wrap {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--t3-border);
}
.t3-hub-logo-img { height: 64px; object-fit: contain; border-radius: var(--t3-r); }
.t3-hub-title-text { margin: 0; font-size: 30px; font-weight: 700; color: var(--t3-dark); letter-spacing: -0.3px; }
.t3-hub-sidebar {}
.t3-hub-specs-title { margin-top: 20px; }
.t3-mini-link { text-decoration: none; color: inherit; display: block; text-align: center; }
.t3-mini-name { font-weight: 600; font-size: 0.9rem; }
.t3-app-col { display: flex; flex-direction: column; gap: 10px; }

/* ===== 23. ITEM PAGE ===== */
.t3-item-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: start; }
.t3-item-img-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--t3-bg-alt);
    border-radius: var(--t3-r);
    padding: 24px;
    border: 1px solid var(--t3-border);
}
.t3-item-h1 { margin-bottom: 20px; }
.t3-item-img { max-width: 100%; height: auto; object-fit: contain; }
.t3-item-specs-title { margin-top: 0; }
.t3-hub-info-row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.t3-hub-info-logo { width: 44px; height: 44px; object-fit: contain; border-radius: var(--t3-r); }
.t3-hub-info-meta {}
.t3-hub-info-label { font-size: 0.85rem; color: var(--t3-muted); }
.t3-hub-info-name { font-weight: 700; font-size: 1.15rem; text-decoration: none; color: inherit; }
.t3-hub-info-name:hover { color: var(--t3-primary); }
.t3-app-buttons { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 15px; }

/* ===== 24. ITEMS MINI GRID ===== */
.t3-items-mini-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 12px; }
.t3-items-mini-card {
    background: var(--t3-bg);
    border: 1px solid var(--t3-border);
    border-radius: var(--t3-r-sm);
    padding: 12px;
    transition: box-shadow 0.25s, transform 0.25s;
}
.t3-items-mini-card:hover { box-shadow: var(--t3-shadow); transform: translateY(-2px); }
.t3-items-mini-img { width: 100%; height: 80px; object-fit: contain; margin-bottom: 8px; }

/* ===== 25. FOOTER — white / light with green accents ===== */
.t3-footer {
    background: var(--t3-bg);
    color: var(--t3-text);
    padding: 64px 0 32px;
    margin-top: 72px;
    font-size: 0.9rem;
    border-top: 1px solid var(--t3-border);
}
.t3-footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 36px; }
.t3-footer-brand h2 { color: var(--t3-dark); margin-bottom: 16px; font-size: 1.2rem; font-weight: 700; }
.t3-footer-col h3 { color: var(--t3-dark); font-size: 0.95rem; margin-bottom: 16px; font-weight: 700; }
.t3-footer-nav { list-style: none; padding: 0; margin: 0; }
.t3-footer-nav li { margin-bottom: 10px; }
.t3-footer-nav a { color: var(--t3-muted); transition: color 0.2s; }
.t3-footer-nav a:hover { color: var(--t3-primary); }
.t3-footer p { line-height: 1.65; color: var(--t3-muted); }
.t3-footer-bottom {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid var(--t3-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    color: var(--t3-muted);
    font-size: 0.84rem;
}
.t3-footer-btm-links { display: flex; gap: 18px; }
.t3-footer-btm-links a { color: var(--t3-muted); }
.t3-footer-btm-links a:hover { color: var(--t3-primary); }

/* ===== 26. PRICING ===== */
.t3-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
    align-items: start;
}
.t3-pricing-card {
    background: var(--t3-bg);
    border-radius: var(--t3-r);
    padding: 32px 28px;
    border: 1px solid var(--t3-border);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    text-align: center;
}
.t3-pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--t3-shadow);
}
.t3-pricing-popular {
    border: 2px solid var(--t3-primary);
}
.t3-pricing-popular:hover { transform: translateY(-4px); }
.t3-pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--t3-primary);
    color: #fff;
    font-size: 0.76rem;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: var(--t3-r);
    white-space: nowrap;
}
.t3-pricing-logo {
    width: 72px;
    height: 72px;
    object-fit: contain;
    margin: 0 auto 14px;
    display: block;
    border-radius: var(--t3-r);
}
.t3-pricing-name { font-size: 1.15rem; font-weight: 700; color: var(--t3-dark); margin: 0 0 6px; }
.t3-pricing-desc { font-size: 0.88rem; color: var(--t3-muted); margin: 0 0 18px; }
.t3-pricing-price { margin-bottom: 22px; }
.t3-pricing-amount { font-size: 2.2rem; font-weight: 700; color: var(--t3-dark); letter-spacing: -0.5px; }
.t3-pricing-period { font-size: 0.88rem; color: var(--t3-muted); }
.t3-pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    text-align: left;
}
.t3-pricing-features li {
    padding: 7px 0;
    border-bottom: 1px solid var(--t3-border);
    font-size: 0.9rem;
    color: var(--t3-text);
    padding-left: 22px;
    position: relative;
}
.t3-pricing-features li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--t3-primary);
    font-weight: 700;
}

/* ===== 27. TESTIMONIALS ===== */
.t3-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
    gap: 22px;
}
.t3-testimonial-card {
    background: var(--t3-bg);
    border: 1px solid var(--t3-border);
    border-radius: var(--t3-r);
    padding: 28px;
    transition: box-shadow 0.3s;
    position: relative;
}
.t3-testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 12px;
    left: 20px;
    font-size: 3.5rem;
    line-height: 1;
    color: var(--t3-primary-light);
    opacity: 0.3;
    font-family: Georgia, serif;
}
.t3-testimonial-card:hover { box-shadow: var(--t3-shadow); }
.t3-testimonial-text {
    font-size: 0.95rem;
    color: var(--t3-text);
    line-height: 1.7;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}
.t3-testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.t3-testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--t3-primary-pale);
}
.t3-testimonial-name { font-weight: 700; font-size: 0.92rem; color: var(--t3-dark); }
.t3-testimonial-role { font-size: 0.82rem; color: var(--t3-muted); }

/* ===== 28. RESPONSIVE ===== */
@media (max-width: 991px) {
    .t3-footer-grid { grid-template-columns: 1fr 1fr; }
    .t3-item-hero { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .t3-hero { padding: 56px 0 44px; }
    .t3-h1 { font-size: 28px; letter-spacing: -0.5px; }
    .t3-hero-sub { font-size: 1rem; }
    .t3-section { padding: 44px 0; }
    .t3-section-card { padding: 20px; margin-bottom: 18px; }
    .t3-grid-ms { grid-template-columns: 1fr; }
    .t3-grid-auto { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 14px; }
    .t3-grid-2 { grid-template-columns: 1fr; }
    .t3-info-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .t3-promo-grid { grid-template-columns: 1fr; }
    .t3-promo-modern { flex-direction: column; gap: 14px; text-align: center; }
    .t3-hub-title-text { font-size: 22px; }
    .t3-footer-bottom { flex-direction: column; text-align: center; }
    .t3-top-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px; }
    .t3-top-specs { display: none; }
    .t3-features-grid { grid-template-columns: 1fr 1fr; }

    .burger-btn { display: flex; }
    .t3-nav-list {
        display: none;
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--t3-bg);
        padding: 8px 24px;
        gap: 0;
        box-shadow: 0 12px 30px rgba(0,0,0,0.08);
        border-bottom: 1px solid var(--t3-border);
        z-index: 100;
        height: auto;
    }
    .t3-nav-list.menu-open, .t3-nav-list[data-nav].menu-open { display: flex; }
    .t3-nav-list li { border-bottom: 1px solid var(--t3-border); }
    .t3-nav-list li:last-child .t3-nav-link {
        background: none;
        color: var(--t3-primary);
        border-radius: 0;
        padding: 14px 0;
    }
    .t3-nav-link { height: auto; padding: 14px 0; font-size: 1rem; border-radius: 0; }
}

@media (max-width: 480px) {
    .t3-info-grid { grid-template-columns: 1fr; }
    .t3-header-inner { padding: 0 16px; }
    .t3-container { padding: 0 16px; }
    .t3-features-grid { grid-template-columns: 1fr; }
    .t3-hero-actions { flex-direction: column; align-items: center; }
    .t3-footer-grid { grid-template-columns: 1fr; }
    .t3-top-grid { grid-template-columns: 1fr 1fr; }
}



/* ============================================================
   AUTO-PATCHED: новые блоки для theme_003
   ============================================================ */

/* Hero service */
.t3-hero-wrapper { max-width: 760px; margin: 0 auto; text-align: center; }
.t3-lead { font-size: 1.15rem; color: #555; margin: 0 0 20px; line-height: 1.6; text-align: center; }
.t3-hero-sub { font-size: 1rem; color: #666; margin: 0 0 24px; text-align: center; }
.t3-hero-btn-wrap { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; justify-content: center; }
.t3-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 #2E7D32; background: transparent; color: #2E7D32; text-decoration: none; transition: all 0.2s; }
.t3-btn-secondary:hover { background: rgba(46,125,50,0.12); }
.t3-btn-lg { padding: 14px 32px; font-size: 1.05rem; }

/* Trust bar */
.t3-trust-bar { display: flex; gap: 24px; flex-wrap: wrap; margin: 24px 0; padding: 20px 24px; background: rgba(46,125,50,0.12); border-radius: 12px; }
.t3-trust-item { display: flex; align-items: center; gap: 12px; }
.t3-trust-icon { font-size: 1.5rem; }
.t3-trust-text { display: flex; flex-direction: column; }
.t3-trust-text strong { font-size: 1.1rem; font-weight: 700; color: #1a2e1a; }
.t3-trust-text span { font-size: 0.8rem; color: #777; }

/* Steps */
.t3-steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; margin-top: 32px; }
.t3-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 #2E7D32; }
.t3-step-num { font-size: 2rem; font-weight: 800; color: #2E7D32; opacity: 0.3; margin-bottom: 12px; }
.t3-step-title { font-size: 1rem; font-weight: 700; color: #1a2e1a; margin-bottom: 8px; }
.t3-step-text { font-size: 0.9rem; color: #666; line-height: 1.5; margin: 0; }

/* Tariffs */
.t3-tariffs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; margin-top: 32px; }
.t3-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; }
.t3-tariff-highlighted { border-color: #2E7D32; box-shadow: 0 8px 32px rgba(46,125,50,0.12); position: relative; }
.t3-tariff-header { margin-bottom: 20px; }
.t3-tariff-title { font-size: 1.15rem; font-weight: 700; color: #1a2e1a; margin: 0 0 4px; }
.t3-tariff-features { list-style: none; padding: 0; margin: 0 0 24px; flex: 1; }
.t3-tariff-features li { padding: 8px 0; border-bottom: 1px solid #f0f0f0; font-size: 0.9rem; color: #555; }
.t3-tariff-features li::before { content: "✓ "; color: #2E7D32; font-weight: 700; }

/* CTA section */
.t3-cta-section { background: rgba(46,125,50,0.12); border: 2px solid #2E7D32; color: #1a2e1a; text-align: center; padding: 60px 20px; border-radius: 16px; margin: 0; }
.t3-cta-section h2 { color: #1a2e1a; font-size: 2rem; margin-bottom: 16px; }
.t3-cta-section p { color: #444; font-size: 1.1rem; margin-bottom: 28px; }
.t3-cta-section .t3-section-title { color: #1a2e1a; }
.t3-cta-section .t3-lead { color: #444; }

/* FAQ */
.t3-faq-list { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }

/* Features */
.t3-feature-icon { font-size: 2rem; margin-bottom: 12px; }
.t3-feature-title { font-size: 1rem; font-weight: 700; color: #1a2e1a; margin-bottom: 8px; }
.t3-feature-desc { font-size: 0.9rem; color: #666; line-height: 1.5; margin: 0; }

/* Prose */
.t3-prose { max-width: 800px; line-height: 1.8; color: #444; }
.t3-prose h2, .t3-prose h3 { color: #1a2e1a; }

/* Utility */
.t3-hub-all-link { display: inline-block; margin-top: 16px; color: #2E7D32; font-weight: 600; text-decoration: none; }
.t3-hub-all-link:hover { color: #1B5E20; text-decoration: underline; }
.t3-btn-outline { border: 2px solid #2E7D32; color: #2E7D32; 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; }
.t3-btn-outline:hover { background: rgba(46,125,50,0.12); }
.t3-show-more { text-align: center; margin-top: 24px; }
.t3-mt-20 { margin-top: 20px; }
.t3-max-800 { max-width: 800px; }
.t3-m-auto { margin-left: auto; margin-right: auto; }
.t3-flex-center { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }
.t3-hidden { display: none; }
.t3-flex-sb { display: flex; justify-content: space-between; align-items: baseline; flex-wrap: wrap; gap: 8px; }
.t3-mb-0 { margin-bottom: 0; }
.t3-badge-accent { background: #2E7D32; color: #fff; padding: 2px 10px; border-radius: 20px; font-size: 0.75rem; font-weight: 600; }
.t3-card-link { text-decoration: none; color: inherit; display: block; }
.t3-badge-wrap { display: flex; flex-wrap: wrap; gap: 6px; }
.t3-mb-15 { margin-bottom: 15px; }
.t3-mb-30 { margin-bottom: 30px; }
.t3-pt-0 { padding-top: 0; }
.t3-pt-10 { padding-top: 10px; }
.t3-pt-20 { padding-top: 20px; }
.t3-pt-30 { padding-top: 30px; }
.t3-body { background: #f8fafb; }
.t3-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 — в самом конце */
.t3-cta-section.t3-cta-section .t3-section-title { color: #1a2e1a; }
.t3-cta-section.t3-cta-section .t3-section-title::after { background: #2E7D32; }
.t3-cta-section.t3-cta-section .t3-lead { color: #444; }
