/* ============================================================
   Theme 014 — Dental Clinic
   Clean, clinical, soft-rounded medical aesthetic
   Primary: #00BCD4 (cyan/teal)  Secondary: #B2EBF2 (light blue)
   ============================================================ */

/* ===== 1. ROOT VARIABLES ===== */
:root {
    --t14-primary: #00BCD4;
    --t14-primary-light: #B2EBF2;
    --t14-primary-pale: rgba(0,188,212,0.08);
    --t14-primary-hover: #00ACC1;
    --t14-dark: #004D40;
    --t14-text: #3e4e54;
    --t14-muted: #78909C;
    --t14-light: #CFD8DC;
    --t14-bg: #ffffff;
    --t14-bg-alt: #F0FDFA;
    --t14-border: #E0F2F1;
    --t14-r: 16px;
    --t14-r-sm: 10px;
    --t14-shadow-sm: 0 1px 4px rgba(0,0,0,0.04);
    --t14-shadow: 0 4px 16px rgba(0,0,0,0.06);
    --t14-shadow-lg: 0 12px 40px rgba(0,0,0,0.09);
    --t14-font: 'Inter', system-ui, -apple-system, sans-serif;
    --t14-w: 1100px;
}

/* ===== 2. BODY / RESET ===== */
*, *::before, *::after { box-sizing: border-box; }

body, .t14-body {
    background: var(--t14-bg);
    color: var(--t14-text);
    font-family: var(--t14-font);
    margin: 0;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}
a { color: var(--t14-primary); text-decoration: none; }
a:hover { color: var(--t14-primary-hover); text-decoration: none; }

/* ===== 3. HEADER ===== */
.t14-header {
    background: var(--t14-bg);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--t14-border);
}
.t14-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--t14-w);
    margin: 0 auto;
    padding: 0 28px;
    height: 64px;
}
.t14-logo {
    font-size: 19px;
    font-weight: 700;
    color: var(--t14-dark);
    text-decoration: none;
    letter-spacing: -0.3px;
}
.t14-nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 4px;
    align-items: center;
    height: 64px;
}
.t14-nav-link {
    display: flex;
    align-items: center;
    padding: 7px 14px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--t14-text);
    text-decoration: none;
    border-radius: var(--t14-r);
    transition: color 0.2s, background 0.2s;
    height: auto;
    border-bottom: none;
}
.t14-nav-link:hover {
    background: var(--t14-primary-pale);
    color: var(--t14-primary);
}
.t14-nav-list li:last-child .t14-nav-link {
    background: var(--t14-primary);
    color: #fff;
    font-weight: 600;
    padding: 7px 20px;
    border-radius: var(--t14-r);
}
.t14-nav-list li:last-child .t14-nav-link:hover {
    background: var(--t14-primary-hover);
}

/* Burger */
.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    flex-direction: column;
    gap: 5px;
    z-index: 101;
}
.burger-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--t14-dark);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}
.burger-btn.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger-btn.active span:nth-child(2) { opacity: 0; }
.burger-btn.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== 4. HERO ===== */
.t14-hero {
    background: linear-gradient(135deg, #E0F7FA 0%, #ffffff 60%, #F0FDFA 100%);
    padding: 88px 0 72px;
    position: relative;
    overflow: hidden;
}
.t14-hero::before {
    content: '';
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(0,188,212,0.06);
    top: -60px;
    right: -40px;
    box-shadow:
        -200px 120px 0 80px rgba(178,235,242,0.10),
        -500px 60px 0 60px rgba(0,188,212,0.04);
}
.t14-hero::after {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(178,235,242,0.10);
    bottom: -40px;
    left: -30px;
}
.t14-h1 {
    font-size: 44px;
    font-weight: 700;
    color: var(--t14-dark);
    margin-bottom: 18px;
    letter-spacing: -1px;
    line-height: 1.15;
}
.t14-hero-sub {
    font-size: 1.1rem;
    color: var(--t14-muted);
    max-width: 540px;
    margin: 0 auto 32px;
    line-height: 1.75;
}
.t14-hero-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}
.t14-hero-btn {
    padding: 13px 32px;
    font-size: 0.95rem;
    border-radius: var(--t14-r);
}

/* ===== 5. BUTTONS ===== */
.t14-btn-primary {
    background: var(--t14-primary);
    color: #fff;
    padding: 13px 32px;
    border-radius: var(--t14-r);
    display: inline-block;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: background 0.25s, transform 0.2s;
    text-decoration: none;
}
.t14-btn-primary:hover {
    background: var(--t14-primary-hover);
    transform: translateY(-2px);
    color: #fff;
}
.t14-btn-outline {
    background: transparent;
    color: var(--t14-primary);
    border: 1px solid var(--t14-primary);
    padding: 12px 30px;
    border-radius: var(--t14-r);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.25s, color 0.25s;
    display: inline-block;
    text-decoration: none;
}
.t14-btn-outline:hover { background: var(--t14-primary); color: #fff; }

/* ===== 6. BREADCRUMBS ===== */
.t14-breadcrumbs { padding: 12px 0; background: var(--t14-bg); border-bottom: 1px solid var(--t14-border); }
.t14-bc-list { display: flex; flex-wrap: wrap; list-style: none; margin: 0; padding: 0; font-size: 0.84rem; }
.t14-bc-item { display: flex; align-items: center; color: var(--t14-muted); }
.t14-bc-item a { color: var(--t14-primary); }
.t14-bc-item a:hover { text-decoration: underline; }
.t14-bc-item + .t14-bc-item::before { content: "/"; margin: 0 8px; color: var(--t14-light); font-size: 0.9rem; }
.t14-bc-item:last-child span { color: var(--t14-dark); font-weight: 600; }

/* ===== 7. LAYOUT UTILS ===== */
.t14-section { padding: 64px 0; }
.t14-section:nth-child(even) { background: var(--t14-bg-alt); }
.t14-container { max-width: var(--t14-w); margin: 0 auto; padding: 0 28px; }
.t14-text-center { text-align: center; }
.t14-text-sm { font-size: 0.85rem; }
.t14-text-muted { color: var(--t14-muted); }
.t14-subtitle { font-size: 1.05rem; color: var(--t14-muted); }
.t14-mb-0 { margin-bottom: 0 !important; }
.t14-mb-15 { margin-bottom: 15px; }
.t14-mb-30 { margin-bottom: 30px; }
.t14-mt-20 { margin-top: 20px; }
.t14-pt-0 { padding-top: 0 !important; }
.t14-pt-10 { padding-top: 10px !important; }
.t14-pt-20 { padding-top: 20px !important; }
.t14-pt-30 { padding-top: 30px !important; }
.t14-max-800 { max-width: 800px; }
.t14-m-auto { margin: 0 auto; }
.t14-hidden { display: none !important; }
.t14-flex-sb { display: flex; justify-content: space-between; align-items: baseline; }
.t14-flex-center { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }
.t14-bg-alt { background: var(--t14-bg-alt); }
.t14-bg-white { background: var(--t14-bg); }
.t14-bg-page { background: var(--t14-bg); }
.t14-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.t14-grid-auto { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 22px; }

/* ===== 8. SECTION TITLES — teal underline accent ===== */
.t14-section-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--t14-dark);
    margin-bottom: 28px;
    letter-spacing: -0.3px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}
.t14-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--t14-primary);
    border-radius: 2px;
}
.t14-text-center .t14-section-title::after,
.t14-section-title.t14-text-center::after {
    left: 50%;
    transform: translateX(-50%);
}
.t14-section-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--t14-primary-pale);
    color: var(--t14-primary);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: var(--t14-r);
    margin-left: 8px;
    vertical-align: middle;
}

/* ===== 9. FEATURES — cards with teal top-border ===== */
.t14-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
}
.t14-feature-card {
    background: var(--t14-bg);
    border-radius: var(--t14-r);
    padding: 32px 24px 24px;
    position: relative;
    border: 1px solid var(--t14-border);
    border-top: 3px solid var(--t14-primary);
    transition: box-shadow 0.3s, transform 0.3s;
    text-align: left;
}
.t14-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--t14-shadow);
}
.t14-feature-icon {
    width: 44px;
    height: 44px;
    background: var(--t14-primary-pale);
    color: var(--t14-primary);
    border-radius: var(--t14-r);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 20px;
}
.t14-feature-title { font-size: 1rem; font-weight: 700; color: var(--t14-dark); margin: 0 0 8px; }
.t14-feature-desc { font-size: 0.88rem; color: var(--t14-muted); margin: 0; line-height: 1.65; }

/* ===== 10. TOP HUB CARDS ===== */
.t14-top-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}
.t14-top-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    background: var(--t14-bg);
    border-radius: var(--t14-r);
    padding: 0;
    text-decoration: none;
    color: var(--t14-text);
    border: 1px solid var(--t14-border);
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
}
.t14-top-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--t14-shadow-lg);
}
.t14-top-img-wrap {
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--t14-bg-alt);
    padding: 16px;
}
.t14-top-img { max-width: 100%; max-height: 100%; object-fit: contain; }
.t14-top-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--t14-dark);
    line-height: 1.3;
    padding: 14px 16px 0;
    text-align: center;
}
.t14-top-meta {
    font-size: 0.82rem;
    color: var(--t14-primary);
    font-weight: 600;
    margin-top: 4px;
    padding: 0 16px;
    text-align: center;
}
.t14-top-specs { display: flex; flex-wrap: wrap; gap: 6px; padding: 10px 16px 16px; justify-content: center; }
.t14-top-spec {
    font-size: 0.75rem;
    color: var(--t14-muted);
    background: var(--t14-bg-alt);
    padding: 2px 8px;
    border-radius: var(--t14-r-sm);
}
.t14-top-spec strong { color: var(--t14-dark); }

/* ===== 11. CARDS ===== */
.t14-card {
    background: var(--t14-bg);
    border: 1px solid var(--t14-border);
    border-radius: var(--t14-r);
    padding: 24px;
    transition: transform 0.3s, box-shadow 0.3s;
    margin-bottom: 18px;
}
.t14-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--t14-shadow);
}
.t14-card-title { font-size: 1.05rem; font-weight: 700; color: var(--t14-dark); margin-bottom: 6px; }
.t14-card-price { color: var(--t14-primary); font-weight: 700; font-size: 1.15rem; }
.t14-spec-list { display: flex; flex-direction: column; }
.t14-card-flex { display: flex; flex-direction: column; justify-content: space-between; height: 100%; }
.t14-card-desc {
    font-size: 0.9rem;
    color: var(--t14-muted);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 18px;
}
.t14-btn-full { display: block; text-align: center; }
.t14-card-img-wrap {
    height: 100px;
    background: var(--t14-bg-alt);
    margin-bottom: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: var(--t14-r-sm);
}
.t14-card-link { text-decoration: none; color: inherit; display: block; }
.t14-card-link:hover { text-decoration: none; }
.t14-badge-wrap { margin-bottom: 6px; }
.t14-badge-sm {
    background: var(--t14-bg-alt);
    padding: 3px 10px;
    border-radius: var(--t14-r-sm);
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid var(--t14-border);
}
.t14-badge-accent { background: var(--t14-primary-pale); color: var(--t14-primary); font-weight: 600; border-color: rgba(0,188,212,0.15); }
.t14-show-more { text-align: center; margin-top: 24px; }
.t14-all-link {
    color: var(--t14-primary);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.t14-all-link:hover { color: var(--t14-primary-hover); }

/* ===== 12. HUB LIST ===== */
.t14-hub-title { margin-bottom: 28px; font-size: 1.9rem; font-weight: 700; color: var(--t14-dark); letter-spacing: -0.3px; }
.t14-hub-list { display: flex; flex-wrap: wrap; gap: 10px; }
.t14-hub-item {
    padding: 9px 20px;
    background: var(--t14-bg);
    border: 1px solid var(--t14-border);
    border-radius: var(--t14-r);
    text-decoration: none;
    color: var(--t14-text);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.25s;
}
.t14-hub-item:hover {
    background: var(--t14-primary);
    color: #fff;
    border-color: var(--t14-primary);
}
.t14-hub-badge {
    padding: 16px 22px;
    background: var(--t14-bg);
    border: 1px solid var(--t14-border);
    border-radius: var(--t14-r);
    text-decoration: none;
    color: var(--t14-text);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    transition: all 0.25s;
}
.t14-hub-badge:hover {
    box-shadow: var(--t14-shadow);
    border-color: var(--t14-primary-light);
}

/* ===== 13. DETAIL PAGES ===== */
.t14-grid-ms { display: grid; grid-template-columns: 1fr 300px; gap: 36px; }
.t14-sticky { position: sticky; top: 84px; }
.t14-item-row { display: flex; justify-content: space-between; padding: 11px 0; }
.t14-border-b { border-bottom: 1px solid var(--t14-border); }
.t14-card-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 18px; }

/* ===== 14. SECTION CARD / INFO GRID ===== */
.t14-section-card {
    background: var(--t14-bg);
    border: 1px solid var(--t14-border);
    border-radius: var(--t14-r);
    padding: 32px;
    margin-bottom: 24px;
}
.t14-info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 12px; }
.t14-info-item {
    padding: 16px;
    background: var(--t14-bg-alt);
    border-radius: var(--t14-r-sm);
    border: 1px solid var(--t14-border);
}
.t14-info-label {
    display: block;
    font-size: 0.76rem;
    color: var(--t14-muted);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.t14-info-value { display: block; font-weight: 700; color: var(--t14-dark); font-size: 1rem; }

/* ===== 15. CONTACTS ===== */
.t14-contact-row { display: flex; align-items: center; gap: 15px; margin-bottom: 12px; }
.t14-social-links { display: flex; gap: 10px; }
.t14-social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: var(--t14-r);
    background: var(--t14-primary-pale);
    color: var(--t14-primary);
    text-decoration: none;
    transition: all 0.25s;
    font-weight: 700;
    border: 1px solid transparent;
}
.t14-social-btn:hover {
    background: var(--t14-primary);
    color: #fff;
    transform: translateY(-2px);
}

/* ===== 16. PROMO ===== */
.t14-promo-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 16px; margin-top: 20px; }
.t14-promo-modern {
    background: var(--t14-bg);
    border: 1px solid var(--t14-border);
    border-radius: var(--t14-r);
    padding: 22px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: box-shadow 0.3s;
}
.t14-promo-modern:hover { box-shadow: var(--t14-shadow); }
.t14-promo-info h3 { margin: 0 0 4px; font-size: 1rem; color: var(--t14-dark); }
.t14-promo-sub { margin: 0; font-size: 0.82rem; color: var(--t14-muted); }
.t14-promo-wrap { position: relative; }
.t14-promo-box {
    background: var(--t14-primary-pale);
    border: 1px dashed var(--t14-primary-light);
    padding: 10px 20px;
    border-radius: var(--t14-r-sm);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background 0.2s;
    min-width: 130px;
    justify-content: center;
}
.t14-promo-box:hover { background: rgba(0,188,212,0.12); }
.t14-promo-text {
    font-family: 'SFMono-Regular', Consolas, monospace;
    font-weight: 700;
    font-size: 1rem;
    color: var(--t14-primary);
    letter-spacing: 1px;
}
.t14-copy-icon { color: var(--t14-primary-light); }
.copy-tooltip-x {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--t14-dark);
    color: #fff;
    padding: 5px 12px;
    border-radius: var(--t14-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(--t14-dark);
}
.copy-tooltip-x.visible { opacity: 1; bottom: -45px; }

/* ===== 17. CITY TAGS ===== */
.t14-city-list { display: flex; flex-wrap: wrap; gap: 8px; }
.t14-city-tag {
    padding: 7px 16px;
    background: var(--t14-bg);
    border: 1px solid var(--t14-border);
    color: var(--t14-text);
    text-decoration: none;
    border-radius: var(--t14-r);
    font-size: 0.88rem;
    font-weight: 500;
    transition: all 0.25s;
}
.t14-city-tag:hover {
    background: var(--t14-primary);
    color: #fff;
    border-color: var(--t14-primary);
}
.t14-city-tag-more {
    border-style: dashed;
    background: transparent;
    color: var(--t14-primary);
    border-color: var(--t14-light);
}

/* ===== 18. ACCORDION ===== */
.t14-accordion {
    background: var(--t14-bg);
    border: 1px solid var(--t14-border);
    border-radius: var(--t14-r);
    margin-bottom: 8px;
    overflow: hidden;
}
.t14-accordion summary {
    padding: 18px 24px;
    font-weight: 600;
    font-size: 1rem;
    color: var(--t14-dark);
    cursor: pointer;
    list-style: none;
    position: relative;
    user-select: none;
    transition: background 0.2s;
}
.t14-accordion summary:hover { background: var(--t14-bg-alt); }
.t14-accordion summary::-webkit-details-marker { display: none; }
.t14-accordion summary::after {
    content: '+';
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    width: 26px;
    height: 26px;
    background: var(--t14-primary-pale);
    color: var(--t14-primary);
    border-radius: var(--t14-r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.3s;
}
.t14-accordion[open] summary::after {
    content: '\2212';
    background: var(--t14-primary);
    color: #fff;
    transform: translateY(-50%);
}
.t14-accordion .t14-accordion-content {
    padding: 0 24px 24px;
    border-top: 1px solid var(--t14-border);
    margin-top: 6px;
    padding-top: 18px;
    color: var(--t14-muted);
    line-height: 1.75;
}

/* ===== 19. PROSE ===== */
.t14-prose h2 { margin-top: 2rem; margin-bottom: 1rem; color: var(--t14-dark); }
.t14-prose h3 { margin-top: 1.5rem; margin-bottom: 0.8rem; color: var(--t14-dark); }
.t14-prose ul { padding-left: 0; margin: 15px 0; list-style: none; }
.t14-prose li { margin-bottom: 10px; padding-left: 22px; position: relative; }
.t14-prose li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: var(--t14-primary-light);
    border-radius: 50%;
}
.t14-prose strong { color: var(--t14-dark); }

/* ===== 20. ERROR PAGE ===== */
.t14-error-page { padding: 100px 20px; max-width: 480px; margin: 0 auto; text-align: center; }
.t14-error-code {
    font-size: 8rem;
    font-weight: 700;
    line-height: 1;
    color: var(--t14-primary-light);
    margin-bottom: 10px;
}
.t14-error-title { font-size: 1.5rem; font-weight: 700; color: var(--t14-dark); margin-bottom: 12px; }
.t14-error-desc { font-size: 1rem; color: var(--t14-muted); margin-bottom: 28px; line-height: 1.7; }
.t14-error-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* ===== 21. GEO PAGE ===== */
.t14-geo-container { max-width: var(--t14-w); }
.t14-hub-list-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 18px; }
.t14-hub-summary {
    background: var(--t14-bg);
    border: 1px solid var(--t14-border);
    border-radius: var(--t14-r);
    padding: 22px;
    transition: box-shadow 0.3s, transform 0.3s;
}
.t14-hub-summary:hover { box-shadow: var(--t14-shadow); transform: translateY(-3px); }
.t14-hub-summary-head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.t14-hub-summary-logo { width: 44px; height: 44px; object-fit: contain; border-radius: var(--t14-r); }
.t14-hub-summary-title { font-weight: 700; font-size: 1.05rem; color: var(--t14-dark); text-decoration: none; }
.t14-hub-summary-title:hover { color: var(--t14-primary); }
.t14-hub-summary-specs { display: flex; flex-wrap: wrap; gap: 6px; }
.t14-hub-summary-spec {
    font-size: 0.82rem;
    color: var(--t14-muted);
    background: var(--t14-bg-alt);
    padding: 3px 10px;
    border-radius: var(--t14-r-sm);
    border: 1px solid var(--t14-border);
}
.t14-geo-info-grid { margin-top: 15px; }
.t14-geo-promo-wrap { margin-top: 15px; }
.t14-geo-items-wrap { margin-top: 20px; }
.t14-geo-show-more { text-align: center; margin-top: 15px; }
.t14-geo-apps-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px; justify-content: center; }
.t14-app-btn { display: inline-block; line-height: 0; }
.t14-app-btn-img { height: 44px; width: auto; display: block; }
.t14-geo-hub-footer { margin-top: 20px; text-align: right; }
.t14-geo-zone-desc {
    margin-top: 20px;
    padding: 16px 20px;
    background: var(--t14-primary-pale);
    border-left: 3px solid var(--t14-primary);
    border-radius: var(--t14-r-sm);
    font-size: 0.95rem;
    color: var(--t14-muted);
}
.geo-map {
    width: 100%;
    height: 420px;
    background: var(--t14-bg-alt);
    border-radius: var(--t14-r);
    margin-top: 14px;
    border: 1px solid var(--t14-border);
}

/* ===== 22. HUB PAGE ===== */
.t14-hub-logo-wrap {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--t14-border);
}
.t14-hub-logo-img { height: 64px; object-fit: contain; border-radius: var(--t14-r); }
.t14-hub-title-text { margin: 0; font-size: 30px; font-weight: 700; color: var(--t14-dark); letter-spacing: -0.3px; }
.t14-hub-sidebar {}
.t14-hub-specs-title { margin-top: 20px; }
.t14-mini-link { text-decoration: none; color: inherit; display: block; text-align: center; }
.t14-mini-name { font-weight: 600; font-size: 0.9rem; }
.t14-app-col { display: flex; flex-direction: column; gap: 10px; }

/* ===== 23. ITEM PAGE ===== */
.t14-item-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: start; }
.t14-item-img-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--t14-bg-alt);
    border-radius: var(--t14-r);
    padding: 24px;
    border: 1px solid var(--t14-border);
}
.t14-item-h1 { margin-bottom: 20px; }
.t14-item-img { max-width: 100%; height: auto; object-fit: contain; }
.t14-item-specs-title { margin-top: 0; }
.t14-hub-info-row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.t14-hub-info-logo { width: 44px; height: 44px; object-fit: contain; border-radius: var(--t14-r); }
.t14-hub-info-meta {}
.t14-hub-info-label { font-size: 0.85rem; color: var(--t14-muted); }
.t14-hub-info-name { font-weight: 700; font-size: 1.15rem; text-decoration: none; color: inherit; }
.t14-hub-info-name:hover { color: var(--t14-primary); }
.t14-app-buttons { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 15px; }

/* ===== 24. ITEMS MINI GRID ===== */
.t14-items-mini-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 12px; }
.t14-items-mini-card {
    background: var(--t14-bg);
    border: 1px solid var(--t14-border);
    border-radius: var(--t14-r-sm);
    padding: 12px;
    transition: box-shadow 0.25s, transform 0.25s;
}
.t14-items-mini-card:hover { box-shadow: var(--t14-shadow); transform: translateY(-2px); }
.t14-items-mini-img { width: 100%; height: 80px; object-fit: contain; margin-bottom: 8px; }

/* ===== 25. FOOTER — dark teal ===== */
.t14-footer {
    background: var(--t14-dark);
    color: #B2DFDB;
    padding: 64px 0 32px;
    margin-top: 72px;
    font-size: 0.9rem;
    border-top: none;
}
.t14-footer a { color: #B2DFDB; }
.t14-footer a:hover { color: #fff; }
.t14-footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 36px; }
.t14-footer-brand h2 { color: #fff; margin-bottom: 16px; font-size: 1.2rem; font-weight: 700; }
.t14-footer-col h3 { color: #fff; font-size: 0.95rem; margin-bottom: 16px; font-weight: 700; }
.t14-footer-nav { list-style: none; padding: 0; margin: 0; }
.t14-footer-nav li { margin-bottom: 10px; }
.t14-footer-nav a { color: #B2DFDB; transition: color 0.2s; }
.t14-footer-nav a:hover { color: #fff; }
.t14-footer p { line-height: 1.65; color: #80CBC4; }
.t14-footer-bottom {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.12);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    color: #80CBC4;
    font-size: 0.84rem;
}
.t14-footer-btm-links { display: flex; gap: 18px; }
.t14-footer-btm-links a { color: #80CBC4; }
.t14-footer-btm-links a:hover { color: #fff; }

/* ===== 26. PRICING ===== */
.t14-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
    align-items: start;
}
.t14-pricing-card {
    background: var(--t14-bg);
    border-radius: var(--t14-r);
    padding: 32px 28px;
    border: 1px solid var(--t14-border);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    text-align: center;
}
.t14-pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--t14-shadow);
}
.t14-pricing-popular {
    border: 2px solid var(--t14-primary);
}
.t14-pricing-popular:hover { transform: translateY(-4px); }
.t14-pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--t14-primary);
    color: #fff;
    font-size: 0.76rem;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: var(--t14-r);
    white-space: nowrap;
}
.t14-pricing-logo {
    width: 72px;
    height: 72px;
    object-fit: contain;
    margin: 0 auto 14px;
    display: block;
    border-radius: var(--t14-r);
}
.t14-pricing-name { font-size: 1.15rem; font-weight: 700; color: var(--t14-dark); margin: 0 0 6px; }
.t14-pricing-desc { font-size: 0.88rem; color: var(--t14-muted); margin: 0 0 18px; }
.t14-pricing-price { margin-bottom: 22px; }
.t14-pricing-amount { font-size: 2.2rem; font-weight: 700; color: var(--t14-dark); letter-spacing: -0.5px; }
.t14-pricing-period { font-size: 0.88rem; color: var(--t14-muted); }
.t14-pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    text-align: left;
}
.t14-pricing-features li {
    padding: 7px 0;
    border-bottom: 1px solid var(--t14-border);
    font-size: 0.9rem;
    color: var(--t14-text);
    padding-left: 22px;
    position: relative;
}
.t14-pricing-features li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--t14-primary);
    font-weight: 700;
}

/* ===== 27. TESTIMONIALS ===== */
.t14-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
    gap: 22px;
}
.t14-testimonial-card {
    background: var(--t14-bg);
    border: 1px solid var(--t14-border);
    border-radius: var(--t14-r);
    padding: 28px;
    transition: box-shadow 0.3s;
    position: relative;
}
.t14-testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 12px;
    left: 20px;
    font-size: 3.5rem;
    line-height: 1;
    color: var(--t14-primary-light);
    opacity: 0.3;
    font-family: Georgia, serif;
}
.t14-testimonial-card:hover { box-shadow: var(--t14-shadow); }
.t14-testimonial-text {
    font-size: 0.95rem;
    color: var(--t14-text);
    line-height: 1.7;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}
.t14-testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.t14-testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--t14-primary-pale);
}
.t14-testimonial-name { font-weight: 700; font-size: 0.92rem; color: var(--t14-dark); }
.t14-testimonial-role { font-size: 0.82rem; color: var(--t14-muted); }

/* ===== 28. RESPONSIVE ===== */
@media (max-width: 991px) {
    .t14-footer-grid { grid-template-columns: 1fr 1fr; }
    .t14-item-hero { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .t14-hero { padding: 56px 0 44px; }
    .t14-h1 { font-size: 28px; letter-spacing: -0.5px; }
    .t14-hero-sub { font-size: 1rem; }
    .t14-section { padding: 44px 0; }
    .t14-section-card { padding: 20px; margin-bottom: 18px; }
    .t14-grid-ms { grid-template-columns: 1fr; }
    .t14-grid-auto { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 14px; }
    .t14-grid-2 { grid-template-columns: 1fr; }
    .t14-info-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .t14-promo-grid { grid-template-columns: 1fr; }
    .t14-promo-modern { flex-direction: column; gap: 14px; text-align: center; }
    .t14-hub-title-text { font-size: 22px; }
    .t14-footer-bottom { flex-direction: column; text-align: center; }
    .t14-top-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px; }
    .t14-top-specs { display: none; }
    .t14-features-grid { grid-template-columns: 1fr 1fr; }

    .burger-btn { display: flex; }
    .t14-nav-list {
        display: none;
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--t14-bg);
        padding: 8px 24px;
        gap: 0;
        box-shadow: 0 12px 30px rgba(0,0,0,0.08);
        border-bottom: 1px solid var(--t14-border);
        z-index: 100;
        height: auto;
    }
    .t14-nav-list.menu-open, .t14-nav-list[data-nav].menu-open { display: flex; }
    .t14-nav-list li { border-bottom: 1px solid var(--t14-border); }
    .t14-nav-list li:last-child .t14-nav-link {
        background: none;
        color: var(--t14-primary);
        border-radius: 0;
        padding: 14px 0;
    }
    .t14-nav-link { height: auto; padding: 14px 0; font-size: 1rem; border-radius: 0; }
}

@media (max-width: 480px) {
    .t14-info-grid { grid-template-columns: 1fr; }
    .t14-header-inner { padding: 0 16px; }
    .t14-container { padding: 0 16px; }
    .t14-features-grid { grid-template-columns: 1fr; }
    .t14-hero-actions { flex-direction: column; align-items: center; }
    .t14-footer-grid { grid-template-columns: 1fr; }
    .t14-top-grid { grid-template-columns: 1fr 1fr; }
}
