:root {
    --t6-accent: #3B82F6;
    --t6-accent-dark: #1E40AF;
    --t6-accent-glow: rgba(59,130,246,0.12);
    --t6-accent-gradient: linear-gradient(135deg, #3B82F6 0%, #1E40AF 100%);
    --t6-dark: #0F172A;
    --t6-text: #334155;
    --t6-muted: #64748B;
    --t6-light: #CBD5E1;
    --t6-bg: #ffffff;
    --t6-bg-alt: #F0F7FF;
    --t6-bg-hero: linear-gradient(170deg, #F0F7FF 0%, #ffffff 50%, #EFF6FF 100%);
    --t6-border: #E2E8F0;
    --t6-r: 12px;
    --t6-r-sm: 8px;
    --t6-r-pill: 50px;
    --t6-shadow-sm: 0 2px 8px rgba(59,130,246,0.06);
    --t6-shadow: 0 8px 30px rgba(59,130,246,0.10);
    --t6-shadow-lg: 0 20px 60px rgba(59,130,246,0.14);
    --t6-font: 'Inter', system-ui, -apple-system, sans-serif;
    --t6-w: 1120px;
}

*, *::before, *::after { box-sizing: border-box; }

body, .t6-body {
    background: var(--t6-bg);
    color: var(--t6-text);
    font-family: var(--t6-font);
    margin: 0;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}
a { color: var(--t6-accent-dark); text-decoration: none; }
a:hover { color: var(--t6-accent); text-decoration: none; }

/* ===== HEADER — white sticky, blue CTA ===== */
.t6-header {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--t6-border);
    box-shadow: 0 1px 4px rgba(15,23,42,0.04);
}
.t6-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--t6-w);
    margin: 0 auto;
    padding: 0 28px;
    height: 72px;
}
.t6-logo {
    font-size: 20px;
    font-weight: 800;
    color: var(--t6-dark);
    text-decoration: none;
    letter-spacing: -0.5px;
}
.t6-nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 6px;
    align-items: center;
    height: 72px;
}
.t6-nav-link {
    display: flex;
    align-items: center;
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--t6-text);
    text-decoration: none;
    border-radius: var(--t6-r-sm);
    transition: all 0.2s;
    height: auto;
    border-bottom: none;
}
.t6-nav-link:hover {
    background: var(--t6-accent-glow);
    color: var(--t6-accent-dark);
}
.t6-nav-list li:last-child .t6-nav-link {
    background: var(--t6-accent-gradient);
    color: #fff;
    font-weight: 600;
    padding: 8px 22px;
    border-radius: 10px;
}
.t6-nav-list li:last-child .t6-nav-link:hover {
    opacity: 0.9;
    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(--t6-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 — blue gradient, confidence-inspiring ===== */
.t6-hero {
    background: var(--t6-bg-hero);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}
.t6-hero::before {
    content: '';
    position: absolute;
    top: -180px; right: -100px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(59,130,246,0.10) 0%, transparent 65%);
    border-radius: 50%;
}
.t6-hero::after {
    content: '';
    position: absolute;
    bottom: -120px; left: -80px;
    width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(30,64,175,0.06) 0%, transparent 65%);
    border-radius: 50%;
}
.t6-h1 {
    font-size: 48px;
    font-weight: 800;
    color: var(--t6-dark);
    margin-bottom: 20px;
    letter-spacing: -1.5px;
    line-height: 1.15;
}
.t6-hero-sub {
    font-size: 1.15rem;
    color: var(--t6-muted);
    max-width: 560px;
    margin: 0 auto 36px;
    line-height: 1.7;
}
.t6-hero-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}
.t6-hero-btn {
    padding: 14px 34px;
    font-size: 0.95rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(59,130,246,0.30);
}

/* ===== BUTTONS — blue gradient, rounded 10px ===== */
.t6-btn-primary {
    background: var(--t6-accent-gradient);
    color: #fff;
    padding: 14px 36px;
    border-radius: 10px;
    display: inline-block;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    box-shadow: 0 4px 18px rgba(59,130,246,0.30);
}
.t6-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(59,130,246,0.40);
    color: #fff;
}
.t6-btn-outline {
    background: transparent;
    color: var(--t6-accent-dark);
    border: 2px solid var(--t6-accent);
    padding: 12px 32px;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s;
    display: inline-block;
    text-decoration: none;
}
.t6-btn-outline:hover { background: var(--t6-accent); color: #fff; }

/* ===== BREADCRUMBS ===== */
.t6-breadcrumbs { padding: 14px 0; background: var(--t6-bg-alt); }
.t6-bc-list { display: flex; flex-wrap: wrap; list-style: none; margin: 0; padding: 0; font-size: 0.84rem; }
.t6-bc-item { display: flex; align-items: center; color: var(--t6-muted); }
.t6-bc-item a { color: var(--t6-accent-dark); }
.t6-bc-item a:hover { text-decoration: underline; }
.t6-bc-item + .t6-bc-item::before { content: "\203A"; margin: 0 10px; color: var(--t6-light); font-size: 1.1rem; }
.t6-bc-item:last-child span { color: var(--t6-dark); font-weight: 600; }

/* ===== LAYOUT ===== */
.t6-section { padding: 72px 0; }
.t6-section:nth-child(even) { background: var(--t6-bg-alt); }
.t6-container { max-width: var(--t6-w); margin: 0 auto; padding: 0 28px; }
.t6-text-center { text-align: center; }
.t6-text-sm { font-size: 0.85rem; }
.t6-text-muted { color: var(--t6-muted); }
.t6-subtitle { font-size: 1.1rem; color: var(--t6-muted); }
.t6-mb-0 { margin-bottom: 0 !important; }
.t6-mb-15 { margin-bottom: 15px; }
.t6-mb-30 { margin-bottom: 30px; }
.t6-mt-20 { margin-top: 20px; }
.t6-pt-0 { padding-top: 0 !important; }
.t6-pt-10 { padding-top: 10px !important; }
.t6-pt-20 { padding-top: 20px !important; }
.t6-pt-30 { padding-top: 30px !important; }
.t6-max-800 { max-width: 800px; }
.t6-m-auto { margin: 0 auto; }
.t6-hidden { display: none !important; }
.t6-flex-sb { display: flex; justify-content: space-between; align-items: baseline; }
.t6-flex-center { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }
.t6-bg-alt { background: var(--t6-bg-alt); }
.t6-bg-white { background: var(--t6-bg); }
.t6-bg-page { background: var(--t6-bg); }
.t6-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.t6-grid-auto { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; }

/* ===== SECTION TITLE — bold with blue left-border accent ===== */
.t6-section-title {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--t6-dark);
    margin-bottom: 28px;
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
    padding-left: 16px;
    border-left: 4px solid var(--t6-accent);
}
.t6-section-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--t6-accent-gradient);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: var(--t6-r-pill);
    margin-left: 10px;
    vertical-align: middle;
}

/* ===== FEATURES — 3-column, round blue icon circles ===== */
.t6-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.t6-feature-card {
    background: var(--t6-bg);
    border-radius: var(--t6-r);
    padding: 36px 28px 28px;
    position: relative;
    box-shadow: var(--t6-shadow-sm);
    border: none;
    transition: all 0.35s;
    text-align: center;
}
.t6-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--t6-shadow-lg);
}
.t6-feature-icon {
    width: 64px;
    height: 64px;
    background: var(--t6-accent-glow);
    color: var(--t6-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 24px;
}
.t6-feature-title { font-size: 1.05rem; font-weight: 700; color: var(--t6-dark); margin: 0 0 8px; }
.t6-feature-desc { font-size: 0.88rem; color: var(--t6-muted); margin: 0; line-height: 1.6; }

/* ===== TOP HUB CARDS — vertical with image, blue badge price ===== */
.t6-top-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}
.t6-top-card {
    display: flex;
    flex-direction: column;
    background: var(--t6-bg);
    border-radius: var(--t6-r);
    text-decoration: none;
    color: var(--t6-text);
    box-shadow: var(--t6-shadow-sm);
    overflow: hidden;
    transition: all 0.3s;
}
.t6-top-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--t6-shadow);
}
.t6-top-img-wrap {
    width: 100%; height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--t6-bg-alt);
    padding: 12px;
}
.t6-top-img { max-width: 100%; max-height: 100%; object-fit: contain; }
.t6-top-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--t6-dark);
    line-height: 1.3;
    padding: 14px 18px 0;
}
.t6-top-meta {
    font-size: 0.82rem;
    font-weight: 700;
    padding: 6px 18px 0;
    color: #fff;
    display: inline-block;
    margin: 8px 18px 0;
    background: var(--t6-accent-gradient);
    border-radius: 6px;
    padding: 4px 12px;
    width: fit-content;
}
.t6-top-specs { display: flex; flex-wrap: wrap; gap: 6px; padding: 10px 18px 16px; }
.t6-top-spec { font-size: 0.75rem; color: var(--t6-muted); background: var(--t6-bg-alt); padding: 2px 8px; border-radius: 4px; }
.t6-top-spec strong { color: var(--t6-dark); }

/* ===== CARDS — blue shadow, rounded 12px ===== */
.t6-card {
    background: var(--t6-bg);
    border: none;
    border-radius: var(--t6-r);
    padding: 28px;
    box-shadow: var(--t6-shadow-sm);
    transition: all 0.3s;
    margin-bottom: 20px;
}
.t6-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--t6-shadow-lg);
}
.t6-card-title { font-size: 1.1rem; font-weight: 700; color: var(--t6-dark); margin-bottom: 8px; }
.t6-card-price { color: var(--t6-accent-dark); font-weight: 800; font-size: 1.2rem; }
.t6-spec-list { display: flex; flex-direction: column; }
.t6-card-flex { display: flex; flex-direction: column; justify-content: space-between; height: 100%; }
.t6-card-desc { font-size: 0.9rem; color: var(--t6-muted); display: -webkit-box; -webkit-line-clamp: 3; line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 20px; }
.t6-btn-full { display: block; text-align: center; }
.t6-card-img-wrap { height: 100px; background: var(--t6-bg-alt); margin-bottom: 8px; display: flex; justify-content: center; align-items: center; overflow: hidden; border-radius: var(--t6-r-sm); }
.t6-card-link { text-decoration: none; color: inherit; display: block; }
.t6-card-link:hover { text-decoration: none; }
.t6-badge-wrap { margin-bottom: 6px; }
.t6-badge-sm { background: var(--t6-bg-alt); padding: 4px 12px; border-radius: var(--t6-r-pill); font-size: 0.8rem; font-weight: 500; }
.t6-badge-accent { background: var(--t6-accent-glow); color: var(--t6-accent-dark); font-weight: 600; }
.t6-show-more { text-align: center; margin-top: 28px; }
.t6-all-link { color: var(--t6-accent-dark); font-weight: 600; font-size: 0.95rem; text-decoration: none; display: inline-flex; align-items: center; gap: 4px; }
.t6-all-link:hover { color: var(--t6-accent); }

/* ===== HUB LIST — structured blue pills ===== */
.t6-hub-title { margin-bottom: 32px; font-size: 2rem; font-weight: 800; color: var(--t6-dark); letter-spacing: -0.5px; }
.t6-hub-list { display: flex; flex-wrap: wrap; gap: 12px; }
.t6-hub-item {
    padding: 10px 24px;
    background: var(--t6-bg);
    border: 1px solid var(--t6-border);
    border-radius: 10px;
    text-decoration: none;
    color: var(--t6-text);
    font-size: 0.92rem;
    font-weight: 500;
    transition: all 0.25s;
    box-shadow: var(--t6-shadow-sm);
}
.t6-hub-item:hover {
    background: var(--t6-accent-gradient);
    color: #fff;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59,130,246,0.30);
}
.t6-hub-badge {
    padding: 18px 24px;
    background: var(--t6-bg);
    border: 1px solid var(--t6-border);
    border-radius: var(--t6-r);
    text-decoration: none;
    color: var(--t6-text);
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: var(--t6-shadow-sm);
}
.t6-hub-badge:hover {
    box-shadow: var(--t6-shadow);
    transform: translateY(-3px);
    border-color: var(--t6-accent);
}

/* ===== DETAIL PAGES ===== */
.t6-grid-ms { display: grid; grid-template-columns: 1fr 320px; gap: 40px; }
.t6-sticky { position: sticky; top: 92px; }
.t6-item-row { display: flex; justify-content: space-between; padding: 12px 0; }
.t6-border-b { border-bottom: 1px solid var(--t6-border); }
.t6-card-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 20px; }

/* Section Card */
.t6-section-card {
    background: var(--t6-bg);
    border: none;
    border-radius: var(--t6-r);
    padding: 36px;
    margin-bottom: 28px;
    box-shadow: var(--t6-shadow);
}

/* Info Grid */
.t6-info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 14px; }
.t6-info-item {
    padding: 18px;
    background: var(--t6-bg-alt);
    border-radius: var(--t6-r-sm);
    border-left: 3px solid var(--t6-accent);
}
.t6-info-label { display: block; font-size: 0.78rem; color: var(--t6-muted); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.5px; }
.t6-info-value { display: block; font-weight: 700; color: var(--t6-dark); font-size: 1.05rem; }

/* Contacts */
.t6-contact-row { display: flex; align-items: center; gap: 15px; margin-bottom: 12px; }
.t6-social-links { display: flex; gap: 10px; }
.t6-social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px; height: 46px;
    border-radius: 10px;
    background: var(--t6-accent-glow);
    color: var(--t6-accent-dark);
    text-decoration: none;
    transition: all 0.25s;
    font-weight: 700;
}
.t6-social-btn:hover {
    background: var(--t6-accent-gradient);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(59,130,246,0.30);
}

/* Promo — blue accents */
.t6-promo-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 18px; margin-top: 20px; }
.t6-promo-modern {
    background: var(--t6-bg);
    border: none;
    border-radius: var(--t6-r);
    padding: 24px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--t6-shadow-sm);
    transition: all 0.3s;
}
.t6-promo-modern:hover { transform: translateY(-4px); box-shadow: var(--t6-shadow); }
.t6-promo-info h3 { margin: 0 0 4px; font-size: 1rem; color: var(--t6-dark); }
.t6-promo-sub { margin: 0; font-size: 0.82rem; color: var(--t6-muted); }
.t6-promo-wrap { position: relative; }
.t6-promo-box {
    background: var(--t6-accent-glow);
    border: 2px dashed var(--t6-accent);
    padding: 12px 22px;
    border-radius: var(--t6-r-sm);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s;
    min-width: 130px;
    justify-content: center;
}
.t6-promo-box:hover { background: rgba(59,130,246,0.18); }
.t6-promo-text { font-family: 'SFMono-Regular', Consolas, monospace; font-weight: 800; font-size: 1.05rem; color: var(--t6-accent-dark); letter-spacing: 1px; }
.t6-copy-icon { color: var(--t6-accent); }
.copy-tooltip-x { position: absolute; bottom: -40px; left: 50%; transform: translateX(-50%); background: var(--t6-dark); color: #fff; padding: 6px 14px; border-radius: 8px; font-size: 12px; font-weight: 600; opacity: 0; pointer-events: none; transition: all 0.3s; z-index: 10; white-space: nowrap; }
.copy-tooltip-x::after { content: ''; position: absolute; top: -4px; left: 50%; transform: translateX(-50%); border-left: 5px solid transparent; border-right: 5px solid transparent; border-bottom: 5px solid var(--t6-dark); }
.copy-tooltip-x.visible { opacity: 1; bottom: -45px; }

/* City Tags */
.t6-city-list { display: flex; flex-wrap: wrap; gap: 10px; }
.t6-city-tag {
    padding: 8px 20px;
    background: var(--t6-bg);
    border: 1px solid var(--t6-border);
    color: var(--t6-text);
    text-decoration: none;
    border-radius: 10px;
    font-size: 0.88rem;
    font-weight: 500;
    transition: all 0.25s;
    box-shadow: var(--t6-shadow-sm);
}
.t6-city-tag:hover { background: var(--t6-accent-gradient); color: #fff; border-color: transparent; box-shadow: 0 4px 15px rgba(59,130,246,0.30); }
.t6-city-tag-more { box-shadow: none; border: 2px dashed var(--t6-light); background: transparent; color: var(--t6-accent-dark); }

/* Accordion */
.t6-accordion {
    background: var(--t6-bg);
    border-radius: var(--t6-r);
    margin-bottom: 10px;
    overflow: hidden;
    box-shadow: var(--t6-shadow-sm);
    border: 1px solid var(--t6-border);
}
.t6-accordion summary {
    padding: 22px 28px;
    font-weight: 600;
    font-size: 1rem;
    color: var(--t6-dark);
    cursor: pointer;
    list-style: none;
    position: relative;
    user-select: none;
    transition: background 0.2s;
}
.t6-accordion summary:hover { background: var(--t6-bg-alt); }
.t6-accordion summary::-webkit-details-marker { display: none; }
.t6-accordion summary::after {
    content: '+';
    position: absolute;
    right: 28px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px; height: 28px;
    background: var(--t6-accent-glow);
    color: var(--t6-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    transition: all 0.3s;
}
.t6-accordion[open] summary::after {
    content: '-';
    background: var(--t6-accent-gradient);
    color: #fff;
    transform: translateY(-50%);
}
.t6-accordion .t6-accordion-content {
    padding: 0 28px 28px;
    border-top: 1px solid var(--t6-border);
    margin-top: 8px;
    padding-top: 20px;
    color: var(--t6-muted);
    line-height: 1.75;
}

/* Prose */
.t6-prose h2 { margin-top: 2rem; margin-bottom: 1rem; color: var(--t6-dark); }
.t6-prose h3 { margin-top: 1.5rem; margin-bottom: 0.8rem; color: var(--t6-dark); }
.t6-prose ul { padding-left: 0; margin: 15px 0; list-style: none; }
.t6-prose li { margin-bottom: 10px; padding-left: 20px; position: relative; }
.t6-prose li::before { content: ''; position: absolute; left: 0; top: 10px; width: 8px; height: 8px; background: var(--t6-accent); border-radius: 50%; }
.t6-prose strong { color: var(--t6-dark); }

/* ===== ERROR ===== */
.t6-error-page { padding: 100px 20px; max-width: 500px; margin: 0 auto; text-align: center; }
.t6-error-code { font-size: 9rem; font-weight: 800; line-height: 1; background: var(--t6-accent-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 10px; }
.t6-error-title { font-size: 1.6rem; font-weight: 700; color: var(--t6-dark); margin-bottom: 12px; }
.t6-error-desc { font-size: 1rem; color: var(--t6-muted); margin-bottom: 30px; line-height: 1.7; }
.t6-error-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* ===== GEO PAGE ===== */
.t6-geo-container { max-width: var(--t6-w); }
.t6-hub-list-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 18px; }
.t6-hub-summary {
    background: var(--t6-bg);
    border: 1px solid var(--t6-border);
    border-radius: var(--t6-r);
    padding: 24px;
    box-shadow: var(--t6-shadow-sm);
    transition: all 0.3s;
}
.t6-hub-summary:hover { box-shadow: var(--t6-shadow); transform: translateY(-3px); border-color: var(--t6-accent); }
.t6-hub-summary-head { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.t6-hub-summary-logo { width: 48px; height: 48px; object-fit: contain; border-radius: 10px; }
.t6-hub-summary-title { font-weight: 700; font-size: 1.1rem; color: var(--t6-dark); text-decoration: none; }
.t6-hub-summary-title:hover { color: var(--t6-accent); }
.t6-hub-summary-specs { display: flex; flex-wrap: wrap; gap: 6px; }
.t6-hub-summary-spec { font-size: 0.82rem; color: var(--t6-muted); background: var(--t6-bg-alt); padding: 4px 10px; border-radius: var(--t6-r-pill); }
.t6-geo-info-grid { margin-top: 15px; }
.t6-geo-promo-wrap { margin-top: 15px; }
.t6-geo-items-wrap { margin-top: 20px; }
.t6-geo-show-more { text-align: center; margin-top: 15px; }
.t6-geo-apps-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px; justify-content: center; }
.t6-app-btn { display: inline-block; line-height: 0; }
.t6-app-btn-img { height: 44px; width: auto; display: block; }
.t6-geo-hub-footer { margin-top: 20px; text-align: right; }
.t6-geo-zone-desc { margin-top: 20px; padding: 18px 22px; background: var(--t6-accent-glow); border-left: 4px solid var(--t6-accent); border-radius: var(--t6-r-sm); font-size: 0.95rem; color: var(--t6-muted); }
.geo-map { width: 100%; height: 420px; background: var(--t6-bg-alt); border-radius: var(--t6-r); margin-top: 14px; }

/* ===== HUB PAGE ===== */
.t6-hub-logo-wrap {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 32px;
    padding-bottom: 28px;
    border-bottom: 2px solid var(--t6-border);
}
.t6-hub-logo-img { height: 72px; object-fit: contain; border-radius: 10px; }
.t6-hub-title-text { margin: 0; font-size: 34px; font-weight: 800; color: var(--t6-dark); letter-spacing: -0.5px; }
.t6-hub-sidebar {}
.t6-hub-specs-title { margin-top: 20px; }
.t6-mini-link { text-decoration: none; color: inherit; display: block; text-align: center; }
.t6-mini-name { font-weight: 600; font-size: 0.9rem; }
.t6-app-col { display: flex; flex-direction: column; gap: 10px; }

/* ===== ITEM PAGE ===== */
.t6-item-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.t6-item-img-wrap { display: flex; justify-content: center; align-items: center; background: var(--t6-bg-alt); border-radius: var(--t6-r); padding: 24px; }
.t6-item-h1 { margin-bottom: 24px; }
.t6-item-img { max-width: 100%; height: auto; object-fit: contain; }
.t6-item-specs-title { margin-top: 0; }
.t6-hub-info-row { display: flex; align-items: center; gap: 15px; flex-wrap: wrap; }
.t6-hub-info-logo { width: 48px; height: 48px; object-fit: contain; border-radius: 10px; }
.t6-hub-info-meta {}
.t6-hub-info-label { font-size: 0.85rem; color: var(--t6-muted); }
.t6-hub-info-name { font-weight: 700; font-size: 1.2rem; text-decoration: none; color: inherit; }
.t6-hub-info-name:hover { color: var(--t6-accent); }
.t6-app-buttons { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 15px; }
.t6-city-tag-more { border-style: dashed; background: transparent; color: var(--t6-accent-dark); }

/* Items Mini Grid */
.t6-items-mini-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 14px; }
.t6-items-mini-card {
    background: var(--t6-bg);
    border: 1px solid var(--t6-border);
    border-radius: var(--t6-r-sm);
    padding: 14px;
    box-shadow: var(--t6-shadow-sm);
    transition: all 0.25s;
}
.t6-items-mini-card:hover { box-shadow: var(--t6-shadow); transform: translateY(-2px); border-color: var(--t6-accent); }
.t6-items-mini-img { width: 100%; height: 80px; object-fit: contain; margin-bottom: 8px; }

/* ===== FOOTER — deep navy #0F172A, 4-column ===== */
.t6-footer {
    background: #0F172A;
    color: #94a3b8;
    padding: 72px 0 36px;
    margin-top: 80px;
    font-size: 0.9rem;
}
.t6-footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; }
.t6-footer-brand h2 { color: #fff; margin-bottom: 20px; font-size: 1.3rem; font-weight: 800; }
.t6-footer-col h3 { color: #fff; font-size: 1rem; margin-bottom: 18px; font-weight: 700; }
.t6-footer-nav { list-style: none; padding: 0; margin: 0; }
.t6-footer-nav li { margin-bottom: 12px; }
.t6-footer-nav a { color: #94a3b8; transition: color 0.2s; }
.t6-footer-nav a:hover { color: var(--t6-accent); }
.t6-footer p { line-height: 1.6; color: #64748B; }
.t6-footer-bottom {
    margin-top: 56px;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    color: #475569;
    font-size: 0.85rem;
}
.t6-footer-btm-links { display: flex; gap: 20px; }
.t6-footer-btm-links a { color: #475569; }
.t6-footer-btm-links a:hover { color: var(--t6-accent); }

/* ===== PRICING ===== */
.t6-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    align-items: start;
}
.t6-pricing-card {
    background: var(--t6-bg);
    border-radius: var(--t6-r);
    padding: 36px 32px;
    box-shadow: var(--t6-shadow-sm);
    transition: all 0.3s;
    position: relative;
    text-align: center;
    border: 1px solid var(--t6-border);
}
.t6-pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--t6-shadow-lg);
}
.t6-pricing-popular {
    border: 2px solid var(--t6-accent);
    box-shadow: var(--t6-shadow), 0 0 0 4px var(--t6-accent-glow);
    transform: scale(1.04);
}
.t6-pricing-popular:hover { transform: scale(1.04) translateY(-4px); }
.t6-pricing-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--t6-accent-gradient);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 4px 20px;
    border-radius: var(--t6-r-pill);
    box-shadow: 0 4px 12px rgba(59,130,246,0.30);
    white-space: nowrap;
}
.t6-pricing-logo {
    width: 80px; height: 80px; object-fit: contain;
    margin: 0 auto 16px; display: block; border-radius: var(--t6-r);
}
.t6-pricing-name { font-size: 1.2rem; font-weight: 700; color: var(--t6-dark); margin: 0 0 8px; }
.t6-pricing-desc { font-size: 0.88rem; color: var(--t6-muted); margin: 0 0 20px; }
.t6-pricing-price { margin-bottom: 24px; }
.t6-pricing-amount { font-size: 2.4rem; font-weight: 800; color: var(--t6-dark); letter-spacing: -1px; }
.t6-pricing-period { font-size: 0.9rem; color: var(--t6-muted); }
.t6-pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    text-align: left;
}
.t6-pricing-features li {
    padding: 8px 0;
    border-bottom: 1px solid var(--t6-border);
    font-size: 0.9rem;
    color: var(--t6-text);
    padding-left: 24px;
    position: relative;
}
.t6-pricing-features li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--t6-accent);
    font-weight: 700;
}

/* ===== TESTIMONIALS ===== */
.t6-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}
.t6-testimonial-card {
    background: var(--t6-bg);
    border-radius: var(--t6-r);
    padding: 32px;
    box-shadow: var(--t6-shadow-sm);
    transition: all 0.3s;
    position: relative;
    border: 1px solid var(--t6-border);
}
.t6-testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 16px;
    left: 24px;
    font-size: 4rem;
    line-height: 1;
    color: var(--t6-accent-glow);
    font-family: Georgia, serif;
}
.t6-testimonial-card:hover { box-shadow: var(--t6-shadow); border-color: var(--t6-accent); }
.t6-testimonial-text {
    font-size: 0.95rem;
    color: var(--t6-text);
    line-height: 1.7;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}
.t6-testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}
.t6-testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--t6-accent-glow);
}
.t6-testimonial-name { font-weight: 700; font-size: 0.95rem; color: var(--t6-dark); }
.t6-testimonial-role { font-size: 0.82rem; color: var(--t6-muted); }

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .t6-footer-grid { grid-template-columns: 1fr 1fr; }
    .t6-item-hero { grid-template-columns: 1fr; }
    .t6-features-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .t6-hero { padding: 60px 0 50px; }
    .t6-h1 { font-size: 30px; letter-spacing: -0.5px; }
    .t6-hero-sub { font-size: 1rem; }
    .t6-section { padding: 48px 0; }
    .t6-section-card { padding: 22px; margin-bottom: 20px; }
    .t6-grid-ms { grid-template-columns: 1fr; }
    .t6-grid-auto { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 16px; }
    .t6-grid-2 { grid-template-columns: 1fr; }
    .t6-info-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .t6-promo-grid { grid-template-columns: 1fr; }
    .t6-promo-modern { flex-direction: column; gap: 15px; text-align: center; }
    .t6-hub-title-text { font-size: 24px; }
    .t6-footer-bottom { flex-direction: column; text-align: center; }
    .t6-top-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
    .t6-top-specs { display: none; }
    .t6-features-grid { grid-template-columns: 1fr 1fr; }

    .burger-btn { display: flex; }
    .t6-nav-list {
        display: none;
        position: fixed;
        top: 72px; left: 0; right: 0;
        flex-direction: column;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(12px);
        padding: 12px 24px;
        gap: 0;
        box-shadow: 0 20px 40px rgba(15,23,42,0.10);
        z-index: 100;
        height: auto;
    }
    .t6-nav-list.menu-open, .t6-nav-list[data-nav].menu-open { display: flex; }
    .t6-nav-list li { border-bottom: 1px solid var(--t6-border); }
    .t6-nav-list li:last-child .t6-nav-link { background: none; color: var(--t6-accent-dark); border-radius: 0; padding: 14px 0; }
    .t6-nav-link { height: auto; padding: 14px 0; font-size: 1rem; border-radius: 0; }
}

@media (max-width: 480px) {
    .t6-info-grid { grid-template-columns: 1fr; }
    .t6-header-inner { padding: 0 16px; }
    .t6-container { padding: 0 16px; }
    .t6-features-grid { grid-template-columns: 1fr; }
    .t6-hero-actions { flex-direction: column; align-items: center; }
    .t6-footer-grid { grid-template-columns: 1fr; }
    .t6-top-grid { grid-template-columns: 1fr; }
}



/* ============================================================
   AUTO-PATCHED: новые блоки для theme_006
   ============================================================ */

/* Hero service */
.t6-hero-wrapper { max-width: 760px; margin: 0 auto; text-align: center; }
.t6-lead { font-size: 1.15rem; color: #555; margin: 0 0 20px; line-height: 1.6; text-align: center; }
.t6-hero-sub { font-size: 1rem; color: #666; margin: 0 0 24px; text-align: center; }
.t6-hero-btn-wrap { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; justify-content: center; }
.t6-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 #3B82F6; background: transparent; color: #3B82F6; text-decoration: none; transition: all 0.2s; }
.t6-btn-secondary:hover { background: rgba(59,130,246,0.12); }
.t6-btn-lg { padding: 14px 32px; font-size: 1.05rem; }

/* Trust bar */
.t6-trust-bar { display: flex; gap: 24px; flex-wrap: wrap; margin: 24px 0; padding: 20px 24px; background: rgba(59,130,246,0.12); border-radius: 12px; }
.t6-trust-item { display: flex; align-items: center; gap: 12px; }
.t6-trust-icon { font-size: 1.5rem; }
.t6-trust-text { display: flex; flex-direction: column; }
.t6-trust-text strong { font-size: 1.1rem; font-weight: 700; color: #1e2a3a; }
.t6-trust-text span { font-size: 0.8rem; color: #777; }

/* Steps */
.t6-steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; margin-top: 32px; }
.t6-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 #3B82F6; }
.t6-step-num { font-size: 2rem; font-weight: 800; color: #3B82F6; opacity: 0.3; margin-bottom: 12px; }
.t6-step-title { font-size: 1rem; font-weight: 700; color: #1e2a3a; margin-bottom: 8px; }
.t6-step-text { font-size: 0.9rem; color: #666; line-height: 1.5; margin: 0; }

/* Tariffs */
.t6-tariffs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; margin-top: 32px; }
.t6-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; }
.t6-tariff-highlighted { border-color: #3B82F6; box-shadow: 0 8px 32px rgba(59,130,246,0.12); position: relative; }
.t6-tariff-header { margin-bottom: 20px; }
.t6-tariff-title { font-size: 1.15rem; font-weight: 700; color: #1e2a3a; margin: 0 0 4px; }
.t6-tariff-features { list-style: none; padding: 0; margin: 0 0 24px; flex: 1; }
.t6-tariff-features li { padding: 8px 0; border-bottom: 1px solid #f0f0f0; font-size: 0.9rem; color: #555; }
.t6-tariff-features li::before { content: "✓ "; color: #3B82F6; font-weight: 700; }

/* CTA section */
.t6-cta-section { background: rgba(59,130,246,0.12); border: 2px solid #3B82F6; color: #1e2a3a; text-align: center; padding: 60px 20px; border-radius: 16px; margin: 0; }
.t6-cta-section h2 { color: #1e2a3a; font-size: 2rem; margin-bottom: 16px; }
.t6-cta-section p { color: #444; font-size: 1.1rem; margin-bottom: 28px; }
.t6-cta-section .t6-section-title { color: #1e2a3a; }
.t6-cta-section .t6-lead { color: #444; }

/* FAQ */
.t6-faq-list { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }

/* Features */
.t6-feature-icon { font-size: 2rem; margin-bottom: 12px; }
.t6-feature-title { font-size: 1rem; font-weight: 700; color: #1e2a3a; margin-bottom: 8px; }
.t6-feature-desc { font-size: 0.9rem; color: #666; line-height: 1.5; margin: 0; }

/* Prose */
.t6-prose { max-width: 800px; line-height: 1.8; color: #444; }
.t6-prose h2, .t6-prose h3 { color: #1e2a3a; }

/* Utility */
.t6-hub-all-link { display: inline-block; margin-top: 16px; color: #3B82F6; font-weight: 600; text-decoration: none; }
.t6-hub-all-link:hover { color: #1E40AF; text-decoration: underline; }
.t6-btn-outline { border: 2px solid #3B82F6; color: #3B82F6; 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; }
.t6-btn-outline:hover { background: rgba(59,130,246,0.12); }
.t6-show-more { text-align: center; margin-top: 24px; }
.t6-mt-20 { margin-top: 20px; }
.t6-max-800 { max-width: 800px; }
.t6-m-auto { margin-left: auto; margin-right: auto; }
.t6-flex-center { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }
.t6-hidden { display: none; }
.t6-flex-sb { display: flex; justify-content: space-between; align-items: baseline; flex-wrap: wrap; gap: 8px; }
.t6-mb-0 { margin-bottom: 0; }
.t6-badge-accent { background: #3B82F6; color: #fff; padding: 2px 10px; border-radius: 20px; font-size: 0.75rem; font-weight: 600; }
.t6-card-link { text-decoration: none; color: inherit; display: block; }
.t6-badge-wrap { display: flex; flex-wrap: wrap; gap: 6px; }
.t6-mb-15 { margin-bottom: 15px; }
.t6-mb-30 { margin-bottom: 30px; }
.t6-pt-0 { padding-top: 0; }
.t6-pt-10 { padding-top: 10px; }
.t6-pt-20 { padding-top: 20px; }
.t6-pt-30 { padding-top: 30px; }
.t6-body { background: #f8fafb; }
.t6-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 — в самом конце */
.t6-cta-section.t6-cta-section .t6-section-title { color: #1e2a3a; }
.t6-cta-section.t6-cta-section .t6-section-title::after { background: #3B82F6; }
.t6-cta-section.t6-cta-section .t6-lead { color: #444; }
