:root {
    --t8-accent: #E8A838;
    --t8-accent-dark: #C48A20;
    --t8-accent-glow: rgba(232,168,56,0.15);
    --t8-accent-gradient: linear-gradient(135deg, #E8A838 0%, #D4922A 100%);
    --t8-secondary: #6B8E23;
    --t8-secondary-glow: rgba(107,142,35,0.12);
    --t8-dark: #3E2723;
    --t8-text: #5D4037;
    --t8-muted: #8D6E63;
    --t8-light: #D7CCC8;
    --t8-bg: #FFFBF0;
    --t8-bg-alt: #FFF8E7;
    --t8-bg-card: #FFFFFF;
    --t8-bg-hero: linear-gradient(170deg, #FFFBF0 0%, #FFFFFF 50%, #FFF8E7 100%);
    --t8-border: #EFEBE9;
    --t8-r: 10px;
    --t8-r-sm: 8px;
    --t8-r-pill: 50px;
    --t8-shadow-sm: 0 2px 8px rgba(62,39,35,0.06);
    --t8-shadow: 0 8px 28px rgba(62,39,35,0.08);
    --t8-shadow-lg: 0 16px 48px rgba(62,39,35,0.12);
    --t8-shadow-warm: 0 4px 20px rgba(232,168,56,0.15);
    --t8-font: 'Inter', system-ui, -apple-system, sans-serif;
    --t8-w: 1120px;
}

*, *::before, *::after { box-sizing: border-box; }

body, .t8-body {
    background: var(--t8-bg);
    color: var(--t8-text);
    font-family: var(--t8-font);
    margin: 0;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    font-weight: 400;
    letter-spacing: 0.01em;
}
a { color: var(--t8-accent-dark); text-decoration: none; }
a:hover { color: var(--t8-accent); text-decoration: none; }

/* ===== HEADER — warm white, earthy navigation ===== */
.t8-header {
    background: rgba(255,251,240,0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(62,39,35,0.06);
}
.t8-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--t8-w);
    margin: 0 auto;
    padding: 0 28px;
    height: 72px;
}
.t8-logo {
    font-size: 21px;
    font-weight: 800;
    color: var(--t8-dark);
    text-decoration: none;
    letter-spacing: -0.3px;
}
.t8-nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 4px;
    align-items: center;
    height: 72px;
}
.t8-nav-link {
    display: flex;
    align-items: center;
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--t8-text);
    text-decoration: none;
    border-radius: var(--t8-r-sm);
    transition: all 0.2s;
    height: auto;
    border-bottom: none;
}
.t8-nav-link:hover {
    background: var(--t8-accent-glow);
    color: var(--t8-accent-dark);
}
/* Last nav link as button */
.t8-nav-list li:last-child .t8-nav-link {
    background: var(--t8-accent-gradient);
    color: #fff;
    font-weight: 600;
    padding: 8px 22px;
    border-radius: var(--t8-r-pill);
}
.t8-nav-list li:last-child .t8-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(--t8-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 — warm cream gradient, nature-inspired ===== */
.t8-hero {
    background: var(--t8-bg-hero);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}
.t8-hero::before {
    content: '';
    position: absolute;
    top: -160px; right: -80px;
    width: 480px; height: 480px;
    background: radial-gradient(circle, rgba(232,168,56,0.10) 0%, transparent 65%);
    border-radius: 50%;
}
.t8-hero::after {
    content: '';
    position: absolute;
    bottom: -120px; left: -60px;
    width: 380px; height: 380px;
    background: radial-gradient(circle, rgba(107,142,35,0.08) 0%, transparent 65%);
    border-radius: 50%;
}
.t8-h1 {
    font-size: 48px;
    font-weight: 800;
    color: var(--t8-dark);
    margin-bottom: 20px;
    letter-spacing: -1px;
    line-height: 1.15;
}
.t8-hero-sub {
    font-size: 1.15rem;
    color: var(--t8-muted);
    max-width: 580px;
    margin: 0 auto 36px;
    line-height: 1.75;
}
.t8-hero-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}
.t8-hero-btn {
    padding: 14px 34px;
    font-size: 0.95rem;
    border-radius: var(--t8-r-sm);
    box-shadow: 0 4px 18px rgba(232,168,56,0.3);
}

/* ===== BUTTONS — warm amber, 8px radius ===== */
.t8-btn-primary {
    background: var(--t8-accent-gradient);
    color: #fff;
    padding: 14px 36px;
    border-radius: var(--t8-r-sm);
    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(232,168,56,0.3);
}
.t8-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(232,168,56,0.4);
    color: #fff;
}
.t8-btn-outline {
    background: transparent;
    color: var(--t8-accent-dark);
    border: 2px solid var(--t8-accent);
    padding: 12px 32px;
    border-radius: var(--t8-r-sm);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s;
    display: inline-block;
    text-decoration: none;
}
.t8-btn-outline:hover { background: var(--t8-accent); color: #fff; }

/* ===== BREADCRUMBS ===== */
.t8-breadcrumbs { padding: 14px 0; background: var(--t8-bg-alt); }
.t8-bc-list { display: flex; flex-wrap: wrap; list-style: none; margin: 0; padding: 0; font-size: 0.84rem; }
.t8-bc-item { display: flex; align-items: center; color: var(--t8-muted); }
.t8-bc-item a { color: var(--t8-accent-dark); }
.t8-bc-item a:hover { text-decoration: underline; }
.t8-bc-item + .t8-bc-item::before { content: "\203A"; margin: 0 10px; color: var(--t8-light); font-size: 1.1rem; }
.t8-bc-item:last-child span { color: var(--t8-dark); font-weight: 600; }

/* ===== LAYOUT UTILITIES ===== */
.t8-section { padding: 72px 0; }
.t8-section:nth-child(even) { background: var(--t8-bg-alt); }
.t8-container { max-width: var(--t8-w); margin: 0 auto; padding: 0 28px; }
.t8-text-center { text-align: center; }
.t8-text-sm { font-size: 0.85rem; }
.t8-text-muted { color: var(--t8-muted); }
.t8-subtitle { font-size: 1.1rem; color: var(--t8-muted); }
.t8-mb-0 { margin-bottom: 0 !important; }
.t8-mb-15 { margin-bottom: 15px; }
.t8-mb-30 { margin-bottom: 30px; }
.t8-mt-20 { margin-top: 20px; }
.t8-pt-0 { padding-top: 0 !important; }
.t8-pt-10 { padding-top: 10px !important; }
.t8-pt-20 { padding-top: 20px !important; }
.t8-pt-30 { padding-top: 30px !important; }
.t8-max-800 { max-width: 800px; }
.t8-m-auto { margin: 0 auto; }
.t8-hidden { display: none !important; }
.t8-flex-sb { display: flex; justify-content: space-between; align-items: baseline; }
.t8-flex-center { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }
.t8-bg-alt { background: var(--t8-bg-alt); }
.t8-bg-white { background: var(--t8-bg-card); }
.t8-bg-page { background: var(--t8-bg); }
.t8-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.t8-grid-auto { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; }

/* ===== SECTION TITLES — dark brown with amber underline accent ===== */
.t8-section-title {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--t8-dark);
    margin-bottom: 28px;
    letter-spacing: -0.3px;
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}
.t8-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 48px;
    height: 3px;
    background: var(--t8-accent-gradient);
    border-radius: 2px;
}
.t8-section-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--t8-accent-gradient);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: var(--t8-r-pill);
    margin-left: 10px;
    vertical-align: middle;
}

/* ===== FEATURES — organic cards with amber icon circles ===== */
.t8-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 28px;
    counter-reset: feature-counter;
}
.t8-feature-card {
    background: var(--t8-bg-card);
    border-radius: var(--t8-r);
    padding: 36px 28px 28px;
    position: relative;
    box-shadow: var(--t8-shadow-sm);
    border: none;
    transition: all 0.35s;
    counter-increment: feature-counter;
    text-align: left;
}
.t8-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--t8-shadow-lg);
}
.t8-feature-card::before {
    content: "0" counter(feature-counter);
    position: absolute;
    top: -14px;
    left: 24px;
    background: var(--t8-accent-gradient);
    color: #fff;
    font-weight: 800;
    font-size: 0.8rem;
    padding: 4px 14px;
    border-radius: var(--t8-r-pill);
    box-shadow: 0 4px 12px rgba(232,168,56,0.3);
}
.t8-feature-icon {
    width: 52px;
    height: 52px;
    background: var(--t8-bg-alt);
    color: var(--t8-accent-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 22px;
    border: 2px solid var(--t8-accent-glow);
}
.t8-feature-title { font-size: 1.05rem; font-weight: 700; color: var(--t8-dark); margin: 0 0 8px; }
.t8-feature-desc { font-size: 0.88rem; color: var(--t8-muted); margin: 0; line-height: 1.65; }

/* ===== TOP HUB CARDS — vertical, image prominent, warm hover glow ===== */
.t8-top-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}
.t8-top-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    background: var(--t8-bg-card);
    border-radius: var(--t8-r);
    padding: 24px 20px;
    text-decoration: none;
    color: var(--t8-text);
    box-shadow: var(--t8-shadow-sm);
    border: 1px solid transparent;
    transition: all 0.3s;
    text-align: center;
}
.t8-top-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--t8-shadow-warm);
    border-color: rgba(232,168,56,0.2);
}
.t8-top-img-wrap {
    width: 80px; height: 80px; min-width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--t8-bg-alt);
    border-radius: 50%;
    padding: 10px;
    border: 2px solid var(--t8-border);
}
.t8-top-img { max-width: 100%; max-height: 100%; object-fit: contain; }
.t8-top-name { font-size: 0.95rem; font-weight: 700; color: var(--t8-dark); line-height: 1.3; }
.t8-top-meta { font-size: 0.82rem; color: var(--t8-secondary); font-weight: 600; margin-top: 2px; }
.t8-top-specs { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 6px; justify-content: center; }
.t8-top-spec { font-size: 0.75rem; color: var(--t8-muted); background: var(--t8-bg-alt); padding: 2px 8px; border-radius: 4px; }
.t8-top-spec strong { color: var(--t8-dark); }

/* ===== CARDS — white on cream, warm shadows ===== */
.t8-card {
    background: var(--t8-bg-card);
    border: none;
    border-radius: var(--t8-r);
    padding: 28px;
    box-shadow: var(--t8-shadow-sm);
    transition: all 0.3s;
    margin-bottom: 20px;
}
.t8-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--t8-shadow-warm);
}
.t8-card-title { font-size: 1.1rem; font-weight: 700; color: var(--t8-dark); margin-bottom: 8px; }
.t8-card-price { color: var(--t8-accent-dark); font-weight: 800; font-size: 1.2rem; }
.t8-spec-list { display: flex; flex-direction: column; }
.t8-card-flex { display: flex; flex-direction: column; justify-content: space-between; height: 100%; }
.t8-card-desc { font-size: 0.9rem; color: var(--t8-muted); display: -webkit-box; -webkit-line-clamp: 3; line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 20px; }
.t8-btn-full { display: block; text-align: center; }
.t8-card-img-wrap { height: 100px; background: var(--t8-bg-alt); margin-bottom: 8px; display: flex; justify-content: center; align-items: center; overflow: hidden; border-radius: var(--t8-r-sm); }
.t8-card-link { text-decoration: none; color: inherit; display: block; }
.t8-card-link:hover { text-decoration: none; }
.t8-badge-wrap { margin-bottom: 6px; }
.t8-badge-sm { background: var(--t8-bg-alt); padding: 4px 12px; border-radius: var(--t8-r-pill); font-size: 0.8rem; font-weight: 500; }
.t8-badge-accent { background: var(--t8-accent-glow); color: var(--t8-accent-dark); font-weight: 600; }
.t8-show-more { text-align: center; margin-top: 28px; }
.t8-all-link { color: var(--t8-accent-dark); font-weight: 600; font-size: 0.95rem; text-decoration: none; display: inline-flex; align-items: center; gap: 4px; }
.t8-all-link:hover { color: var(--t8-accent); }

/* ===== HUB LIST — earthy pills with warm hover ===== */
.t8-hub-title { margin-bottom: 32px; font-size: 2rem; font-weight: 800; color: var(--t8-dark); letter-spacing: -0.3px; }
.t8-hub-list { display: flex; flex-wrap: wrap; gap: 12px; }
.t8-hub-item {
    padding: 10px 24px;
    background: var(--t8-bg-card);
    border: 1px solid var(--t8-border);
    border-radius: var(--t8-r-pill);
    text-decoration: none;
    color: var(--t8-text);
    font-size: 0.92rem;
    font-weight: 500;
    transition: all 0.25s;
    box-shadow: var(--t8-shadow-sm);
}
.t8-hub-item:hover {
    background: var(--t8-accent-gradient);
    color: #fff;
    border-color: var(--t8-accent);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232,168,56,0.3);
}
.t8-hub-badge {
    padding: 18px 24px;
    background: var(--t8-bg-card);
    border: none;
    border-radius: var(--t8-r);
    text-decoration: none;
    color: var(--t8-text);
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: var(--t8-shadow-sm);
}
.t8-hub-badge:hover {
    box-shadow: var(--t8-shadow);
    transform: translateY(-3px);
}

/* ===== DETAIL PAGES ===== */
.t8-grid-ms { display: grid; grid-template-columns: 1fr 320px; gap: 40px; }
.t8-sticky { position: sticky; top: 92px; }
.t8-item-row { display: flex; justify-content: space-between; padding: 12px 0; }
.t8-border-b { border-bottom: 1px solid var(--t8-border); }
.t8-card-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 20px; }

/* Section Card */
.t8-section-card {
    background: var(--t8-bg-card);
    border: none;
    border-radius: var(--t8-r);
    padding: 36px;
    margin-bottom: 28px;
    box-shadow: var(--t8-shadow);
}

/* Info Grid — warm amber left border */
.t8-info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 14px; }
.t8-info-item {
    padding: 18px;
    background: var(--t8-bg-alt);
    border-radius: var(--t8-r-sm);
    border-left: 3px solid var(--t8-accent);
}
.t8-info-label { display: block; font-size: 0.78rem; color: var(--t8-muted); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.5px; }
.t8-info-value { display: block; font-weight: 700; color: var(--t8-dark); font-size: 1.05rem; }

/* ===== CONTACTS ===== */
.t8-contact-row { display: flex; align-items: center; gap: 15px; margin-bottom: 12px; }
.t8-social-links { display: flex; gap: 10px; }
.t8-social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px; height: 46px;
    border-radius: 50%;
    background: var(--t8-accent-glow);
    color: var(--t8-accent-dark);
    text-decoration: none;
    transition: all 0.25s;
    font-weight: 700;
}
.t8-social-btn:hover {
    background: var(--t8-accent-gradient);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(232,168,56,0.3);
}

/* ===== PROMO — warm amber accents ===== */
.t8-promo-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 18px; margin-top: 20px; }
.t8-promo-modern {
    background: var(--t8-bg-card);
    border: none;
    border-radius: var(--t8-r);
    padding: 24px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--t8-shadow-sm);
    transition: all 0.3s;
}
.t8-promo-modern:hover { transform: translateY(-4px); box-shadow: var(--t8-shadow); }
.t8-promo-info h3 { margin: 0 0 4px; font-size: 1rem; color: var(--t8-dark); }
.t8-promo-sub { margin: 0; font-size: 0.82rem; color: var(--t8-muted); }
.t8-promo-wrap { position: relative; }
.t8-promo-box {
    background: var(--t8-accent-glow);
    border: 2px dashed var(--t8-accent);
    padding: 12px 22px;
    border-radius: var(--t8-r-sm);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s;
    min-width: 130px;
    justify-content: center;
}
.t8-promo-box:hover { background: rgba(232,168,56,0.2); }
.t8-promo-text { font-family: 'SFMono-Regular', Consolas, monospace; font-weight: 800; font-size: 1.05rem; color: var(--t8-accent-dark); letter-spacing: 1px; }
.t8-copy-icon { color: var(--t8-accent); }
.copy-tooltip-x { position: absolute; bottom: -40px; left: 50%; transform: translateX(-50%); background: var(--t8-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(--t8-dark); }
.copy-tooltip-x.visible { opacity: 1; bottom: -45px; }

/* ===== CITY TAGS ===== */
.t8-city-list { display: flex; flex-wrap: wrap; gap: 10px; }
.t8-city-tag {
    padding: 8px 20px;
    background: var(--t8-bg-card);
    border: 1px solid var(--t8-border);
    color: var(--t8-text);
    text-decoration: none;
    border-radius: var(--t8-r-pill);
    font-size: 0.88rem;
    font-weight: 500;
    transition: all 0.25s;
    box-shadow: var(--t8-shadow-sm);
}
.t8-city-tag:hover { background: var(--t8-accent-gradient); color: #fff; border-color: var(--t8-accent); box-shadow: 0 4px 15px rgba(232,168,56,0.3); }
.t8-city-tag-more { box-shadow: none; border: 2px dashed var(--t8-light); background: transparent; color: var(--t8-accent-dark); }

/* ===== ACCORDION ===== */
.t8-accordion {
    background: var(--t8-bg-card);
    border-radius: var(--t8-r);
    margin-bottom: 10px;
    overflow: hidden;
    box-shadow: var(--t8-shadow-sm);
}
.t8-accordion summary {
    padding: 22px 28px;
    font-weight: 600;
    font-size: 1rem;
    color: var(--t8-dark);
    cursor: pointer;
    list-style: none;
    position: relative;
    user-select: none;
    transition: background 0.2s;
}
.t8-accordion summary:hover { background: var(--t8-bg-alt); }
.t8-accordion summary::-webkit-details-marker { display: none; }
.t8-accordion summary::after {
    content: '+';
    position: absolute;
    right: 28px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px; height: 28px;
    background: var(--t8-accent-glow);
    color: var(--t8-accent-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    transition: all 0.3s;
}
.t8-accordion[open] summary::after {
    content: '-';
    background: var(--t8-accent-gradient);
    color: #fff;
    transform: translateY(-50%);
}
.t8-accordion .t8-accordion-content {
    padding: 0 28px 28px;
    border-top: 1px solid var(--t8-border);
    margin-top: 8px;
    padding-top: 20px;
    color: var(--t8-muted);
    line-height: 1.75;
}

/* ===== PROSE ===== */
.t8-prose h2 { margin-top: 2rem; margin-bottom: 1rem; color: var(--t8-dark); }
.t8-prose h3 { margin-top: 1.5rem; margin-bottom: 0.8rem; color: var(--t8-dark); }
.t8-prose ul { padding-left: 0; margin: 15px 0; list-style: none; }
.t8-prose li { margin-bottom: 10px; padding-left: 22px; position: relative; }
.t8-prose li::before { content: ''; position: absolute; left: 0; top: 10px; width: 8px; height: 8px; background: var(--t8-secondary); border-radius: 50%; }
.t8-prose strong { color: var(--t8-dark); }

/* ===== ERROR PAGE ===== */
.t8-error-page { padding: 100px 20px; max-width: 500px; margin: 0 auto; text-align: center; }
.t8-error-code { font-size: 9rem; font-weight: 800; line-height: 1; background: var(--t8-accent-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 10px; }
.t8-error-title { font-size: 1.6rem; font-weight: 700; color: var(--t8-dark); margin-bottom: 12px; }
.t8-error-desc { font-size: 1rem; color: var(--t8-muted); margin-bottom: 30px; line-height: 1.7; }
.t8-error-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* ===== GEO PAGE ===== */
.t8-geo-container { max-width: var(--t8-w); }
.t8-hub-list-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 18px; }
.t8-hub-summary {
    background: var(--t8-bg-card);
    border: none;
    border-radius: var(--t8-r);
    padding: 24px;
    box-shadow: var(--t8-shadow-sm);
    transition: all 0.3s;
}
.t8-hub-summary:hover { box-shadow: var(--t8-shadow); transform: translateY(-3px); }
.t8-hub-summary-head { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.t8-hub-summary-logo { width: 48px; height: 48px; object-fit: contain; border-radius: 50%; }
.t8-hub-summary-title { font-weight: 700; font-size: 1.1rem; color: var(--t8-dark); text-decoration: none; }
.t8-hub-summary-title:hover { color: var(--t8-accent); }
.t8-hub-summary-specs { display: flex; flex-wrap: wrap; gap: 6px; }
.t8-hub-summary-spec { font-size: 0.82rem; color: var(--t8-muted); background: var(--t8-bg-alt); padding: 4px 10px; border-radius: var(--t8-r-pill); }
.t8-geo-info-grid { margin-top: 15px; }
.t8-geo-promo-wrap { margin-top: 15px; }
.t8-geo-items-wrap { margin-top: 20px; }
.t8-geo-show-more { text-align: center; margin-top: 15px; }
.t8-geo-apps-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px; justify-content: center; }
.t8-app-btn { display: inline-block; line-height: 0; }
.t8-app-btn-img { height: 44px; width: auto; display: block; }
.t8-geo-hub-footer { margin-top: 20px; text-align: right; }
.t8-geo-zone-desc { margin-top: 20px; padding: 18px 22px; background: var(--t8-secondary-glow); border-left: 4px solid var(--t8-secondary); border-radius: var(--t8-r-sm); font-size: 0.95rem; color: var(--t8-muted); }
.geo-map { width: 100%; height: 420px; background: var(--t8-bg-alt); border-radius: var(--t8-r); margin-top: 14px; }

/* ===== HUB PAGE ===== */
.t8-hub-logo-wrap {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 32px;
    padding-bottom: 28px;
    border-bottom: 2px solid var(--t8-border);
}
.t8-hub-logo-img { height: 72px; object-fit: contain; border-radius: 50%; }
.t8-hub-title-text { margin: 0; font-size: 34px; font-weight: 800; color: var(--t8-dark); letter-spacing: -0.3px; }
.t8-hub-sidebar {}
.t8-hub-specs-title { margin-top: 20px; }
.t8-mini-link { text-decoration: none; color: inherit; display: block; text-align: center; }
.t8-mini-name { font-weight: 600; font-size: 0.9rem; }
.t8-app-col { display: flex; flex-direction: column; gap: 10px; }

/* ===== ITEM PAGE ===== */
.t8-item-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.t8-item-img-wrap { display: flex; justify-content: center; align-items: center; background: var(--t8-bg-alt); border-radius: var(--t8-r); padding: 24px; }
.t8-item-h1 { margin-bottom: 24px; }
.t8-item-img { max-width: 100%; height: auto; object-fit: contain; }
.t8-item-specs-title { margin-top: 0; }
.t8-hub-info-row { display: flex; align-items: center; gap: 15px; flex-wrap: wrap; }
.t8-hub-info-logo { width: 48px; height: 48px; object-fit: contain; border-radius: 50%; }
.t8-hub-info-label { font-size: 0.85rem; color: var(--t8-muted); }
.t8-hub-info-name { font-weight: 700; font-size: 1.2rem; text-decoration: none; color: inherit; }
.t8-hub-info-name:hover { color: var(--t8-accent); }
.t8-app-buttons { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 15px; }
.t8-city-tag-more { border-style: dashed; background: transparent; color: var(--t8-accent-dark); }

/* ===== ITEMS MINI GRID ===== */
.t8-items-mini-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 14px; }
.t8-items-mini-card {
    background: var(--t8-bg-card);
    border: none;
    border-radius: var(--t8-r-sm);
    padding: 14px;
    box-shadow: var(--t8-shadow-sm);
    transition: all 0.25s;
}
.t8-items-mini-card:hover { box-shadow: var(--t8-shadow); transform: translateY(-2px); }
.t8-items-mini-img { width: 100%; height: 80px; object-fit: contain; margin-bottom: 8px; }

/* ===== FOOTER — warm dark brown with amber accents ===== */
.t8-footer {
    background: #3E2723;
    color: #BCAAA4;
    padding: 72px 0 36px;
    margin-top: 80px;
    font-size: 0.9rem;
}
.t8-footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; }
.t8-footer-brand h2 { color: #FFFBF0; margin-bottom: 20px; font-size: 1.3rem; font-weight: 800; }
.t8-footer-col h3 { color: #FFFBF0; font-size: 1rem; margin-bottom: 18px; font-weight: 700; }
.t8-footer-nav { list-style: none; padding: 0; margin: 0; }
.t8-footer-nav li { margin-bottom: 12px; }
.t8-footer-nav a { color: #BCAAA4; transition: color 0.2s; }
.t8-footer-nav a:hover { color: var(--t8-accent); }
.t8-footer p { line-height: 1.6; color: #8D6E63; }
.t8-footer-bottom {
    margin-top: 56px;
    padding-top: 28px;
    border-top: 1px solid rgba(255,251,240,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    color: #8D6E63;
    font-size: 0.85rem;
}
.t8-footer-btm-links { display: flex; gap: 20px; }
.t8-footer-btm-links a { color: #8D6E63; }
.t8-footer-btm-links a:hover { color: var(--t8-accent); }

/* ===== PRICING ===== */
.t8-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    align-items: start;
}
.t8-pricing-card {
    background: var(--t8-bg-card);
    border-radius: var(--t8-r);
    padding: 36px 32px;
    box-shadow: var(--t8-shadow-sm);
    transition: all 0.3s;
    position: relative;
    text-align: center;
}
.t8-pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--t8-shadow-lg);
}
.t8-pricing-popular {
    border: 2px solid var(--t8-accent);
    box-shadow: var(--t8-shadow), 0 0 0 4px var(--t8-accent-glow);
    transform: scale(1.04);
}
.t8-pricing-popular:hover { transform: scale(1.04) translateY(-4px); }
.t8-pricing-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--t8-accent-gradient);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 4px 20px;
    border-radius: var(--t8-r-pill);
    box-shadow: 0 4px 12px rgba(232,168,56,0.3);
    white-space: nowrap;
}
.t8-pricing-logo {
    width: 80px; height: 80px; object-fit: contain;
    margin: 0 auto 16px; display: block; border-radius: var(--t8-r);
}
.t8-pricing-name { font-size: 1.2rem; font-weight: 700; color: var(--t8-dark); margin: 0 0 8px; }
.t8-pricing-desc { font-size: 0.88rem; color: var(--t8-muted); margin: 0 0 20px; }
.t8-pricing-price { margin-bottom: 24px; }
.t8-pricing-amount { font-size: 2.4rem; font-weight: 800; color: var(--t8-dark); letter-spacing: -1px; }
.t8-pricing-period { font-size: 0.9rem; color: var(--t8-muted); }
.t8-pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    text-align: left;
}
.t8-pricing-features li {
    padding: 8px 0;
    border-bottom: 1px solid var(--t8-border);
    font-size: 0.9rem;
    color: var(--t8-text);
    padding-left: 24px;
    position: relative;
}
.t8-pricing-features li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--t8-secondary);
    font-weight: 700;
}

/* ===== TESTIMONIALS ===== */
.t8-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}
.t8-testimonial-card {
    background: var(--t8-bg-card);
    border-radius: var(--t8-r);
    padding: 32px;
    box-shadow: var(--t8-shadow-sm);
    transition: all 0.3s;
    position: relative;
}
.t8-testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 16px;
    left: 24px;
    font-size: 4rem;
    line-height: 1;
    color: var(--t8-accent-glow);
    font-family: Georgia, serif;
}
.t8-testimonial-card:hover { box-shadow: var(--t8-shadow); }
.t8-testimonial-text {
    font-size: 0.95rem;
    color: var(--t8-text);
    line-height: 1.7;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}
.t8-testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}
.t8-testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--t8-accent-glow);
}
.t8-testimonial-name { font-weight: 700; font-size: 0.95rem; color: var(--t8-dark); }
.t8-testimonial-role { font-size: 0.82rem; color: var(--t8-muted); }

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .t8-footer-grid { grid-template-columns: 1fr 1fr; }
    .t8-item-hero { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .t8-hero { padding: 60px 0 50px; }
    .t8-h1 { font-size: 30px; letter-spacing: -0.5px; }
    .t8-hero-sub { font-size: 1rem; }
    .t8-section { padding: 48px 0; }
    .t8-section-card { padding: 22px; margin-bottom: 20px; }
    .t8-grid-ms { grid-template-columns: 1fr; }
    .t8-grid-auto { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 16px; }
    .t8-grid-2 { grid-template-columns: 1fr; }
    .t8-info-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .t8-promo-grid { grid-template-columns: 1fr; }
    .t8-promo-modern { flex-direction: column; gap: 15px; text-align: center; }
    .t8-hub-title-text { font-size: 24px; }
    .t8-footer-bottom { flex-direction: column; text-align: center; }
    .t8-top-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .t8-top-specs { display: none; }
    .t8-features-grid { grid-template-columns: 1fr 1fr; }

    .burger-btn { display: flex; }
    .t8-nav-list {
        display: none;
        position: fixed;
        top: 72px; left: 0; right: 0;
        flex-direction: column;
        background: rgba(255,251,240,0.98);
        backdrop-filter: blur(14px);
        padding: 12px 24px;
        gap: 0;
        box-shadow: 0 20px 40px rgba(62,39,35,0.1);
        z-index: 100;
        height: auto;
    }
    .t8-nav-list.menu-open, .t8-nav-list[data-nav].menu-open { display: flex; }
    .t8-nav-list li { border-bottom: 1px solid var(--t8-border); }
    .t8-nav-list li:last-child .t8-nav-link { background: none; color: var(--t8-accent-dark); border-radius: 0; padding: 14px 0; }
    .t8-nav-link { height: auto; padding: 14px 0; font-size: 1rem; border-radius: 0; }
}

@media (max-width: 480px) {
    .t8-info-grid { grid-template-columns: 1fr; }
    .t8-header-inner { padding: 0 16px; }
    .t8-container { padding: 0 16px; }
    .t8-features-grid { grid-template-columns: 1fr; }
    .t8-hero-actions { flex-direction: column; align-items: center; }
    .t8-footer-grid { grid-template-columns: 1fr; }
    .t8-top-grid { grid-template-columns: 1fr; }
}
