:root {
    --t4-accent: #A5D6A7;
    --t4-accent-dark: #43A047;
    --t4-accent-glow: rgba(165,214,167,0.18);
    --t4-accent-gradient: linear-gradient(135deg, #A5D6A7 0%, #66BB6A 100%);
    --t4-dark: #2E3B34;
    --t4-text: #5A6B62;
    --t4-muted: #8FA39A;
    --t4-light: #D4E5DC;
    --t4-bg: #ffffff;
    --t4-bg-alt: #F6FAF7;
    --t4-bg-hero: linear-gradient(170deg, #F0F8F1 0%, #ffffff 45%, #F7FBF8 100%);
    --t4-border: #E8F0EB;
    --t4-r: 18px;
    --t4-r-sm: 12px;
    --t4-r-pill: 50px;
    --t4-shadow-sm: 0 2px 12px rgba(46,59,52,0.03);
    --t4-shadow: 0 8px 32px rgba(46,59,52,0.05);
    --t4-shadow-lg: 0 20px 56px rgba(46,59,52,0.07);
    --t4-font: 'Inter', system-ui, -apple-system, sans-serif;
    --t4-w: 1100px;
}

*, *::before, *::after { box-sizing: border-box; }

body, .t4-body {
    background: var(--t4-bg);
    color: var(--t4-text);
    font-family: var(--t4-font);
    margin: 0;
    line-height: 1.8;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
}
a { color: var(--t4-accent-dark); text-decoration: none; }
a:hover { color: #2E7D32; text-decoration: none; }

/* ===== HEADER — transparent, ethereal, thin ===== */
.t4-header {
    background: rgba(255,255,255,0.72);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(165,214,167,0.15);
}
.t4-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--t4-w);
    margin: 0 auto;
    padding: 0 32px;
    height: 76px;
}
.t4-logo {
    font-size: 19px;
    font-weight: 400;
    color: var(--t4-dark);
    text-decoration: none;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.t4-nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 4px;
    align-items: center;
    height: 76px;
}
.t4-nav-link {
    display: flex;
    align-items: center;
    padding: 8px 18px;
    font-size: 0.88rem;
    font-weight: 400;
    color: var(--t4-text);
    text-decoration: none;
    border-radius: var(--t4-r-sm);
    transition: all 0.25s;
    height: auto;
    border-bottom: none;
    letter-spacing: 0.3px;
}
.t4-nav-link:hover {
    background: var(--t4-accent-glow);
    color: var(--t4-accent-dark);
}
/* Last nav item as CTA button */
.t4-nav-list li:last-child .t4-nav-link {
    background: var(--t4-accent-dark);
    color: #fff;
    font-weight: 500;
    padding: 9px 24px;
    border-radius: var(--t4-r-sm);
}
.t4-nav-list li:last-child .t4-nav-link:hover {
    opacity: 0.88;
    transform: translateY(-1px);
}

/* 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(--t4-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 — airy, organic curves, large whitespace ===== */
.t4-hero {
    background: var(--t4-bg-hero);
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
}
.t4-hero::before {
    content: '';
    position: absolute;
    top: -200px; right: -120px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(165,214,167,0.15) 0%, transparent 60%);
    border-radius: 50%;
}
.t4-hero::after {
    content: '';
    position: absolute;
    bottom: -150px; left: -100px;
    width: 450px; height: 450px;
    background: radial-gradient(circle, rgba(129,199,132,0.10) 0%, transparent 60%);
    border-radius: 50%;
}
.t4-h1 {
    font-size: 46px;
    font-weight: 300;
    color: var(--t4-dark);
    margin-bottom: 24px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}
.t4-hero-sub {
    font-size: 1.1rem;
    color: var(--t4-muted);
    max-width: 540px;
    margin: 0 auto 44px;
    line-height: 1.85;
    font-weight: 300;
}
.t4-hero-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}
.t4-hero-btn {
    padding: 15px 38px;
    font-size: 0.93rem;
    border-radius: var(--t4-r-sm);
    box-shadow: 0 4px 18px rgba(67,160,71,0.2);
}

/* ===== BUTTONS — soft rounded, pastel green ===== */
.t4-btn-primary {
    background: var(--t4-accent-dark);
    color: #fff;
    padding: 14px 38px;
    border-radius: var(--t4-r-sm);
    display: inline-block;
    font-weight: 500;
    font-size: 0.93rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    box-shadow: 0 4px 18px rgba(67,160,71,0.2);
    letter-spacing: 0.3px;
}
.t4-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(67,160,71,0.28);
    color: #fff;
    background: #388E3C;
}
.t4-btn-outline {
    background: transparent;
    color: var(--t4-accent-dark);
    border: 1.5px solid var(--t4-accent);
    padding: 13px 34px;
    border-radius: var(--t4-r-sm);
    font-size: 0.93rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s;
    display: inline-block;
    text-decoration: none;
}
.t4-btn-outline:hover { background: var(--t4-accent-glow); color: var(--t4-accent-dark); }

/* ===== BREADCRUMBS ===== */
.t4-breadcrumbs { padding: 16px 0; background: var(--t4-bg-alt); }
.t4-bc-list { display: flex; flex-wrap: wrap; list-style: none; margin: 0; padding: 0; font-size: 0.83rem; font-weight: 400; }
.t4-bc-item { display: flex; align-items: center; color: var(--t4-muted); }
.t4-bc-item a { color: var(--t4-accent-dark); }
.t4-bc-item a:hover { text-decoration: underline; }
.t4-bc-item + .t4-bc-item::before { content: "\203A"; margin: 0 10px; color: var(--t4-light); font-size: 1.1rem; }
.t4-bc-item:last-child span { color: var(--t4-dark); font-weight: 500; }

/* ===== LAYOUT ===== */
.t4-section { padding: 80px 0; }
.t4-section:nth-child(even) { background: var(--t4-bg-alt); }
.t4-container { max-width: var(--t4-w); margin: 0 auto; padding: 0 32px; }
.t4-text-center { text-align: center; }
.t4-text-sm { font-size: 0.85rem; }
.t4-text-muted { color: var(--t4-muted); }
.t4-subtitle { font-size: 1.08rem; color: var(--t4-muted); font-weight: 300; }
.t4-mb-0 { margin-bottom: 0 !important; }
.t4-mb-15 { margin-bottom: 15px; }
.t4-mb-30 { margin-bottom: 30px; }
.t4-mt-20 { margin-top: 20px; }
.t4-pt-0 { padding-top: 0 !important; }
.t4-pt-10 { padding-top: 10px !important; }
.t4-pt-20 { padding-top: 20px !important; }
.t4-pt-30 { padding-top: 30px !important; }
.t4-max-800 { max-width: 800px; }
.t4-m-auto { margin: 0 auto; }
.t4-hidden { display: none !important; }
.t4-flex-sb { display: flex; justify-content: space-between; align-items: baseline; }
.t4-flex-center { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }
.t4-bg-alt { background: var(--t4-bg-alt); }
.t4-bg-white { background: var(--t4-bg); }
.t4-bg-page { background: var(--t4-bg); }
.t4-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; }
.t4-grid-auto { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 26px; }

/* ===== SECTION TITLE — light weight with leaf-shaped green dot ===== */
.t4-section-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--t4-dark);
    margin-bottom: 32px;
    letter-spacing: -0.3px;
    position: relative;
    display: inline-block;
    padding-left: 22px;
}
.t4-section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    background: var(--t4-accent);
    border-radius: 50% 2px;
}
.t4-section-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--t4-accent-glow);
    color: var(--t4-accent-dark);
    font-size: 0.72rem;
    font-weight: 600;
    padding: 3px 12px;
    border-radius: var(--t4-r-pill);
    margin-left: 10px;
    vertical-align: middle;
}

/* ===== FEATURES — floating cards, icon circles with pastel bg ===== */
.t4-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 28px;
}
.t4-feature-card {
    background: var(--t4-bg);
    border-radius: var(--t4-r);
    padding: 40px 30px 32px;
    position: relative;
    box-shadow: var(--t4-shadow-sm);
    border: none;
    transition: all 0.4s ease;
    text-align: center;
}
.t4-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--t4-shadow);
}
.t4-feature-icon {
    width: 56px;
    height: 56px;
    background: var(--t4-accent-glow);
    color: var(--t4-accent-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 22px;
    transition: all 0.3s;
}
.t4-feature-card:hover .t4-feature-icon {
    background: var(--t4-accent);
    color: #fff;
}
.t4-feature-title { font-size: 1.02rem; font-weight: 600; color: var(--t4-dark); margin: 0 0 10px; }
.t4-feature-desc { font-size: 0.88rem; color: var(--t4-muted); margin: 0; line-height: 1.7; font-weight: 300; }

/* ===== TOP HUB CARDS — tall vertical, centered, image circles ===== */
.t4-top-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 22px;
}
.t4-top-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    background: var(--t4-bg);
    border-radius: var(--t4-r);
    padding: 36px 22px 28px;
    text-decoration: none;
    color: var(--t4-text);
    box-shadow: var(--t4-shadow-sm);
    transition: all 0.35s;
}
.t4-top-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--t4-shadow);
}
.t4-top-img-wrap {
    width: 72px; height: 72px; min-width: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--t4-accent-glow);
    border-radius: 50%;
    padding: 10px;
}
.t4-top-img { max-width: 100%; max-height: 100%; object-fit: contain; }
.t4-top-name { font-size: 0.95rem; font-weight: 600; color: var(--t4-dark); line-height: 1.3; }
.t4-top-meta { font-size: 0.82rem; color: var(--t4-accent-dark); font-weight: 500; margin-top: 2px; }
.t4-top-specs { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 6px; justify-content: center; }
.t4-top-spec { font-size: 0.75rem; color: var(--t4-muted); background: var(--t4-bg-alt); padding: 2px 10px; border-radius: var(--t4-r-sm); }
.t4-top-spec strong { color: var(--t4-dark); }

/* ===== CARDS — no borders, very soft shadows ===== */
.t4-card {
    background: var(--t4-bg);
    border: none;
    border-radius: var(--t4-r);
    padding: 30px;
    box-shadow: var(--t4-shadow-sm);
    transition: all 0.35s;
    margin-bottom: 22px;
}
.t4-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--t4-shadow);
}
.t4-card-title { font-size: 1.08rem; font-weight: 600; color: var(--t4-dark); margin-bottom: 8px; }
.t4-card-price { color: var(--t4-accent-dark); font-weight: 700; font-size: 1.15rem; }
.t4-spec-list { display: flex; flex-direction: column; }
.t4-card-flex { display: flex; flex-direction: column; justify-content: space-between; height: 100%; }
.t4-card-desc { font-size: 0.9rem; color: var(--t4-muted); display: -webkit-box; -webkit-line-clamp: 3; line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 20px; font-weight: 300; }
.t4-btn-full { display: block; text-align: center; }
.t4-card-img-wrap { height: 100px; background: var(--t4-bg-alt); margin-bottom: 10px; display: flex; justify-content: center; align-items: center; overflow: hidden; border-radius: var(--t4-r-sm); }
.t4-card-link { text-decoration: none; color: inherit; display: block; }
.t4-card-link:hover { text-decoration: none; }
.t4-badge-wrap { margin-bottom: 6px; }
.t4-badge-sm { background: var(--t4-bg-alt); padding: 4px 12px; border-radius: var(--t4-r-pill); font-size: 0.8rem; font-weight: 400; }
.t4-badge-accent { background: var(--t4-accent-glow); color: var(--t4-accent-dark); font-weight: 500; }
.t4-show-more { text-align: center; margin-top: 32px; }
.t4-all-link { color: var(--t4-accent-dark); font-weight: 500; font-size: 0.95rem; text-decoration: none; display: inline-flex; align-items: center; gap: 4px; }
.t4-all-link:hover { color: #2E7D32; }

/* ===== HUBS — soft pastel pills ===== */
.t4-hub-title { margin-bottom: 32px; font-size: 1.9rem; font-weight: 600; color: var(--t4-dark); letter-spacing: -0.3px; }
.t4-hub-list { display: flex; flex-wrap: wrap; gap: 12px; }
.t4-hub-item {
    padding: 10px 24px;
    background: var(--t4-bg);
    border: none;
    border-radius: var(--t4-r-sm);
    text-decoration: none;
    color: var(--t4-text);
    font-size: 0.91rem;
    font-weight: 400;
    transition: all 0.25s;
    box-shadow: var(--t4-shadow-sm);
}
.t4-hub-item:hover {
    background: var(--t4-accent-glow);
    color: var(--t4-accent-dark);
    transform: translateY(-2px);
    box-shadow: var(--t4-shadow);
}
.t4-hub-badge {
    padding: 18px 24px;
    background: var(--t4-bg);
    border: none;
    border-radius: var(--t4-r);
    text-decoration: none;
    color: var(--t4-text);
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 500;
    transition: all 0.3s;
    box-shadow: var(--t4-shadow-sm);
}
.t4-hub-badge:hover {
    box-shadow: var(--t4-shadow);
    transform: translateY(-2px);
}

/* ===== DETAIL PAGES ===== */
.t4-grid-ms { display: grid; grid-template-columns: 1fr 320px; gap: 44px; }
.t4-sticky { position: sticky; top: 96px; }
.t4-item-row { display: flex; justify-content: space-between; padding: 13px 0; }
.t4-border-b { border-bottom: 1px solid var(--t4-border); }
.t4-card-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 20px; }

/* Section Card */
.t4-section-card {
    background: var(--t4-bg);
    border: none;
    border-radius: var(--t4-r);
    padding: 40px;
    margin-bottom: 28px;
    box-shadow: var(--t4-shadow);
}

/* Info Grid */
.t4-info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; }
.t4-info-item {
    padding: 20px;
    background: var(--t4-bg-alt);
    border-radius: var(--t4-r-sm);
    border-left: 3px solid var(--t4-accent);
}
.t4-info-label { display: block; font-size: 0.78rem; color: var(--t4-muted); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.6px; font-weight: 400; }
.t4-info-value { display: block; font-weight: 600; color: var(--t4-dark); font-size: 1.02rem; }

/* Contacts */
.t4-contact-row { display: flex; align-items: center; gap: 15px; margin-bottom: 12px; }
.t4-social-links { display: flex; gap: 10px; }
.t4-social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px; height: 46px;
    border-radius: 50%;
    background: var(--t4-accent-glow);
    color: var(--t4-accent-dark);
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 600;
}
.t4-social-btn:hover {
    background: var(--t4-accent-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(67,160,71,0.2);
}

/* Promo */
.t4-promo-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 20px; margin-top: 20px; }
.t4-promo-modern {
    background: var(--t4-bg);
    border: none;
    border-radius: var(--t4-r);
    padding: 26px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--t4-shadow-sm);
    transition: all 0.3s;
}
.t4-promo-modern:hover { transform: translateY(-3px); box-shadow: var(--t4-shadow); }
.t4-promo-info h3 { margin: 0 0 4px; font-size: 1rem; color: var(--t4-dark); font-weight: 600; }
.t4-promo-sub { margin: 0; font-size: 0.82rem; color: var(--t4-muted); }
.t4-promo-wrap { position: relative; }
.t4-promo-box {
    background: var(--t4-accent-glow);
    border: 1.5px dashed var(--t4-accent);
    padding: 12px 22px;
    border-radius: var(--t4-r-sm);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s;
    min-width: 130px;
    justify-content: center;
}
.t4-promo-box:hover { background: rgba(165,214,167,0.25); }
.t4-promo-text { font-family: 'SFMono-Regular', Consolas, monospace; font-weight: 700; font-size: 1.02rem; color: var(--t4-accent-dark); letter-spacing: 1px; }
.t4-copy-icon { color: var(--t4-accent-dark); }
.copy-tooltip-x { position: absolute; bottom: -40px; left: 50%; transform: translateX(-50%); background: var(--t4-dark); color: #fff; padding: 6px 14px; border-radius: 8px; font-size: 12px; font-weight: 500; 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(--t4-dark); }
.copy-tooltip-x.visible { opacity: 1; bottom: -45px; }

/* City Tags */
.t4-city-list { display: flex; flex-wrap: wrap; gap: 10px; }
.t4-city-tag {
    padding: 8px 20px;
    background: var(--t4-bg);
    border: none;
    color: var(--t4-text);
    text-decoration: none;
    border-radius: var(--t4-r-sm);
    font-size: 0.88rem;
    font-weight: 400;
    transition: all 0.25s;
    box-shadow: var(--t4-shadow-sm);
}
.t4-city-tag:hover { background: var(--t4-accent-glow); color: var(--t4-accent-dark); box-shadow: var(--t4-shadow); }
.t4-city-tag-more { box-shadow: none; border: 1.5px dashed var(--t4-light); background: transparent; color: var(--t4-accent-dark); }

/* Accordion */
.t4-accordion {
    background: var(--t4-bg);
    border-radius: var(--t4-r);
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: var(--t4-shadow-sm);
}
.t4-accordion summary {
    padding: 22px 28px;
    font-weight: 500;
    font-size: 1rem;
    color: var(--t4-dark);
    cursor: pointer;
    list-style: none;
    position: relative;
    user-select: none;
    transition: background 0.2s;
}
.t4-accordion summary:hover { background: var(--t4-bg-alt); }
.t4-accordion summary::-webkit-details-marker { display: none; }
.t4-accordion summary::after {
    content: '+';
    position: absolute;
    right: 28px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px; height: 30px;
    background: var(--t4-accent-glow);
    color: var(--t4-accent-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 500;
    transition: all 0.3s;
}
.t4-accordion[open] summary::after {
    content: '-';
    background: var(--t4-accent);
    color: #fff;
    transform: translateY(-50%);
}
.t4-accordion .t4-accordion-content {
    padding: 0 28px 28px;
    border-top: 1px solid var(--t4-border);
    margin-top: 8px;
    padding-top: 20px;
    color: var(--t4-muted);
    line-height: 1.85;
    font-weight: 300;
}

/* Prose */
.t4-prose h2 { margin-top: 2rem; margin-bottom: 1rem; color: var(--t4-dark); font-weight: 600; }
.t4-prose h3 { margin-top: 1.5rem; margin-bottom: 0.8rem; color: var(--t4-dark); font-weight: 600; }
.t4-prose ul { padding-left: 0; margin: 15px 0; list-style: none; }
.t4-prose li { margin-bottom: 10px; padding-left: 22px; position: relative; }
.t4-prose li::before { content: ''; position: absolute; left: 0; top: 10px; width: 8px; height: 8px; background: var(--t4-accent); border-radius: 50% 2px; transform: rotate(45deg); }
.t4-prose strong { color: var(--t4-dark); }

/* ===== ERROR ===== */
.t4-error-page { padding: 120px 20px; max-width: 480px; margin: 0 auto; text-align: center; }
.t4-error-code { font-size: 8rem; font-weight: 300; line-height: 1; color: var(--t4-accent); margin-bottom: 10px; }
.t4-error-title { font-size: 1.5rem; font-weight: 600; color: var(--t4-dark); margin-bottom: 14px; }
.t4-error-desc { font-size: 1rem; color: var(--t4-muted); margin-bottom: 32px; line-height: 1.8; font-weight: 300; }
.t4-error-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* ===== GEO PAGE ===== */
.t4-geo-container { max-width: var(--t4-w); }
.t4-hub-list-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.t4-hub-summary {
    background: var(--t4-bg);
    border: none;
    border-radius: var(--t4-r);
    padding: 26px;
    box-shadow: var(--t4-shadow-sm);
    transition: all 0.3s;
}
.t4-hub-summary:hover { box-shadow: var(--t4-shadow); transform: translateY(-3px); }
.t4-hub-summary-head { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.t4-hub-summary-logo { width: 48px; height: 48px; object-fit: contain; border-radius: 50%; }
.t4-hub-summary-title { font-weight: 600; font-size: 1.08rem; color: var(--t4-dark); text-decoration: none; }
.t4-hub-summary-title:hover { color: var(--t4-accent-dark); }
.t4-hub-summary-specs { display: flex; flex-wrap: wrap; gap: 6px; }
.t4-hub-summary-spec { font-size: 0.82rem; color: var(--t4-muted); background: var(--t4-bg-alt); padding: 4px 10px; border-radius: var(--t4-r-sm); }
.t4-geo-info-grid { margin-top: 15px; }
.t4-geo-promo-wrap { margin-top: 15px; }
.t4-geo-items-wrap { margin-top: 20px; }
.t4-geo-show-more { text-align: center; margin-top: 15px; }
.t4-geo-apps-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px; justify-content: center; }
.t4-app-btn { display: inline-block; line-height: 0; }
.t4-app-btn-img { height: 44px; width: auto; display: block; }
.t4-geo-hub-footer { margin-top: 20px; text-align: right; }
.t4-geo-zone-desc { margin-top: 20px; padding: 18px 24px; background: var(--t4-accent-glow); border-left: 3px solid var(--t4-accent); border-radius: var(--t4-r-sm); font-size: 0.95rem; color: var(--t4-muted); }
.geo-map { width: 100%; height: 420px; background: var(--t4-bg-alt); border-radius: var(--t4-r); margin-top: 14px; }

/* ===== HUB PAGE ===== */
.t4-hub-logo-wrap {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 36px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--t4-border);
}
.t4-hub-logo-img { height: 72px; object-fit: contain; border-radius: 50%; }
.t4-hub-title-text { margin: 0; font-size: 32px; font-weight: 600; color: var(--t4-dark); letter-spacing: -0.3px; }
.t4-hub-sidebar {}
.t4-hub-specs-title { margin-top: 20px; }
.t4-mini-link { text-decoration: none; color: inherit; display: block; text-align: center; }
.t4-mini-name { font-weight: 500; font-size: 0.9rem; }
.t4-app-col { display: flex; flex-direction: column; gap: 10px; }

/* ===== ITEM PAGE ===== */
.t4-item-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; }
.t4-item-img-wrap { display: flex; justify-content: center; align-items: center; background: var(--t4-bg-alt); border-radius: var(--t4-r); padding: 28px; }
.t4-item-h1 { margin-bottom: 24px; }
.t4-item-img { max-width: 100%; height: auto; object-fit: contain; }
.t4-item-specs-title { margin-top: 0; }
.t4-hub-info-row { display: flex; align-items: center; gap: 15px; flex-wrap: wrap; }
.t4-hub-info-logo { width: 48px; height: 48px; object-fit: contain; border-radius: 50%; }
.t4-hub-info-label { font-size: 0.85rem; color: var(--t4-muted); }
.t4-hub-info-name { font-weight: 600; font-size: 1.15rem; text-decoration: none; color: inherit; }
.t4-hub-info-name:hover { color: var(--t4-accent-dark); }
.t4-app-buttons { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 15px; }
.t4-city-tag-more { border-style: dashed; background: transparent; color: var(--t4-accent-dark); }

/* Items Mini Grid */
.t4-items-mini-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 16px; }
.t4-items-mini-card {
    background: var(--t4-bg);
    border: none;
    border-radius: var(--t4-r-sm);
    padding: 16px;
    box-shadow: var(--t4-shadow-sm);
    transition: all 0.3s;
}
.t4-items-mini-card:hover { box-shadow: var(--t4-shadow); transform: translateY(-2px); }
.t4-items-mini-img { width: 100%; height: 80px; object-fit: contain; margin-bottom: 8px; }

/* ===== FOOTER — light gray background, green links ===== */
.t4-footer {
    background: #F4F7F5;
    color: var(--t4-text);
    padding: 72px 0 36px;
    margin-top: 80px;
    font-size: 0.9rem;
    border-top: 1px solid var(--t4-border);
}
.t4-footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; }
.t4-footer-brand h2 { color: var(--t4-dark); margin-bottom: 20px; font-size: 1.2rem; font-weight: 600; }
.t4-footer-col h3 { color: var(--t4-dark); font-size: 0.95rem; margin-bottom: 18px; font-weight: 600; }
.t4-footer-nav { list-style: none; padding: 0; margin: 0; }
.t4-footer-nav li { margin-bottom: 12px; }
.t4-footer-nav a { color: var(--t4-muted); transition: color 0.2s; font-weight: 400; }
.t4-footer-nav a:hover { color: var(--t4-accent-dark); }
.t4-footer p { line-height: 1.7; color: var(--t4-muted); font-weight: 300; }
.t4-footer-bottom {
    margin-top: 56px;
    padding-top: 28px;
    border-top: 1px solid var(--t4-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    color: var(--t4-muted);
    font-size: 0.85rem;
}
.t4-footer-btm-links { display: flex; gap: 20px; }
.t4-footer-btm-links a { color: var(--t4-muted); }
.t4-footer-btm-links a:hover { color: var(--t4-accent-dark); }

/* ===== PRICING ===== */
.t4-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 26px;
    align-items: start;
}
.t4-pricing-card {
    background: var(--t4-bg);
    border-radius: var(--t4-r);
    padding: 40px 34px;
    box-shadow: var(--t4-shadow-sm);
    transition: all 0.35s;
    position: relative;
    text-align: center;
}
.t4-pricing-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--t4-shadow);
}
.t4-pricing-popular {
    border: 1.5px solid var(--t4-accent);
    box-shadow: var(--t4-shadow), 0 0 0 6px var(--t4-accent-glow);
    transform: scale(1.03);
}
.t4-pricing-popular:hover { transform: scale(1.03) translateY(-3px); }
.t4-pricing-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--t4-accent-dark);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 4px 20px;
    border-radius: var(--t4-r-sm);
    white-space: nowrap;
}
.t4-pricing-logo {
    width: 80px; height: 80px; object-fit: contain;
    margin: 0 auto 16px; display: block; border-radius: 50%;
}
.t4-pricing-name { font-size: 1.15rem; font-weight: 600; color: var(--t4-dark); margin: 0 0 8px; }
.t4-pricing-desc { font-size: 0.88rem; color: var(--t4-muted); margin: 0 0 22px; font-weight: 300; }
.t4-pricing-price { margin-bottom: 26px; }
.t4-pricing-amount { font-size: 2.2rem; font-weight: 600; color: var(--t4-dark); letter-spacing: -1px; }
.t4-pricing-period { font-size: 0.9rem; color: var(--t4-muted); font-weight: 300; }
.t4-pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    text-align: left;
}
.t4-pricing-features li {
    padding: 9px 0;
    border-bottom: 1px solid var(--t4-border);
    font-size: 0.9rem;
    color: var(--t4-text);
    padding-left: 24px;
    position: relative;
    font-weight: 400;
}
.t4-pricing-features li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--t4-accent-dark);
    font-weight: 600;
}

/* ===== TESTIMONIALS ===== */
.t4-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 26px;
}
.t4-testimonial-card {
    background: var(--t4-bg);
    border-radius: var(--t4-r);
    padding: 34px;
    box-shadow: var(--t4-shadow-sm);
    transition: all 0.35s;
    position: relative;
}
.t4-testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 18px;
    left: 26px;
    font-size: 3.5rem;
    line-height: 1;
    color: var(--t4-accent-glow);
    font-family: Georgia, serif;
}
.t4-testimonial-card:hover { box-shadow: var(--t4-shadow); }
.t4-testimonial-text {
    font-size: 0.95rem;
    color: var(--t4-text);
    line-height: 1.8;
    margin-bottom: 22px;
    position: relative;
    z-index: 1;
    font-weight: 300;
}
.t4-testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}
.t4-testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--t4-accent-glow);
}
.t4-testimonial-name { font-weight: 600; font-size: 0.95rem; color: var(--t4-dark); }
.t4-testimonial-role { font-size: 0.82rem; color: var(--t4-muted); }

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .t4-footer-grid { grid-template-columns: 1fr 1fr; }
    .t4-item-hero { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .t4-hero { padding: 70px 0 56px; }
    .t4-h1 { font-size: 28px; letter-spacing: -0.3px; }
    .t4-hero-sub { font-size: 1rem; }
    .t4-section { padding: 52px 0; }
    .t4-section-card { padding: 24px; margin-bottom: 20px; }
    .t4-grid-ms { grid-template-columns: 1fr; }
    .t4-grid-auto { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 16px; }
    .t4-grid-2 { grid-template-columns: 1fr; }
    .t4-info-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .t4-promo-grid { grid-template-columns: 1fr; }
    .t4-promo-modern { flex-direction: column; gap: 15px; text-align: center; }
    .t4-hub-title-text { font-size: 24px; }
    .t4-footer-bottom { flex-direction: column; text-align: center; }
    .t4-top-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 12px; }
    .t4-top-specs { display: none; }
    .t4-features-grid { grid-template-columns: 1fr 1fr; }

    .burger-btn { display: flex; }
    .t4-nav-list {
        display: none;
        position: fixed;
        top: 76px; left: 0; right: 0;
        flex-direction: column;
        background: rgba(255,255,255,0.97);
        backdrop-filter: blur(16px);
        padding: 12px 28px;
        gap: 0;
        box-shadow: 0 20px 40px rgba(46,59,52,0.08);
        z-index: 100;
        height: auto;
    }
    .t4-nav-list.menu-open, .t4-nav-list[data-nav].menu-open { display: flex; }
    .t4-nav-list li { border-bottom: 1px solid var(--t4-border); }
    .t4-nav-list li:last-child .t4-nav-link { background: none; color: var(--t4-accent-dark); border-radius: 0; padding: 14px 0; }
    .t4-nav-link { height: auto; padding: 14px 0; font-size: 1rem; border-radius: 0; }
}

@media (max-width: 480px) {
    .t4-info-grid { grid-template-columns: 1fr; }
    .t4-header-inner { padding: 0 16px; }
    .t4-container { padding: 0 16px; }
    .t4-features-grid { grid-template-columns: 1fr; }
    .t4-hero-actions { flex-direction: column; align-items: center; }
    .t4-footer-grid { grid-template-columns: 1fr; }
    .t4-top-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
}



/* ============================================================
   AUTO-PATCHED: новые блоки для theme_004
   ============================================================ */

/* Hero service */
.t4-hero-wrapper { max-width: 760px; margin: 0 auto; text-align: center; }
.t4-lead { font-size: 1.15rem; color: #555; margin: 0 0 20px; line-height: 1.6; text-align: center; }
.t4-hero-sub { font-size: 1rem; color: #666; margin: 0 0 24px; text-align: center; }
.t4-hero-btn-wrap { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; justify-content: center; }
.t4-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 #43A047; background: transparent; color: #43A047; text-decoration: none; transition: all 0.2s; }
.t4-btn-secondary:hover { background: rgba(67,160,71,0.12); }
.t4-btn-lg { padding: 14px 32px; font-size: 1.05rem; }

/* Trust bar */
.t4-trust-bar { display: flex; gap: 24px; flex-wrap: wrap; margin: 24px 0; padding: 20px 24px; background: rgba(67,160,71,0.12); border-radius: 12px; }
.t4-trust-item { display: flex; align-items: center; gap: 12px; }
.t4-trust-icon { font-size: 1.5rem; }
.t4-trust-text { display: flex; flex-direction: column; }
.t4-trust-text strong { font-size: 1.1rem; font-weight: 700; color: #1a2a1a; }
.t4-trust-text span { font-size: 0.8rem; color: #777; }

/* Steps */
.t4-steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; margin-top: 32px; }
.t4-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 #43A047; }
.t4-step-num { font-size: 2rem; font-weight: 800; color: #43A047; opacity: 0.3; margin-bottom: 12px; }
.t4-step-title { font-size: 1rem; font-weight: 700; color: #1a2a1a; margin-bottom: 8px; }
.t4-step-text { font-size: 0.9rem; color: #666; line-height: 1.5; margin: 0; }

/* Tariffs */
.t4-tariffs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; margin-top: 32px; }
.t4-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; }
.t4-tariff-highlighted { border-color: #43A047; box-shadow: 0 8px 32px rgba(67,160,71,0.12); position: relative; }
.t4-tariff-header { margin-bottom: 20px; }
.t4-tariff-title { font-size: 1.15rem; font-weight: 700; color: #1a2a1a; margin: 0 0 4px; }
.t4-tariff-features { list-style: none; padding: 0; margin: 0 0 24px; flex: 1; }
.t4-tariff-features li { padding: 8px 0; border-bottom: 1px solid #f0f0f0; font-size: 0.9rem; color: #555; }
.t4-tariff-features li::before { content: "✓ "; color: #43A047; font-weight: 700; }

/* CTA section */
.t4-cta-section { background: rgba(67,160,71,0.12); border: 2px solid #43A047; color: #1a2a1a; text-align: center; padding: 60px 20px; border-radius: 16px; margin: 0; }
.t4-cta-section h2 { color: #1a2a1a; font-size: 2rem; margin-bottom: 16px; }
.t4-cta-section p { color: #444; font-size: 1.1rem; margin-bottom: 28px; }
.t4-cta-section .t4-section-title { color: #1a2a1a; }
.t4-cta-section .t4-lead { color: #444; }

/* FAQ */
.t4-faq-list { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }

/* Features */
.t4-feature-icon { font-size: 2rem; margin-bottom: 12px; }
.t4-feature-title { font-size: 1rem; font-weight: 700; color: #1a2a1a; margin-bottom: 8px; }
.t4-feature-desc { font-size: 0.9rem; color: #666; line-height: 1.5; margin: 0; }

/* Prose */
.t4-prose { max-width: 800px; line-height: 1.8; color: #444; }
.t4-prose h2, .t4-prose h3 { color: #1a2a1a; }

/* Utility */
.t4-hub-all-link { display: inline-block; margin-top: 16px; color: #43A047; font-weight: 600; text-decoration: none; }
.t4-hub-all-link:hover { color: #2E7D32; text-decoration: underline; }
.t4-btn-outline { border: 2px solid #43A047; color: #43A047; 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; }
.t4-btn-outline:hover { background: rgba(67,160,71,0.12); }
.t4-show-more { text-align: center; margin-top: 24px; }
.t4-mt-20 { margin-top: 20px; }
.t4-max-800 { max-width: 800px; }
.t4-m-auto { margin-left: auto; margin-right: auto; }
.t4-flex-center { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }
.t4-hidden { display: none; }
.t4-flex-sb { display: flex; justify-content: space-between; align-items: baseline; flex-wrap: wrap; gap: 8px; }
.t4-mb-0 { margin-bottom: 0; }
.t4-badge-accent { background: #43A047; color: #fff; padding: 2px 10px; border-radius: 20px; font-size: 0.75rem; font-weight: 600; }
.t4-card-link { text-decoration: none; color: inherit; display: block; }
.t4-badge-wrap { display: flex; flex-wrap: wrap; gap: 6px; }
.t4-mb-15 { margin-bottom: 15px; }
.t4-mb-30 { margin-bottom: 30px; }
.t4-pt-0 { padding-top: 0; }
.t4-pt-10 { padding-top: 10px; }
.t4-pt-20 { padding-top: 20px; }
.t4-pt-30 { padding-top: 30px; }
.t4-body { background: #f8fafb; }
.t4-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 — в самом конце */
.t4-cta-section.t4-cta-section .t4-section-title { color: #1a2a1a; }
.t4-cta-section.t4-cta-section .t4-section-title::after { background: #43A047; }
.t4-cta-section.t4-cta-section .t4-lead { color: #444; }
