:root {
    --t7-accent: #1B3A5C;
    --t7-accent-light: #2196F3;
    --t7-accent-glow: rgba(33,150,243,0.10);
    --t7-accent-hover: #1565C0;
    --t7-dark: #0F2337;
    --t7-text: #3A4A5C;
    --t7-muted: #6B7D8E;
    --t7-light: #dee2e6;
    --t7-bg: #ffffff;
    --t7-bg-alt: #F4F6F8;
    --t7-bg-hero: #ffffff;
    --t7-border: #dee2e6;
    --t7-r: 8px;
    --t7-r-sm: 6px;
    --t7-r-pill: 4px;
    --t7-shadow-sm: 0 1px 4px rgba(0,0,0,0.06);
    --t7-shadow: 0 4px 16px rgba(0,0,0,0.08);
    --t7-shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
    --t7-font: 'Inter', system-ui, -apple-system, sans-serif;
    --t7-w: 1140px;
    --t7-navy: #1B3A5C;
    --t7-stripe: #1B3A5C;
}

*, *::before, *::after { box-sizing: border-box; }

body, .t7-body {
    background: var(--t7-bg);
    color: var(--t7-text);
    font-family: var(--t7-font);
    margin: 0;
    line-height: 1.6;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
}
a { color: var(--t7-accent-light); text-decoration: none; }
a:hover { color: var(--t7-accent-hover); text-decoration: none; }

/* ===== HEADER — white, structured, 1px bottom border ===== */
.t7-header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--t7-border);
}
.t7-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--t7-w);
    margin: 0 auto;
    padding: 0 24px;
    height: 64px;
}
.t7-logo {
    font-size: 18px;
    font-weight: 700;
    color: var(--t7-navy);
    text-decoration: none;
    letter-spacing: -0.3px;
    text-transform: uppercase;
}
.t7-nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
    align-items: center;
    height: 64px;
}
.t7-nav-link {
    display: flex;
    align-items: center;
    padding: 0 16px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--t7-text);
    text-decoration: none;
    height: 64px;
    border-bottom: 2px solid transparent;
    transition: color 0.2s, border-color 0.2s;
}
.t7-nav-link:hover {
    color: var(--t7-accent-light);
    border-bottom-color: var(--t7-accent-light);
}
/* Last nav item — CTA button style */
.t7-nav-list li:last-child .t7-nav-link {
    background: var(--t7-accent-light);
    color: #fff;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: var(--t7-r);
    height: auto;
    border-bottom: none;
    margin-left: 8px;
}
.t7-nav-list li:last-child .t7-nav-link:hover {
    background: var(--t7-accent-hover);
}

/* Burger */
.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    flex-direction: column;
    gap: 5px;
    z-index: 101;
}
.burger-btn span { display: block; width: 22px; height: 2px; background: var(--t7-navy); 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 — white bg with subtle blue gradient overlay, technical feel ===== */
.t7-hero {
    background: var(--t7-bg-hero);
    padding: 72px 0 60px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--t7-border);
}
.t7-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(27,58,92,0.03) 0%, rgba(33,150,243,0.06) 50%, transparent 100%);
    pointer-events: none;
}
.t7-hero::after {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 40%;
    height: 100%;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 40px,
        rgba(27,58,92,0.02) 40px,
        rgba(27,58,92,0.02) 41px
    );
    pointer-events: none;
}
.t7-h1 {
    font-size: 40px;
    font-weight: 700;
    color: var(--t7-navy);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    line-height: 1.2;
    position: relative;
    z-index: 1;
}
.t7-hero-sub {
    font-size: 1.05rem;
    color: var(--t7-muted);
    max-width: 580px;
    margin: 0 auto 28px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}
.t7-hero-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    position: relative;
    z-index: 1;
}
.t7-hero-btn {
    padding: 12px 28px;
    font-size: 0.93rem;
    border-radius: var(--t7-r);
}

/* ===== BUTTONS — solid navy/blue, 8px radius, no gradient ===== */
.t7-btn-primary {
    background: var(--t7-navy);
    color: #fff;
    padding: 12px 28px;
    border-radius: var(--t7-r);
    display: inline-block;
    font-weight: 600;
    font-size: 0.93rem;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    text-decoration: none;
}
.t7-btn-primary:hover {
    background: #142D49;
    transform: translateY(-1px);
    color: #fff;
}
.t7-btn-outline {
    background: transparent;
    color: var(--t7-navy);
    border: 1px solid var(--t7-navy);
    padding: 11px 26px;
    border-radius: var(--t7-r);
    font-size: 0.93rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-block;
    text-decoration: none;
}
.t7-btn-outline:hover { background: var(--t7-navy); color: #fff; }

/* ===== BREADCRUMBS ===== */
.t7-breadcrumbs { padding: 12px 0; background: var(--t7-bg-alt); border-bottom: 1px solid var(--t7-border); }
.t7-bc-list { display: flex; flex-wrap: wrap; list-style: none; margin: 0; padding: 0; font-size: 0.82rem; }
.t7-bc-item { display: flex; align-items: center; color: var(--t7-muted); }
.t7-bc-item a { color: var(--t7-accent-light); }
.t7-bc-item a:hover { text-decoration: underline; }
.t7-bc-item + .t7-bc-item::before { content: "/"; margin: 0 8px; color: var(--t7-light); font-size: 0.85rem; }
.t7-bc-item:last-child span { color: var(--t7-navy); font-weight: 600; }

/* ===== LAYOUT ===== */
.t7-section { padding: 56px 0; }
.t7-section:nth-child(even) { background: var(--t7-bg-alt); }
.t7-container { max-width: var(--t7-w); margin: 0 auto; padding: 0 24px; }
.t7-text-center { text-align: center; }
.t7-text-sm { font-size: 0.85rem; }
.t7-text-muted { color: var(--t7-muted); }
.t7-subtitle { font-size: 1.05rem; color: var(--t7-muted); }
.t7-mb-0 { margin-bottom: 0 !important; }
.t7-mb-15 { margin-bottom: 15px; }
.t7-mb-30 { margin-bottom: 30px; }
.t7-mt-20 { margin-top: 20px; }
.t7-pt-0 { padding-top: 0 !important; }
.t7-pt-10 { padding-top: 10px !important; }
.t7-pt-20 { padding-top: 20px !important; }
.t7-pt-30 { padding-top: 30px !important; }
.t7-max-800 { max-width: 800px; }
.t7-m-auto { margin: 0 auto; }
.t7-hidden { display: none !important; }
.t7-flex-sb { display: flex; justify-content: space-between; align-items: baseline; }
.t7-flex-center { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }
.t7-bg-alt { background: var(--t7-bg-alt); }
.t7-bg-white { background: var(--t7-bg); }
.t7-bg-page { background: var(--t7-bg); }
.t7-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.t7-grid-auto { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }

/* ===== SECTION TITLE — navy, bold, left-aligned blue bar ===== */
.t7-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--t7-navy);
    margin-bottom: 24px;
    letter-spacing: -0.3px;
    position: relative;
    display: inline-block;
    padding-left: 16px;
}
.t7-section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 4px;
    background: var(--t7-accent-light);
    border-radius: 2px;
}
.t7-section-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--t7-accent-light);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: var(--t7-r);
    margin-left: 10px;
    vertical-align: middle;
}

/* ===== FEATURES — structured grid, cards with top navy stripe, icon squares ===== */
.t7-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
    counter-reset: feature-counter;
}
.t7-feature-card {
    background: var(--t7-bg);
    border: 1px solid var(--t7-border);
    border-radius: var(--t7-r);
    padding: 28px 22px 22px;
    position: relative;
    transition: box-shadow 0.25s, transform 0.2s;
    counter-increment: feature-counter;
    text-align: left;
    border-top: 3px solid var(--t7-navy);
}
.t7-feature-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--t7-shadow);
}
.t7-feature-card::before {
    content: "0" counter(feature-counter);
    display: inline-block;
    background: var(--t7-navy);
    color: #fff;
    font-weight: 700;
    font-size: 0.72rem;
    padding: 2px 10px;
    border-radius: var(--t7-r-sm);
    margin-bottom: 14px;
    letter-spacing: 0.5px;
}
.t7-feature-icon {
    width: 44px;
    height: 44px;
    background: var(--t7-accent-glow);
    color: var(--t7-accent-light);
    border-radius: var(--t7-r);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    font-size: 20px;
}
.t7-feature-title { font-size: 1rem; font-weight: 700; color: var(--t7-navy); margin: 0 0 6px; }
.t7-feature-desc { font-size: 0.86rem; color: var(--t7-muted); margin: 0; line-height: 1.6; }

/* ===== TOP HUB CARDS — clean vertical, structured data, thin borders ===== */
.t7-top-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
}
.t7-top-card {
    display: flex;
    flex-direction: column;
    background: var(--t7-bg);
    border: 1px solid var(--t7-border);
    border-radius: var(--t7-r);
    padding: 18px;
    text-decoration: none;
    color: var(--t7-text);
    transition: box-shadow 0.25s, border-color 0.25s;
}
.t7-top-card:hover {
    box-shadow: var(--t7-shadow);
    border-color: var(--t7-accent-light);
}
.t7-top-img-wrap {
    width: 52px; height: 52px; min-width: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--t7-bg-alt);
    border-radius: var(--t7-r-sm);
    padding: 6px;
    margin-bottom: 10px;
}
.t7-top-img { max-width: 100%; max-height: 100%; object-fit: contain; }
.t7-top-name { font-size: 0.93rem; font-weight: 700; color: var(--t7-navy); line-height: 1.3; }
.t7-top-meta { font-size: 0.8rem; color: var(--t7-accent-light); font-weight: 600; margin-top: 4px; }
.t7-top-specs { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; padding-top: 8px; border-top: 1px solid var(--t7-border); }
.t7-top-spec { font-size: 0.75rem; color: var(--t7-muted); background: var(--t7-bg-alt); padding: 2px 8px; border-radius: var(--t7-r-sm); }
.t7-top-spec strong { color: var(--t7-navy); }

/* ===== CARDS — 1px borders, structured ===== */
.t7-card {
    background: var(--t7-bg);
    border: 1px solid var(--t7-border);
    border-radius: var(--t7-r);
    padding: 22px;
    transition: box-shadow 0.25s, border-color 0.25s;
    margin-bottom: 16px;
}
.t7-card:hover {
    box-shadow: var(--t7-shadow);
    border-color: var(--t7-accent-light);
}
.t7-card-title { font-size: 1.05rem; font-weight: 700; color: var(--t7-navy); margin-bottom: 6px; }
.t7-card-price { color: var(--t7-accent-light); font-weight: 700; font-size: 1.15rem; }
.t7-spec-list { display: flex; flex-direction: column; }
.t7-card-flex { display: flex; flex-direction: column; justify-content: space-between; height: 100%; }
.t7-card-desc { font-size: 0.88rem; color: var(--t7-muted); display: -webkit-box; -webkit-line-clamp: 3; line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 16px; }
.t7-btn-full { display: block; text-align: center; }
.t7-card-img-wrap { height: 100px; background: var(--t7-bg-alt); margin-bottom: 8px; display: flex; justify-content: center; align-items: center; overflow: hidden; border-radius: var(--t7-r-sm); }
.t7-card-link { text-decoration: none; color: inherit; display: block; }
.t7-card-link:hover { text-decoration: none; }
.t7-badge-wrap { margin-bottom: 6px; }
.t7-badge-sm { background: var(--t7-bg-alt); padding: 3px 10px; border-radius: var(--t7-r-sm); font-size: 0.78rem; font-weight: 500; border: 1px solid var(--t7-border); }
.t7-badge-accent { background: var(--t7-accent-glow); color: var(--t7-accent-light); font-weight: 600; border-color: rgba(33,150,243,0.2); }
.t7-show-more { text-align: center; margin-top: 24px; }
.t7-all-link { color: var(--t7-accent-light); font-weight: 600; font-size: 0.93rem; text-decoration: none; display: inline-flex; align-items: center; gap: 4px; }
.t7-all-link:hover { color: var(--t7-accent-hover); }

/* ===== HUB LIST — tab-like category navigation ===== */
.t7-hub-title { margin-bottom: 28px; font-size: 1.8rem; font-weight: 700; color: var(--t7-navy); letter-spacing: -0.3px; }
.t7-hub-list { display: flex; flex-wrap: wrap; gap: 8px; }
.t7-hub-item {
    padding: 8px 18px;
    background: var(--t7-bg);
    border: 1px solid var(--t7-border);
    border-radius: var(--t7-r);
    text-decoration: none;
    color: var(--t7-text);
    font-size: 0.88rem;
    font-weight: 500;
    transition: all 0.2s;
}
.t7-hub-item:hover {
    background: var(--t7-navy);
    color: #fff;
    border-color: var(--t7-navy);
}
.t7-hub-badge {
    padding: 14px 20px;
    background: var(--t7-bg);
    border: 1px solid var(--t7-border);
    border-radius: var(--t7-r);
    text-decoration: none;
    color: var(--t7-text);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    transition: all 0.2s;
}
.t7-hub-badge:hover {
    box-shadow: var(--t7-shadow);
    border-color: var(--t7-accent-light);
}

/* ===== DETAIL PAGES ===== */
.t7-grid-ms { display: grid; grid-template-columns: 1fr 320px; gap: 32px; }
.t7-sticky { position: sticky; top: 84px; }
.t7-item-row { display: flex; justify-content: space-between; padding: 10px 0; }
.t7-border-b { border-bottom: 1px solid var(--t7-border); }
.t7-card-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 16px; }

/* Section Card */
.t7-section-card {
    background: var(--t7-bg);
    border: 1px solid var(--t7-border);
    border-radius: var(--t7-r);
    padding: 28px;
    margin-bottom: 20px;
}

/* Info Grid — structured data rows */
.t7-info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 12px; }
.t7-info-item {
    padding: 14px;
    background: var(--t7-bg-alt);
    border-radius: var(--t7-r-sm);
    border-left: 3px solid var(--t7-accent-light);
}
.t7-info-label { display: block; font-size: 0.75rem; color: var(--t7-muted); margin-bottom: 3px; text-transform: uppercase; letter-spacing: 0.8px; font-weight: 500; }
.t7-info-value { display: block; font-weight: 700; color: var(--t7-navy); font-size: 1rem; }

/* Contacts */
.t7-contact-row { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.t7-social-links { display: flex; gap: 8px; }
.t7-social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    border-radius: var(--t7-r);
    background: var(--t7-bg-alt);
    color: var(--t7-navy);
    text-decoration: none;
    transition: all 0.2s;
    font-weight: 700;
    border: 1px solid var(--t7-border);
}
.t7-social-btn:hover {
    background: var(--t7-navy);
    color: #fff;
    border-color: var(--t7-navy);
}

/* Promo */
.t7-promo-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 16px; margin-top: 16px; }
.t7-promo-modern {
    background: var(--t7-bg);
    border: 1px solid var(--t7-border);
    border-radius: var(--t7-r);
    padding: 20px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: box-shadow 0.2s;
}
.t7-promo-modern:hover { box-shadow: var(--t7-shadow); }
.t7-promo-info h3 { margin: 0 0 4px; font-size: 0.95rem; color: var(--t7-navy); }
.t7-promo-sub { margin: 0; font-size: 0.82rem; color: var(--t7-muted); }
.t7-promo-wrap { position: relative; }
.t7-promo-box {
    background: var(--t7-accent-glow);
    border: 1px dashed var(--t7-accent-light);
    padding: 10px 18px;
    border-radius: var(--t7-r-sm);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s;
    min-width: 120px;
    justify-content: center;
}
.t7-promo-box:hover { background: rgba(33,150,243,0.15); }
.t7-promo-text { font-family: 'SFMono-Regular', Consolas, monospace; font-weight: 700; font-size: 1rem; color: var(--t7-accent-light); letter-spacing: 1px; }
.t7-copy-icon { color: var(--t7-accent-light); }
.copy-tooltip-x { position: absolute; bottom: -40px; left: 50%; transform: translateX(-50%); background: var(--t7-navy); color: #fff; padding: 5px 12px; border-radius: var(--t7-r-sm); font-size: 12px; font-weight: 600; opacity: 0; pointer-events: none; transition: all 0.3s; z-index: 10; white-space: nowrap; }
.copy-tooltip-x::after { content: ''; position: absolute; top: -4px; left: 50%; transform: translateX(-50%); border-left: 5px solid transparent; border-right: 5px solid transparent; border-bottom: 5px solid var(--t7-navy); }
.copy-tooltip-x.visible { opacity: 1; bottom: -45px; }

/* City Tags */
.t7-city-list { display: flex; flex-wrap: wrap; gap: 8px; }
.t7-city-tag {
    padding: 6px 16px;
    background: var(--t7-bg);
    border: 1px solid var(--t7-border);
    color: var(--t7-text);
    text-decoration: none;
    border-radius: var(--t7-r);
    font-size: 0.86rem;
    font-weight: 500;
    transition: all 0.2s;
}
.t7-city-tag:hover { background: var(--t7-navy); color: #fff; border-color: var(--t7-navy); }
.t7-city-tag-more { border-style: dashed; background: transparent; color: var(--t7-accent-light); }

/* Accordion */
.t7-accordion {
    background: var(--t7-bg);
    border: 1px solid var(--t7-border);
    border-radius: var(--t7-r);
    margin-bottom: 8px;
    overflow: hidden;
}
.t7-accordion summary {
    padding: 16px 22px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--t7-navy);
    cursor: pointer;
    list-style: none;
    position: relative;
    user-select: none;
    transition: background 0.2s;
}
.t7-accordion summary:hover { background: var(--t7-bg-alt); }
.t7-accordion summary::-webkit-details-marker { display: none; }
.t7-accordion summary::after {
    content: '+';
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    width: 26px; height: 26px;
    background: var(--t7-bg-alt);
    color: var(--t7-navy);
    border-radius: var(--t7-r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.2s;
    border: 1px solid var(--t7-border);
}
.t7-accordion[open] summary::after {
    content: '\2212';
    background: var(--t7-navy);
    color: #fff;
    border-color: var(--t7-navy);
    transform: translateY(-50%);
}
.t7-accordion .t7-accordion-content {
    padding: 0 22px 22px;
    border-top: 1px solid var(--t7-border);
    margin-top: 4px;
    padding-top: 16px;
    color: var(--t7-muted);
    line-height: 1.7;
}

/* Prose */
.t7-prose h2 { margin-top: 2rem; margin-bottom: 0.8rem; color: var(--t7-navy); font-weight: 700; }
.t7-prose h3 { margin-top: 1.5rem; margin-bottom: 0.6rem; color: var(--t7-navy); font-weight: 600; }
.t7-prose ul { padding-left: 0; margin: 12px 0; list-style: none; }
.t7-prose li { margin-bottom: 8px; padding-left: 18px; position: relative; }
.t7-prose li::before { content: ''; position: absolute; left: 0; top: 10px; width: 6px; height: 6px; background: var(--t7-accent-light); border-radius: 1px; }
.t7-prose strong { color: var(--t7-navy); }

/* ===== ERROR ===== */
.t7-error-page { padding: 80px 20px; max-width: 480px; margin: 0 auto; text-align: center; }
.t7-error-code { font-size: 8rem; font-weight: 800; line-height: 1; color: var(--t7-navy); margin-bottom: 10px; }
.t7-error-title { font-size: 1.4rem; font-weight: 700; color: var(--t7-navy); margin-bottom: 10px; }
.t7-error-desc { font-size: 0.95rem; color: var(--t7-muted); margin-bottom: 28px; line-height: 1.7; }
.t7-error-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* ===== GEO PAGE ===== */
.t7-geo-container { max-width: var(--t7-w); }
.t7-hub-list-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 16px; }
.t7-hub-summary {
    background: var(--t7-bg);
    border: 1px solid var(--t7-border);
    border-radius: var(--t7-r);
    padding: 20px;
    transition: box-shadow 0.2s, border-color 0.2s;
}
.t7-hub-summary:hover { box-shadow: var(--t7-shadow); border-color: var(--t7-accent-light); }
.t7-hub-summary-head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.t7-hub-summary-logo { width: 44px; height: 44px; object-fit: contain; border-radius: var(--t7-r-sm); }
.t7-hub-summary-title { font-weight: 700; font-size: 1.05rem; color: var(--t7-navy); text-decoration: none; }
.t7-hub-summary-title:hover { color: var(--t7-accent-light); }
.t7-hub-summary-specs { display: flex; flex-wrap: wrap; gap: 6px; }
.t7-hub-summary-spec { font-size: 0.8rem; color: var(--t7-muted); background: var(--t7-bg-alt); padding: 3px 8px; border-radius: var(--t7-r-sm); }
.t7-geo-info-grid { margin-top: 12px; }
.t7-geo-promo-wrap { margin-top: 12px; }
.t7-geo-items-wrap { margin-top: 16px; }
.t7-geo-show-more { text-align: center; margin-top: 12px; }
.t7-geo-apps-row { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; justify-content: center; }
.t7-app-btn { display: inline-block; line-height: 0; }
.t7-app-btn-img { height: 44px; width: auto; display: block; }
.t7-geo-hub-footer { margin-top: 16px; text-align: right; }
.t7-geo-zone-desc { margin-top: 16px; padding: 14px 18px; background: var(--t7-accent-glow); border-left: 3px solid var(--t7-accent-light); border-radius: var(--t7-r-sm); font-size: 0.92rem; color: var(--t7-muted); }
.geo-map { width: 100%; height: 400px; background: var(--t7-bg-alt); border: 1px solid var(--t7-border); border-radius: var(--t7-r); margin-top: 12px; }

/* ===== HUB PAGE ===== */
.t7-hub-logo-wrap {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--t7-border);
}
.t7-hub-logo-img { height: 64px; object-fit: contain; border-radius: var(--t7-r); }
.t7-hub-title-text { margin: 0; font-size: 28px; font-weight: 700; color: var(--t7-navy); letter-spacing: -0.3px; }
.t7-hub-sidebar {}
.t7-hub-specs-title { margin-top: 16px; }
.t7-mini-link { text-decoration: none; color: inherit; display: block; text-align: center; }
.t7-mini-name { font-weight: 600; font-size: 0.88rem; }
.t7-app-col { display: flex; flex-direction: column; gap: 8px; }

/* ===== ITEM PAGE ===== */
.t7-item-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
.t7-item-img-wrap { display: flex; justify-content: center; align-items: center; background: var(--t7-bg-alt); border: 1px solid var(--t7-border); border-radius: var(--t7-r); padding: 20px; }
.t7-item-h1 { margin-bottom: 20px; }
.t7-item-img { max-width: 100%; height: auto; object-fit: contain; }
.t7-item-specs-title { margin-top: 0; }
.t7-hub-info-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.t7-hub-info-logo { width: 44px; height: 44px; object-fit: contain; border-radius: var(--t7-r-sm); }
.t7-hub-info-label { font-size: 0.82rem; color: var(--t7-muted); }
.t7-hub-info-name { font-weight: 700; font-size: 1.1rem; text-decoration: none; color: inherit; }
.t7-hub-info-name:hover { color: var(--t7-accent-light); }
.t7-app-buttons { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 12px; }
.t7-city-tag-more { border-style: dashed; background: transparent; color: var(--t7-accent-light); }

/* Items Mini Grid */
.t7-items-mini-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 12px; }
.t7-items-mini-card {
    background: var(--t7-bg);
    border: 1px solid var(--t7-border);
    border-radius: var(--t7-r-sm);
    padding: 12px;
    transition: box-shadow 0.2s, border-color 0.2s;
}
.t7-items-mini-card:hover { box-shadow: var(--t7-shadow-sm); border-color: var(--t7-accent-light); }
.t7-items-mini-img { width: 100%; height: 80px; object-fit: contain; margin-bottom: 8px; }

/* ===== FOOTER — navy blue, structured, white text ===== */
.t7-footer {
    background: var(--t7-navy);
    color: #B0BEC5;
    padding: 56px 0 28px;
    margin-top: 60px;
    font-size: 0.88rem;
}
.t7-footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 36px; }
.t7-footer-brand h2 { color: #fff; margin-bottom: 16px; font-size: 1.15rem; font-weight: 700; }
.t7-footer-col h3 { color: #fff; font-size: 0.95rem; margin-bottom: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; font-size: 0.82rem; }
.t7-footer-nav { list-style: none; padding: 0; margin: 0; }
.t7-footer-nav li { margin-bottom: 10px; }
.t7-footer-nav a { color: #B0BEC5; transition: color 0.2s; }
.t7-footer-nav a:hover { color: #fff; }
.t7-footer p { line-height: 1.6; color: #7f8fa6; }
.t7-footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    color: #7f8fa6;
    font-size: 0.82rem;
}
.t7-footer-btm-links { display: flex; gap: 18px; }
.t7-footer-btm-links a { color: #7f8fa6; }
.t7-footer-btm-links a:hover { color: #fff; }

/* ===== PRICING ===== */
.t7-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    align-items: start;
}
.t7-pricing-card {
    background: var(--t7-bg);
    border: 1px solid var(--t7-border);
    border-radius: var(--t7-r);
    padding: 28px 24px;
    transition: box-shadow 0.25s, border-color 0.25s;
    position: relative;
    text-align: center;
}
.t7-pricing-card:hover {
    box-shadow: var(--t7-shadow);
    border-color: var(--t7-accent-light);
}
.t7-pricing-popular {
    border: 2px solid var(--t7-accent-light);
    box-shadow: var(--t7-shadow);
}
.t7-pricing-popular:hover { transform: translateY(-2px); }
.t7-pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--t7-accent-light);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 3px 16px;
    border-radius: var(--t7-r);
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.t7-pricing-logo {
    width: 72px; height: 72px; object-fit: contain;
    margin: 0 auto 14px; display: block; border-radius: var(--t7-r);
}
.t7-pricing-name { font-size: 1.1rem; font-weight: 700; color: var(--t7-navy); margin: 0 0 6px; }
.t7-pricing-desc { font-size: 0.86rem; color: var(--t7-muted); margin: 0 0 18px; }
.t7-pricing-price { margin-bottom: 20px; }
.t7-pricing-amount { font-size: 2.2rem; font-weight: 800; color: var(--t7-navy); letter-spacing: -1px; }
.t7-pricing-period { font-size: 0.86rem; color: var(--t7-muted); }
.t7-pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    text-align: left;
}
.t7-pricing-features li {
    padding: 7px 0;
    border-bottom: 1px solid var(--t7-border);
    font-size: 0.88rem;
    color: var(--t7-text);
    padding-left: 22px;
    position: relative;
}
.t7-pricing-features li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--t7-accent-light);
    font-weight: 700;
}

/* ===== TESTIMONIALS ===== */
.t7-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
}
.t7-testimonial-card {
    background: var(--t7-bg);
    border: 1px solid var(--t7-border);
    border-radius: var(--t7-r);
    padding: 24px;
    transition: box-shadow 0.2s;
    position: relative;
    border-top: 3px solid var(--t7-navy);
}
.t7-testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 12px;
    right: 20px;
    font-size: 3rem;
    line-height: 1;
    color: rgba(27,58,92,0.08);
    font-family: Georgia, serif;
}
.t7-testimonial-card:hover { box-shadow: var(--t7-shadow); }
.t7-testimonial-text {
    font-size: 0.92rem;
    color: var(--t7-text);
    line-height: 1.7;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}
.t7-testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.t7-testimonial-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--t7-border);
}
.t7-testimonial-name { font-weight: 700; font-size: 0.9rem; color: var(--t7-navy); }
.t7-testimonial-role { font-size: 0.8rem; color: var(--t7-muted); }

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .t7-footer-grid { grid-template-columns: 1fr 1fr; }
    .t7-item-hero { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .t7-hero { padding: 48px 0 40px; }
    .t7-h1 { font-size: 26px; letter-spacing: -0.3px; }
    .t7-hero-sub { font-size: 0.95rem; }
    .t7-section { padding: 36px 0; }
    .t7-section-card { padding: 18px; margin-bottom: 16px; }
    .t7-grid-ms { grid-template-columns: 1fr; }
    .t7-grid-auto { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px; }
    .t7-grid-2 { grid-template-columns: 1fr; }
    .t7-info-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
    .t7-promo-grid { grid-template-columns: 1fr; }
    .t7-promo-modern { flex-direction: column; gap: 12px; text-align: center; }
    .t7-hub-title-text { font-size: 22px; }
    .t7-footer-bottom { flex-direction: column; text-align: center; }
    .t7-top-grid { grid-template-columns: 1fr; gap: 8px; }
    .t7-top-specs { display: none; }
    .t7-features-grid { grid-template-columns: 1fr 1fr; }

    .burger-btn { display: flex; }
    .t7-nav-list {
        display: none;
        position: fixed;
        top: 64px; left: 0; right: 0;
        flex-direction: column;
        background: #fff;
        padding: 8px 20px;
        gap: 0;
        box-shadow: 0 8px 24px rgba(0,0,0,0.1);
        z-index: 100;
        height: auto;
        border-bottom: 1px solid var(--t7-border);
    }
    .t7-nav-list.menu-open, .t7-nav-list[data-nav].menu-open { display: flex; }
    .t7-nav-list li { border-bottom: 1px solid var(--t7-border); }
    .t7-nav-list li:last-child .t7-nav-link { background: none; color: var(--t7-accent-light); border-radius: 0; padding: 12px 0; margin-left: 0; height: auto; }
    .t7-nav-link { height: auto; padding: 12px 0; font-size: 0.95rem; border-radius: 0; border-bottom: none; }
}

@media (max-width: 480px) {
    .t7-info-grid { grid-template-columns: 1fr; }
    .t7-header-inner { padding: 0 14px; }
    .t7-container { padding: 0 14px; }
    .t7-features-grid { grid-template-columns: 1fr; }
    .t7-hero-actions { flex-direction: column; align-items: center; }
    .t7-footer-grid { grid-template-columns: 1fr; }
}



/* ============================================================
   AUTO-PATCHED: новые блоки для theme_007
   ============================================================ */

/* Hero service */
.t7-hero-wrapper { max-width: 760px; margin: 0 auto; text-align: center; }
.t7-lead { font-size: 1.15rem; color: #555; margin: 0 0 20px; line-height: 1.6; text-align: center; }
.t7-hero-sub { font-size: 1rem; color: #666; margin: 0 0 24px; text-align: center; }
.t7-hero-btn-wrap { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; justify-content: center; }
.t7-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 #2196F3; background: transparent; color: #2196F3; text-decoration: none; transition: all 0.2s; }
.t7-btn-secondary:hover { background: rgba(33,150,243,0.12); }
.t7-btn-lg { padding: 14px 32px; font-size: 1.05rem; }

/* Trust bar */
.t7-trust-bar { display: flex; gap: 24px; flex-wrap: wrap; margin: 24px 0; padding: 20px 24px; background: rgba(33,150,243,0.12); border-radius: 12px; }
.t7-trust-item { display: flex; align-items: center; gap: 12px; }
.t7-trust-icon { font-size: 1.5rem; }
.t7-trust-text { display: flex; flex-direction: column; }
.t7-trust-text strong { font-size: 1.1rem; font-weight: 700; color: #1B3A5C; }
.t7-trust-text span { font-size: 0.8rem; color: #777; }

/* Steps */
.t7-steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; margin-top: 32px; }
.t7-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 #2196F3; }
.t7-step-num { font-size: 2rem; font-weight: 800; color: #2196F3; opacity: 0.3; margin-bottom: 12px; }
.t7-step-title { font-size: 1rem; font-weight: 700; color: #1B3A5C; margin-bottom: 8px; }
.t7-step-text { font-size: 0.9rem; color: #666; line-height: 1.5; margin: 0; }

/* Tariffs */
.t7-tariffs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; margin-top: 32px; }
.t7-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; }
.t7-tariff-highlighted { border-color: #2196F3; box-shadow: 0 8px 32px rgba(33,150,243,0.12); position: relative; }
.t7-tariff-header { margin-bottom: 20px; }
.t7-tariff-title { font-size: 1.15rem; font-weight: 700; color: #1B3A5C; margin: 0 0 4px; }
.t7-tariff-features { list-style: none; padding: 0; margin: 0 0 24px; flex: 1; }
.t7-tariff-features li { padding: 8px 0; border-bottom: 1px solid #f0f0f0; font-size: 0.9rem; color: #555; }
.t7-tariff-features li::before { content: "✓ "; color: #2196F3; font-weight: 700; }

/* CTA section */
.t7-cta-section { background: rgba(33,150,243,0.12); border: 2px solid #2196F3; color: #1B3A5C; text-align: center; padding: 60px 20px; border-radius: 16px; margin: 0; }
.t7-cta-section h2 { color: #1B3A5C; font-size: 2rem; margin-bottom: 16px; }
.t7-cta-section p { color: #444; font-size: 1.1rem; margin-bottom: 28px; }
.t7-cta-section .t7-section-title { color: #1B3A5C; }
.t7-cta-section .t7-lead { color: #444; }

/* FAQ */
.t7-faq-list { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }

/* Features */
.t7-feature-icon { font-size: 2rem; margin-bottom: 12px; }
.t7-feature-title { font-size: 1rem; font-weight: 700; color: #1B3A5C; margin-bottom: 8px; }
.t7-feature-desc { font-size: 0.9rem; color: #666; line-height: 1.5; margin: 0; }

/* Prose */
.t7-prose { max-width: 800px; line-height: 1.8; color: #444; }
.t7-prose h2, .t7-prose h3 { color: #1B3A5C; }

/* Utility */
.t7-hub-all-link { display: inline-block; margin-top: 16px; color: #2196F3; font-weight: 600; text-decoration: none; }
.t7-hub-all-link:hover { color: #1565C0; text-decoration: underline; }
.t7-btn-outline { border: 2px solid #2196F3; color: #2196F3; 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; }
.t7-btn-outline:hover { background: rgba(33,150,243,0.12); }
.t7-show-more { text-align: center; margin-top: 24px; }
.t7-mt-20 { margin-top: 20px; }
.t7-max-800 { max-width: 800px; }
.t7-m-auto { margin-left: auto; margin-right: auto; }
.t7-flex-center { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }
.t7-hidden { display: none; }
.t7-flex-sb { display: flex; justify-content: space-between; align-items: baseline; flex-wrap: wrap; gap: 8px; }
.t7-mb-0 { margin-bottom: 0; }
.t7-badge-accent { background: #2196F3; color: #fff; padding: 2px 10px; border-radius: 20px; font-size: 0.75rem; font-weight: 600; }
.t7-card-link { text-decoration: none; color: inherit; display: block; }
.t7-badge-wrap { display: flex; flex-wrap: wrap; gap: 6px; }
.t7-mb-15 { margin-bottom: 15px; }
.t7-mb-30 { margin-bottom: 30px; }
.t7-pt-0 { padding-top: 0; }
.t7-pt-10 { padding-top: 10px; }
.t7-pt-20 { padding-top: 20px; }
.t7-pt-30 { padding-top: 30px; }
.t7-body { background: #f8fafb; }
.t7-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 — в самом конце */
.t7-cta-section.t7-cta-section .t7-section-title { color: #1B3A5C; }
.t7-cta-section.t7-cta-section .t7-section-title::after { background: #2196F3; }
.t7-cta-section.t7-cta-section .t7-lead { color: #444; }
