:root {
    --t9-accent: #8B9A46;
    --t9-accent-dark: #6E7A35;
    --t9-accent-glow: rgba(139,154,70,0.12);
    --t9-accent-gradient: linear-gradient(135deg, #8B9A46 0%, #6E7A35 100%);
    --t9-dark: #2C2C2C;
    --t9-text: #4A4A4A;
    --t9-muted: #6B7280;
    --t9-light: #D1D5DB;
    --t9-bg: #ffffff;
    --t9-bg-alt: #F9F9F6;
    --t9-bg-hero: #ffffff;
    --t9-border: #E8E8E4;
    --t9-r: 6px;
    --t9-r-sm: 4px;
    --t9-r-pill: 6px;
    --t9-shadow-sm: 0 1px 4px rgba(0,0,0,0.04);
    --t9-shadow: 0 4px 16px rgba(0,0,0,0.06);
    --t9-shadow-lg: 0 12px 40px rgba(0,0,0,0.08);
    --t9-font: 'Inter', system-ui, -apple-system, sans-serif;
    --t9-w: 1120px;
}

*, *::before, *::after { box-sizing: border-box; }

body, .t9-body {
    background: var(--t9-bg);
    color: var(--t9-text);
    font-family: var(--t9-font);
    margin: 0;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}
a { color: var(--t9-accent-dark); text-decoration: none; }
a:hover { color: var(--t9-accent); text-decoration: none; }

/* ===== HEADER — clean white, olive accent on hover ===== */
.t9-header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--t9-border);
}
.t9-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--t9-w);
    margin: 0 auto;
    padding: 0 28px;
    height: 68px;
}
.t9-logo {
    font-size: 19px;
    font-weight: 700;
    color: var(--t9-dark);
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.t9-nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 4px;
    align-items: center;
    height: 68px;
}
.t9-nav-link {
    display: flex;
    align-items: center;
    padding: 8px 18px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--t9-muted);
    text-decoration: none;
    border-radius: var(--t9-r);
    transition: color 0.2s, background 0.2s;
    height: auto;
    border-bottom: none;
    letter-spacing: 0.3px;
}
.t9-nav-link:hover {
    color: var(--t9-accent-dark);
    background: var(--t9-accent-glow);
}
/* Last nav link as button */
.t9-nav-list li:last-child .t9-nav-link {
    background: var(--t9-accent);
    color: #fff;
    font-weight: 600;
    padding: 8px 22px;
    border-radius: var(--t9-r);
}
.t9-nav-list li:last-child .t9-nav-link:hover {
    background: var(--t9-accent-dark);
}

/* 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(--t9-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); }

/* ===== HERO — clean white, editorial feel ===== */
.t9-hero {
    background: var(--t9-bg-hero);
    padding: 90px 0 70px;
    position: relative;
    border-bottom: 1px solid var(--t9-border);
}
.t9-h1 {
    font-size: 44px;
    font-weight: 700;
    color: var(--t9-dark);
    margin-bottom: 18px;
    letter-spacing: -0.5px;
    line-height: 1.15;
}
.t9-hero-sub {
    font-size: 1.1rem;
    color: var(--t9-muted);
    max-width: 540px;
    margin: 0 auto 32px;
    line-height: 1.75;
}
.t9-hero-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}
.t9-hero-btn {
    padding: 13px 32px;
    font-size: 0.93rem;
    border-radius: var(--t9-r);
}

/* ===== BUTTONS ===== */
.t9-btn-primary {
    background: var(--t9-accent);
    color: #fff;
    padding: 13px 34px;
    border-radius: var(--t9-r);
    display: inline-block;
    font-weight: 600;
    font-size: 0.93rem;
    border: none;
    cursor: pointer;
    transition: background 0.25s, transform 0.2s;
    text-decoration: none;
    letter-spacing: 0.3px;
}
.t9-btn-primary:hover {
    background: var(--t9-accent-dark);
    transform: translateY(-2px);
    color: #fff;
}
.t9-btn-outline {
    background: transparent;
    color: var(--t9-accent-dark);
    border: 1.5px solid var(--t9-accent);
    padding: 12px 30px;
    border-radius: var(--t9-r);
    font-size: 0.93rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s;
    display: inline-block;
    text-decoration: none;
    letter-spacing: 0.3px;
}
.t9-btn-outline:hover { background: var(--t9-accent); color: #fff; }

/* ===== BREADCRUMBS ===== */
.t9-breadcrumbs { padding: 14px 0; background: var(--t9-bg-alt); border-bottom: 1px solid var(--t9-border); }
.t9-bc-list { display: flex; flex-wrap: wrap; list-style: none; margin: 0; padding: 0; font-size: 0.82rem; }
.t9-bc-item { display: flex; align-items: center; color: var(--t9-muted); }
.t9-bc-item a { color: var(--t9-accent-dark); }
.t9-bc-item a:hover { text-decoration: underline; }
.t9-bc-item + .t9-bc-item::before { content: "/"; margin: 0 10px; color: var(--t9-light); font-size: 0.85rem; }
.t9-bc-item:last-child span { color: var(--t9-dark); font-weight: 600; }

/* ===== LAYOUT ===== */
.t9-section { padding: 68px 0; }
.t9-section:nth-child(even) { background: var(--t9-bg-alt); }
.t9-container { max-width: var(--t9-w); margin: 0 auto; padding: 0 28px; }
.t9-text-center { text-align: center; }
.t9-text-sm { font-size: 0.85rem; }
.t9-text-muted { color: var(--t9-muted); }
.t9-subtitle { font-size: 1.05rem; color: var(--t9-muted); }
.t9-mb-0 { margin-bottom: 0 !important; }
.t9-mb-15 { margin-bottom: 15px; }
.t9-mb-30 { margin-bottom: 30px; }
.t9-mt-20 { margin-top: 20px; }
.t9-pt-0 { padding-top: 0 !important; }
.t9-pt-10 { padding-top: 10px !important; }
.t9-pt-20 { padding-top: 20px !important; }
.t9-pt-30 { padding-top: 30px !important; }
.t9-max-800 { max-width: 800px; }
.t9-m-auto { margin: 0 auto; }
.t9-hidden { display: none !important; }
.t9-flex-sb { display: flex; justify-content: space-between; align-items: baseline; }
.t9-flex-center { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }
.t9-bg-alt { background: var(--t9-bg-alt); }
.t9-bg-white { background: var(--t9-bg); }
.t9-bg-page { background: var(--t9-bg); }
.t9-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.t9-grid-auto { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; }

/* ===== SECTION TITLE — uppercase tracking, muted olive ===== */
.t9-section-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--t9-accent-dark);
    margin-bottom: 28px;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}
.t9-section-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--t9-accent-glow);
    color: var(--t9-accent-dark);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: var(--t9-r);
    margin-left: 10px;
    vertical-align: middle;
    letter-spacing: 0;
    text-transform: none;
}

/* ===== FEATURES — icon circles on warm bg ===== */
.t9-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 24px;
}
.t9-feature-card {
    background: var(--t9-bg);
    border-radius: var(--t9-r);
    padding: 32px 24px;
    border: 1px solid var(--t9-border);
    transition: border-color 0.3s, box-shadow 0.3s;
    text-align: center;
}
.t9-feature-card:hover {
    border-color: var(--t9-accent);
    box-shadow: var(--t9-shadow);
}
.t9-feature-icon {
    width: 56px;
    height: 56px;
    background: var(--t9-bg-alt);
    color: var(--t9-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 22px;
    border: 1px solid var(--t9-border);
}
.t9-feature-title { font-size: 1rem; font-weight: 700; color: var(--t9-dark); margin: 0 0 8px; letter-spacing: 0.3px; }
.t9-feature-desc { font-size: 0.88rem; color: var(--t9-muted); margin: 0; line-height: 1.65; }

/* ===== TOP HUB CARDS — image dominant, minimal text below ===== */
.t9-top-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
}
.t9-top-card {
    display: flex;
    flex-direction: column;
    background: var(--t9-bg);
    border-radius: var(--t9-r);
    text-decoration: none;
    color: var(--t9-text);
    border: 1px solid var(--t9-border);
    transition: border-color 0.3s, box-shadow 0.3s;
    overflow: hidden;
}
.t9-top-card:hover {
    border-color: var(--t9-accent);
    box-shadow: var(--t9-shadow);
}
.t9-top-img-wrap {
    width: 100%; height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--t9-bg-alt);
    padding: 16px;
}
.t9-top-img { max-width: 100%; max-height: 100%; object-fit: contain; }
.t9-top-name { font-size: 0.95rem; font-weight: 700; color: var(--t9-dark); line-height: 1.3; padding: 14px 16px 4px; }
.t9-top-meta { font-size: 0.82rem; color: var(--t9-accent-dark); font-weight: 600; padding: 0 16px; }
.t9-top-specs { display: flex; flex-wrap: wrap; gap: 6px; padding: 8px 16px 14px; }
.t9-top-spec { font-size: 0.75rem; color: var(--t9-muted); background: var(--t9-bg-alt); padding: 2px 8px; border-radius: var(--t9-r-sm); }
.t9-top-spec strong { color: var(--t9-dark); }

/* ===== CARDS — thin borders, 6px radius, elegant shadows ===== */
.t9-card {
    background: var(--t9-bg);
    border: 1px solid var(--t9-border);
    border-radius: var(--t9-r);
    padding: 24px;
    transition: border-color 0.3s, box-shadow 0.3s;
    margin-bottom: 20px;
}
.t9-card:hover {
    border-color: var(--t9-accent);
    box-shadow: var(--t9-shadow);
}
.t9-card-title { font-size: 1.05rem; font-weight: 700; color: var(--t9-dark); margin-bottom: 8px; }
.t9-card-price { color: var(--t9-accent-dark); font-weight: 700; font-size: 1.15rem; }
.t9-spec-list { display: flex; flex-direction: column; }
.t9-card-flex { display: flex; flex-direction: column; justify-content: space-between; height: 100%; }
.t9-card-desc { font-size: 0.9rem; color: var(--t9-muted); display: -webkit-box; -webkit-line-clamp: 3; line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 20px; }
.t9-btn-full { display: block; text-align: center; }
.t9-card-img-wrap { height: 100px; background: var(--t9-bg-alt); margin-bottom: 8px; display: flex; justify-content: center; align-items: center; overflow: hidden; border-radius: var(--t9-r-sm); }
.t9-card-link { text-decoration: none; color: inherit; display: block; }
.t9-card-link:hover { text-decoration: none; }
.t9-badge-wrap { margin-bottom: 6px; }
.t9-badge-sm { background: var(--t9-bg-alt); padding: 4px 12px; border-radius: var(--t9-r); font-size: 0.8rem; font-weight: 500; }
.t9-badge-accent { background: var(--t9-accent-glow); color: var(--t9-accent-dark); font-weight: 600; }
.t9-show-more { text-align: center; margin-top: 28px; }
.t9-all-link { color: var(--t9-accent-dark); font-weight: 600; font-size: 0.93rem; text-decoration: none; display: inline-flex; align-items: center; gap: 4px; letter-spacing: 0.5px; text-transform: uppercase; font-size: 0.82rem; }
.t9-all-link:hover { color: var(--t9-accent); }

/* ===== HUB LIST ===== */
.t9-hub-title { margin-bottom: 28px; font-size: 1.8rem; font-weight: 700; color: var(--t9-dark); letter-spacing: -0.3px; }
.t9-hub-list { display: flex; flex-wrap: wrap; gap: 10px; }
.t9-hub-item {
    padding: 9px 22px;
    background: var(--t9-bg);
    border: 1px solid var(--t9-border);
    border-radius: var(--t9-r);
    text-decoration: none;
    color: var(--t9-text);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.25s;
}
.t9-hub-item:hover {
    background: var(--t9-accent);
    color: #fff;
    border-color: var(--t9-accent);
}
.t9-hub-badge {
    padding: 16px 22px;
    background: var(--t9-bg);
    border: 1px solid var(--t9-border);
    border-radius: var(--t9-r);
    text-decoration: none;
    color: var(--t9-text);
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 600;
    transition: all 0.25s;
}
.t9-hub-badge:hover {
    border-color: var(--t9-accent);
    box-shadow: var(--t9-shadow);
}

/* ===== DETAIL PAGES ===== */
.t9-grid-ms { display: grid; grid-template-columns: 1fr 320px; gap: 40px; }
.t9-sticky { position: sticky; top: 88px; }
.t9-item-row { display: flex; justify-content: space-between; padding: 12px 0; }
.t9-border-b { border-bottom: 1px solid var(--t9-border); }
.t9-card-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 20px; }

/* Section Card */
.t9-section-card {
    background: var(--t9-bg);
    border: 1px solid var(--t9-border);
    border-radius: var(--t9-r);
    padding: 32px;
    margin-bottom: 24px;
}

/* Info Grid */
.t9-info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 14px; }
.t9-info-item {
    padding: 16px;
    background: var(--t9-bg-alt);
    border-radius: var(--t9-r);
    border-bottom: 2px solid var(--t9-accent);
}
.t9-info-label { display: block; font-size: 0.75rem; color: var(--t9-muted); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 1px; }
.t9-info-value { display: block; font-weight: 700; color: var(--t9-dark); font-size: 1.02rem; }

/* Contacts */
.t9-contact-row { display: flex; align-items: center; gap: 15px; margin-bottom: 12px; }
.t9-social-links { display: flex; gap: 10px; }
.t9-social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px; height: 44px;
    border-radius: var(--t9-r);
    background: var(--t9-bg-alt);
    color: var(--t9-accent-dark);
    text-decoration: none;
    transition: all 0.25s;
    font-weight: 700;
    border: 1px solid var(--t9-border);
}
.t9-social-btn:hover {
    background: var(--t9-accent);
    color: #fff;
    border-color: var(--t9-accent);
}

/* Promo */
.t9-promo-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 16px; margin-top: 20px; }
.t9-promo-modern {
    background: var(--t9-bg);
    border: 1px solid var(--t9-border);
    border-radius: var(--t9-r);
    padding: 22px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: border-color 0.25s;
}
.t9-promo-modern:hover { border-color: var(--t9-accent); }
.t9-promo-info h3 { margin: 0 0 4px; font-size: 1rem; color: var(--t9-dark); }
.t9-promo-sub { margin: 0; font-size: 0.82rem; color: var(--t9-muted); }
.t9-promo-wrap { position: relative; }
.t9-promo-box {
    background: var(--t9-accent-glow);
    border: 1.5px dashed var(--t9-accent);
    padding: 10px 20px;
    border-radius: var(--t9-r);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background 0.2s;
    min-width: 130px;
    justify-content: center;
}
.t9-promo-box:hover { background: rgba(139,154,70,0.18); }
.t9-promo-text { font-family: 'SFMono-Regular', Consolas, monospace; font-weight: 700; font-size: 1rem; color: var(--t9-accent-dark); letter-spacing: 1px; }
.t9-copy-icon { color: var(--t9-accent); }
.copy-tooltip-x { position: absolute; bottom: -40px; left: 50%; transform: translateX(-50%); background: var(--t9-dark); color: #fff; padding: 6px 14px; border-radius: var(--t9-r); 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(--t9-dark); }
.copy-tooltip-x.visible { opacity: 1; bottom: -45px; }

/* City Tags */
.t9-city-list { display: flex; flex-wrap: wrap; gap: 10px; }
.t9-city-tag {
    padding: 8px 18px;
    background: var(--t9-bg);
    border: 1px solid var(--t9-border);
    color: var(--t9-text);
    text-decoration: none;
    border-radius: var(--t9-r);
    font-size: 0.88rem;
    font-weight: 500;
    transition: all 0.25s;
}
.t9-city-tag:hover { background: var(--t9-accent); color: #fff; border-color: var(--t9-accent); }
.t9-city-tag-more { border-style: dashed; background: transparent; color: var(--t9-accent-dark); }

/* Accordion */
.t9-accordion {
    background: var(--t9-bg);
    border: 1px solid var(--t9-border);
    border-radius: var(--t9-r);
    margin-bottom: 8px;
    overflow: hidden;
}
.t9-accordion summary {
    padding: 20px 24px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--t9-dark);
    cursor: pointer;
    list-style: none;
    position: relative;
    user-select: none;
    transition: background 0.2s;
    letter-spacing: 0.2px;
}
.t9-accordion summary:hover { background: var(--t9-bg-alt); }
.t9-accordion summary::-webkit-details-marker { display: none; }
.t9-accordion summary::after {
    content: '+';
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--t9-accent);
    transition: transform 0.3s;
}
.t9-accordion[open] summary::after {
    content: '\2212';
}
.t9-accordion .t9-accordion-content {
    padding: 0 24px 24px;
    border-top: 1px solid var(--t9-border);
    margin-top: 4px;
    padding-top: 18px;
    color: var(--t9-muted);
    line-height: 1.75;
}

/* Prose */
.t9-prose h2 { margin-top: 2rem; margin-bottom: 1rem; color: var(--t9-dark); letter-spacing: 0.3px; }
.t9-prose h3 { margin-top: 1.5rem; margin-bottom: 0.8rem; color: var(--t9-dark); }
.t9-prose ul { padding-left: 0; margin: 15px 0; list-style: none; }
.t9-prose li { margin-bottom: 10px; padding-left: 20px; position: relative; }
.t9-prose li::before { content: ''; position: absolute; left: 0; top: 10px; width: 6px; height: 6px; background: var(--t9-accent); border-radius: 50%; }
.t9-prose strong { color: var(--t9-dark); }

/* ===== ERROR ===== */
.t9-error-page { padding: 100px 20px; max-width: 500px; margin: 0 auto; text-align: center; }
.t9-error-code { font-size: 8rem; font-weight: 700; line-height: 1; color: var(--t9-accent); margin-bottom: 10px; letter-spacing: -2px; }
.t9-error-title { font-size: 1.5rem; font-weight: 700; color: var(--t9-dark); margin-bottom: 12px; letter-spacing: 0.5px; }
.t9-error-desc { font-size: 1rem; color: var(--t9-muted); margin-bottom: 30px; line-height: 1.7; }
.t9-error-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* ===== GEO PAGE ===== */
.t9-geo-container { max-width: var(--t9-w); }
.t9-hub-list-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 18px; }
.t9-hub-summary {
    background: var(--t9-bg);
    border: 1px solid var(--t9-border);
    border-radius: var(--t9-r);
    padding: 22px;
    transition: border-color 0.25s, box-shadow 0.25s;
}
.t9-hub-summary:hover { border-color: var(--t9-accent); box-shadow: var(--t9-shadow); }
.t9-hub-summary-head { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.t9-hub-summary-logo { width: 44px; height: 44px; object-fit: contain; border-radius: var(--t9-r); }
.t9-hub-summary-title { font-weight: 700; font-size: 1.05rem; color: var(--t9-dark); text-decoration: none; }
.t9-hub-summary-title:hover { color: var(--t9-accent); }
.t9-hub-summary-specs { display: flex; flex-wrap: wrap; gap: 6px; }
.t9-hub-summary-spec { font-size: 0.82rem; color: var(--t9-muted); background: var(--t9-bg-alt); padding: 4px 10px; border-radius: var(--t9-r); }
.t9-geo-info-grid { margin-top: 15px; }
.t9-geo-promo-wrap { margin-top: 15px; }
.t9-geo-items-wrap { margin-top: 20px; }
.t9-geo-show-more { text-align: center; margin-top: 15px; }
.t9-geo-apps-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px; justify-content: center; }
.t9-app-btn { display: inline-block; line-height: 0; }
.t9-app-btn-img { height: 44px; width: auto; display: block; }
.t9-geo-hub-footer { margin-top: 20px; text-align: right; }
.t9-geo-zone-desc { margin-top: 20px; padding: 16px 20px; background: var(--t9-accent-glow); border-left: 3px solid var(--t9-accent); border-radius: var(--t9-r); font-size: 0.93rem; color: var(--t9-muted); }
.geo-map { width: 100%; height: 420px; background: var(--t9-bg-alt); border-radius: var(--t9-r); margin-top: 14px; border: 1px solid var(--t9-border); }

/* ===== HUB PAGE ===== */
.t9-hub-logo-wrap {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--t9-border);
}
.t9-hub-logo-img { height: 68px; object-fit: contain; border-radius: var(--t9-r); }
.t9-hub-title-text { margin: 0; font-size: 32px; font-weight: 700; color: var(--t9-dark); letter-spacing: -0.3px; }
.t9-hub-sidebar {}
.t9-hub-specs-title { margin-top: 20px; }
.t9-mini-link { text-decoration: none; color: inherit; display: block; text-align: center; }
.t9-mini-name { font-weight: 600; font-size: 0.9rem; }
.t9-app-col { display: flex; flex-direction: column; gap: 10px; }

/* ===== ITEM PAGE ===== */
.t9-item-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.t9-item-img-wrap { display: flex; justify-content: center; align-items: center; background: var(--t9-bg-alt); border-radius: var(--t9-r); padding: 24px; border: 1px solid var(--t9-border); }
.t9-item-h1 { margin-bottom: 24px; }
.t9-item-img { max-width: 100%; height: auto; object-fit: contain; }
.t9-item-specs-title { margin-top: 0; }
.t9-hub-info-row { display: flex; align-items: center; gap: 15px; flex-wrap: wrap; }
.t9-hub-info-logo { width: 44px; height: 44px; object-fit: contain; border-radius: var(--t9-r); }
.t9-hub-info-meta {}
.t9-hub-info-label { font-size: 0.82rem; color: var(--t9-muted); text-transform: uppercase; letter-spacing: 0.5px; }
.t9-hub-info-name { font-weight: 700; font-size: 1.15rem; text-decoration: none; color: inherit; }
.t9-hub-info-name:hover { color: var(--t9-accent); }
.t9-app-buttons { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 15px; }
.t9-city-tag-more { border-style: dashed; background: transparent; color: var(--t9-accent-dark); }

/* Items Mini Grid */
.t9-items-mini-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 14px; }
.t9-items-mini-card {
    background: var(--t9-bg);
    border: 1px solid var(--t9-border);
    border-radius: var(--t9-r);
    padding: 14px;
    transition: border-color 0.25s;
}
.t9-items-mini-card:hover { border-color: var(--t9-accent); box-shadow: var(--t9-shadow-sm); }
.t9-items-mini-img { width: 100%; height: 80px; object-fit: contain; margin-bottom: 8px; }

/* ===== FOOTER — light warm gray, structured columns, olive links ===== */
.t9-footer {
    background: var(--t9-bg-alt);
    color: var(--t9-muted);
    padding: 64px 0 32px;
    margin-top: 72px;
    font-size: 0.9rem;
    border-top: 1px solid var(--t9-border);
}
.t9-footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; }
.t9-footer-brand h2 { color: var(--t9-dark); margin-bottom: 16px; font-size: 1.15rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.t9-footer-col h3 { color: var(--t9-dark); font-size: 0.85rem; margin-bottom: 16px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.t9-footer-nav { list-style: none; padding: 0; margin: 0; }
.t9-footer-nav li { margin-bottom: 10px; }
.t9-footer-nav a { color: var(--t9-muted); transition: color 0.2s; }
.t9-footer-nav a:hover { color: var(--t9-accent); }
.t9-footer p { line-height: 1.65; color: var(--t9-muted); }
.t9-footer-bottom {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid var(--t9-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    color: var(--t9-light);
    font-size: 0.83rem;
}
.t9-footer-btm-links { display: flex; gap: 20px; }
.t9-footer-btm-links a { color: var(--t9-muted); }
.t9-footer-btm-links a:hover { color: var(--t9-accent); }

/* ===== PRICING ===== */
.t9-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    align-items: start;
}
.t9-pricing-card {
    background: var(--t9-bg);
    border: 1px solid var(--t9-border);
    border-radius: var(--t9-r);
    padding: 32px 28px;
    transition: border-color 0.3s, box-shadow 0.3s;
    position: relative;
    text-align: center;
}
.t9-pricing-card:hover {
    border-color: var(--t9-accent);
    box-shadow: var(--t9-shadow);
}
.t9-pricing-popular {
    border: 2px solid var(--t9-accent);
    box-shadow: var(--t9-shadow);
    transform: scale(1.03);
}
.t9-pricing-popular:hover { transform: scale(1.03) translateY(-2px); }
.t9-pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--t9-accent);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 18px;
    border-radius: var(--t9-r);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
}
.t9-pricing-logo {
    width: 72px; height: 72px; object-fit: contain;
    margin: 0 auto 14px; display: block; border-radius: var(--t9-r);
}
.t9-pricing-name { font-size: 1.15rem; font-weight: 700; color: var(--t9-dark); margin: 0 0 8px; }
.t9-pricing-desc { font-size: 0.88rem; color: var(--t9-muted); margin: 0 0 20px; }
.t9-pricing-price { margin-bottom: 24px; }
.t9-pricing-amount { font-size: 2.2rem; font-weight: 700; color: var(--t9-dark); letter-spacing: -1px; }
.t9-pricing-period { font-size: 0.88rem; color: var(--t9-muted); }
.t9-pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    text-align: left;
}
.t9-pricing-features li {
    padding: 8px 0;
    border-bottom: 1px solid var(--t9-border);
    font-size: 0.9rem;
    color: var(--t9-text);
    padding-left: 22px;
    position: relative;
}
.t9-pricing-features li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--t9-accent);
    font-weight: 700;
}

/* ===== TESTIMONIALS ===== */
.t9-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}
.t9-testimonial-card {
    background: var(--t9-bg);
    border: 1px solid var(--t9-border);
    border-radius: var(--t9-r);
    padding: 28px;
    transition: border-color 0.25s;
    position: relative;
}
.t9-testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 12px;
    left: 22px;
    font-size: 3.5rem;
    line-height: 1;
    color: var(--t9-accent-glow);
    font-family: Georgia, serif;
}
.t9-testimonial-card:hover { border-color: var(--t9-accent); }
.t9-testimonial-text {
    font-size: 0.93rem;
    color: var(--t9-text);
    line-height: 1.75;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}
.t9-testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.t9-testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--t9-border);
}
.t9-testimonial-name { font-weight: 700; font-size: 0.93rem; color: var(--t9-dark); }
.t9-testimonial-role { font-size: 0.82rem; color: var(--t9-muted); }

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .t9-footer-grid { grid-template-columns: 1fr 1fr; }
    .t9-item-hero { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .t9-hero { padding: 56px 0 46px; }
    .t9-h1 { font-size: 28px; letter-spacing: -0.3px; }
    .t9-hero-sub { font-size: 1rem; }
    .t9-section { padding: 44px 0; }
    .t9-section-card { padding: 20px; margin-bottom: 18px; }
    .t9-grid-ms { grid-template-columns: 1fr; }
    .t9-grid-auto { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 16px; }
    .t9-grid-2 { grid-template-columns: 1fr; }
    .t9-info-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .t9-promo-grid { grid-template-columns: 1fr; }
    .t9-promo-modern { flex-direction: column; gap: 14px; text-align: center; }
    .t9-hub-title-text { font-size: 24px; }
    .t9-footer-bottom { flex-direction: column; text-align: center; }
    .t9-top-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .t9-top-specs { display: none; }
    .t9-features-grid { grid-template-columns: 1fr 1fr; }

    .burger-btn { display: flex; }
    .t9-nav-list {
        display: none;
        position: fixed;
        top: 68px; left: 0; right: 0;
        flex-direction: column;
        background: #fff;
        padding: 12px 24px;
        gap: 0;
        box-shadow: 0 16px 32px rgba(0,0,0,0.08);
        z-index: 100;
        height: auto;
        border-bottom: 1px solid var(--t9-border);
    }
    .t9-nav-list.menu-open, .t9-nav-list[data-nav].menu-open { display: flex; }
    .t9-nav-list li { border-bottom: 1px solid var(--t9-border); }
    .t9-nav-list li:last-child .t9-nav-link { background: none; color: var(--t9-accent-dark); border-radius: 0; padding: 14px 0; }
    .t9-nav-link { height: auto; padding: 14px 0; font-size: 1rem; border-radius: 0; }
}

@media (max-width: 480px) {
    .t9-info-grid { grid-template-columns: 1fr; }
    .t9-header-inner { padding: 0 16px; }
    .t9-container { padding: 0 16px; }
    .t9-features-grid { grid-template-columns: 1fr; }
    .t9-hero-actions { flex-direction: column; align-items: center; }
    .t9-footer-grid { grid-template-columns: 1fr; }
    .t9-top-grid { grid-template-columns: 1fr; }
}



/* ============================================================
   AUTO-PATCHED: новые блоки для theme_009
   ============================================================ */

/* Hero service */
.t9-hero-wrapper { max-width: 760px; margin: 0 auto; text-align: center; }
.t9-lead { font-size: 1.15rem; color: #555; margin: 0 0 20px; line-height: 1.6; text-align: center; }
.t9-hero-sub { font-size: 1rem; color: #666; margin: 0 0 24px; text-align: center; }
.t9-hero-btn-wrap { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; justify-content: center; }
.t9-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 #8B9A46; background: transparent; color: #8B9A46; text-decoration: none; transition: all 0.2s; }
.t9-btn-secondary:hover { background: rgba(139,154,70,0.12); }
.t9-btn-lg { padding: 14px 32px; font-size: 1.05rem; }

/* Trust bar */
.t9-trust-bar { display: flex; gap: 24px; flex-wrap: wrap; margin: 24px 0; padding: 20px 24px; background: rgba(139,154,70,0.12); border-radius: 12px; }
.t9-trust-item { display: flex; align-items: center; gap: 12px; }
.t9-trust-icon { font-size: 1.5rem; }
.t9-trust-text { display: flex; flex-direction: column; }
.t9-trust-text strong { font-size: 1.1rem; font-weight: 700; color: #2a2e1a; }
.t9-trust-text span { font-size: 0.8rem; color: #777; }

/* Steps */
.t9-steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; margin-top: 32px; }
.t9-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 #8B9A46; }
.t9-step-num { font-size: 2rem; font-weight: 800; color: #8B9A46; opacity: 0.3; margin-bottom: 12px; }
.t9-step-title { font-size: 1rem; font-weight: 700; color: #2a2e1a; margin-bottom: 8px; }
.t9-step-text { font-size: 0.9rem; color: #666; line-height: 1.5; margin: 0; }

/* Tariffs */
.t9-tariffs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; margin-top: 32px; }
.t9-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; }
.t9-tariff-highlighted { border-color: #8B9A46; box-shadow: 0 8px 32px rgba(139,154,70,0.12); position: relative; }
.t9-tariff-header { margin-bottom: 20px; }
.t9-tariff-title { font-size: 1.15rem; font-weight: 700; color: #2a2e1a; margin: 0 0 4px; }
.t9-tariff-features { list-style: none; padding: 0; margin: 0 0 24px; flex: 1; }
.t9-tariff-features li { padding: 8px 0; border-bottom: 1px solid #f0f0f0; font-size: 0.9rem; color: #555; }
.t9-tariff-features li::before { content: "✓ "; color: #8B9A46; font-weight: 700; }

/* CTA section */
.t9-cta-section { background: rgba(139,154,70,0.12); border: 2px solid #8B9A46; color: #2a2e1a; text-align: center; padding: 60px 20px; border-radius: 16px; margin: 0; }
.t9-cta-section h2 { color: #2a2e1a; font-size: 2rem; margin-bottom: 16px; }
.t9-cta-section p { color: #444; font-size: 1.1rem; margin-bottom: 28px; }
.t9-cta-section .t9-section-title { color: #2a2e1a; }
.t9-cta-section .t9-lead { color: #444; }

/* FAQ */
.t9-faq-list { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }

/* Features */
.t9-feature-icon { font-size: 2rem; margin-bottom: 12px; }
.t9-feature-title { font-size: 1rem; font-weight: 700; color: #2a2e1a; margin-bottom: 8px; }
.t9-feature-desc { font-size: 0.9rem; color: #666; line-height: 1.5; margin: 0; }

/* Prose */
.t9-prose { max-width: 800px; line-height: 1.8; color: #444; }
.t9-prose h2, .t9-prose h3 { color: #2a2e1a; }

/* Utility */
.t9-hub-all-link { display: inline-block; margin-top: 16px; color: #8B9A46; font-weight: 600; text-decoration: none; }
.t9-hub-all-link:hover { color: #6E7A35; text-decoration: underline; }
.t9-btn-outline { border: 2px solid #8B9A46; color: #8B9A46; 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; }
.t9-btn-outline:hover { background: rgba(139,154,70,0.12); }
.t9-show-more { text-align: center; margin-top: 24px; }
.t9-mt-20 { margin-top: 20px; }
.t9-max-800 { max-width: 800px; }
.t9-m-auto { margin-left: auto; margin-right: auto; }
.t9-flex-center { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }
.t9-hidden { display: none; }
.t9-flex-sb { display: flex; justify-content: space-between; align-items: baseline; flex-wrap: wrap; gap: 8px; }
.t9-mb-0 { margin-bottom: 0; }
.t9-badge-accent { background: #8B9A46; color: #fff; padding: 2px 10px; border-radius: 20px; font-size: 0.75rem; font-weight: 600; }
.t9-card-link { text-decoration: none; color: inherit; display: block; }
.t9-badge-wrap { display: flex; flex-wrap: wrap; gap: 6px; }
.t9-mb-15 { margin-bottom: 15px; }
.t9-mb-30 { margin-bottom: 30px; }
.t9-pt-0 { padding-top: 0; }
.t9-pt-10 { padding-top: 10px; }
.t9-pt-20 { padding-top: 20px; }
.t9-pt-30 { padding-top: 30px; }
.t9-body { background: #f8fafb; }
.t9-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 — в самом конце */
.t9-cta-section.t9-cta-section .t9-section-title { color: #2a2e1a; }
.t9-cta-section.t9-cta-section .t9-section-title::after { background: #8B9A46; }
.t9-cta-section.t9-cta-section .t9-lead { color: #444; }
