/* ================================================================
   ALBENZE.AI DESIGN SYSTEM v5 — Deep Blue Neural Aesthetic
   Dark Navy · Cyan Glow · Energy Sparks · Glassmorphism
   ================================================================ */

/* ===== CSS VARIABLES ===== */
:root {
    --bg-primary: #060d1f;
    --bg-secondary: #0a1428;
    --bg-tertiary: #0e1a33;
    --text-primary: #e8f0ff;
    --text-secondary: #b8ccee;
    --text-dim: #6b88b0;
    --accent: #3b82f6;
    --accent-dim: rgba(59,130,246,0.12);
    --accent-glow: rgba(59,130,246,0.4);
    --accent-bright: #60a5fa;
    --glass-bg: rgba(10,20,50,0.6);
    --glass-border: rgba(60,140,255,0.15);
    --glass-border-hover: rgba(60,160,255,0.4);
    --border-color: rgba(60,140,255,0.12);
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.16,1,0.3,1);
    --font-heading: 'Raleway', sans-serif;
    --font-body: 'Lato', sans-serif;
    --font-mono: 'Lato', sans-serif;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-secondary); }
::-webkit-scrollbar-thumb { background: rgba(59,130,246,0.3); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(59,130,246,0.5); }

/* ===== UTILITY ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== HERO GRID BACKGROUND (PCB Pattern for Inner Pages) ===== */
.hero-grid-bg {
    background-color: var(--bg-secondary);
    background-image:
        radial-gradient(circle at 50% 50%, rgba(59,130,246,0.06) 0%, transparent 50%),
        linear-gradient(0deg,
            transparent 24%,
            rgba(59,130,246,.04) 25%, rgba(59,130,246,.04) 26%,
            transparent 27%, transparent 74%,
            rgba(59,130,246,.04) 75%, rgba(59,130,246,.04) 76%,
            transparent 77%, transparent),
        linear-gradient(90deg,
            transparent 24%,
            rgba(59,130,246,.04) 25%, rgba(59,130,246,.04) 26%,
            transparent 27%, transparent 74%,
            rgba(59,130,246,.04) 75%, rgba(59,130,246,.04) 76%,
            transparent 77%, transparent);
    background-size: 100% 100%, 50px 50px, 50px 50px;
    position: relative;
}
.hero-grid-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, var(--bg-primary) 100%);
    pointer-events: none;
}

/* ===== PCB NODE DOTS (decorative) ===== */
.pcb-node {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 12px var(--accent-glow), 0 0 24px rgba(59,130,246,0.2);
    animation: node-pulse 3s ease-in-out infinite;
}
@keyframes node-pulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.3); }
}

/* ===== PARTICLE CANVAS ===== */
#particle-canvas {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* ===== HEADER (Sticky Glassmorphic) ===== */
.site-header {
    position: fixed;
    top: 0; width: 100%;
    height: 72px;
    min-height: calc(72px + env(safe-area-inset-top, 0px));
    padding-top: env(safe-area-inset-top, 0px);
    z-index: 1000;
    background: rgba(6,13,31,0.92);
    backdrop-filter: blur(24px) saturate(1.4);
    box-shadow: 0 1px 0 var(--glass-border), 0 4px 30px rgba(0,0,0,0.3);
    border-bottom: 1px solid var(--border-color);
}
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}
.logo a {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: #e8f0ff;
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
}
.logo .logo-dot-ai {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.6em;
    color: #6b88b0;
}
.logo a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 100%; height: 1px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform 0.3s;
}
.logo a:hover::after { transform: scaleX(1); }

/* NAV */
.main-nav {
    display: flex;
    gap: 32px;
    align-items: center;
}
.main-nav a {
    font-family: var(--font-heading);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    color: #b8ccee;
    transition: color 0.3s;
    position: relative;
}
.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 1px;
    background: var(--accent);
    transition: width 0.3s;
}
.main-nav a:hover { color: var(--accent); }
.main-nav a:hover::after { width: 100%; }

/* NAV CTA BUTTON */
.nav-cta {
    font-family: var(--font-mono) !important;
    font-size: 10px !important;
    letter-spacing: 2px !important;
    padding: 8px 20px;
    border: 1px solid var(--glass-border-hover);
    color: var(--accent) !important;
    transition: all 0.3s !important;
}
.nav-cta:hover {
    background: var(--accent) !important;
    color: #ffffff !important;
    border-color: var(--accent) !important;
    box-shadow: 0 0 20px var(--accent-glow);
}
.nav-cta::after { display: none !important; }

/* HAMBURGER */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    z-index: 200;
    background: none;
    border: none;
}
.hamburger span {
    width: 24px; height: 1.5px;
    background: #b8ccee;
    transition: all 0.3s;
    display: block;
}
.hamburger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* MOBILE MENU */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: rgba(6,13,31,0.97);
    backdrop-filter: blur(30px);
    z-index: 150;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
}
.mobile-menu.active { opacity: 1; pointer-events: all; }
.mobile-menu a {
    font-family: var(--font-heading);
    font-size: 20px;
    letter-spacing: 6px;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--text-secondary);
    transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--accent); }

/* ===== GLITCH EFFECT — DISABLED ===== */

/* ===== BREADCRUMB ===== */
.breadcrumb {
    position: relative;
    z-index: 2;
    padding: 12px 0;
    margin-top: calc(72px + env(safe-area-inset-top, 0px));
    border-bottom: 1px solid var(--border-color);
    background: rgba(6,13,31,0.7);
    backdrop-filter: blur(10px);
}
.breadcrumb ol {
    display: flex;
    list-style: none;
    padding: 0; margin: 0;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.breadcrumb li {
    display: flex;
    align-items: center;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.breadcrumb li:not(:last-child)::after {
    content: "/";
    margin: 0 0.75rem;
    color: var(--text-dim);
}
.breadcrumb a {
    color: var(--text-dim);
    text-decoration: none;
    transition: color 0.3s;
}
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb li:last-child span {
    color: var(--text-secondary);
    font-weight: 500;
}

/* ===== MAIN CONTENT ===== */
.main-content {
    position: relative;
    z-index: 2;
    min-height: 60vh;
}

/* ===== HERO SECTION ===== */
.article-hero {
    position: relative;
    width: 100%;
    min-height: clamp(300px, 40vw, 500px);
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}
.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
    filter: saturate(0.5) brightness(1.1);
}
.hero-overlay {
    position: relative;
    width: 100%;
    padding: 80px 0 48px;
    background: linear-gradient(to top, var(--bg-primary), rgba(6,13,31,0.7) 60%, transparent);
    z-index: 2;
}
.article-meta {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 16px;
}

/* INFRASTRUCTURE LABEL (replaces old tagline in hero) */
.infra-label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}
.infra-label::before {
    content: '';
    width: 24px; height: 1px;
    background: var(--accent);
    box-shadow: 0 0 8px var(--accent-glow);
}

/* CATEGORY BADGES */
.category-badge {
    font-family: var(--font-heading);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    padding: 6px 16px;
    border: 1px solid var(--glass-border-hover);
    background: var(--accent-dim);
    backdrop-filter: blur(8px);
}
/* Market-specific badge colors (darker for light bg contrast) */
.tech-badge { color: #2d6a4f; border-color: rgba(45,106,79,0.3); background: rgba(45,106,79,0.08); }
.legal-badge { color: #7c3aed; border-color: rgba(124,58,237,0.3); background: rgba(124,58,237,0.08); }
.healthcare-badge { color: #059669; border-color: rgba(5,150,105,0.3); background: rgba(5,150,105,0.08); }
.fence-badge { color: #d97706; border-color: rgba(217,119,6,0.3); background: rgba(217,119,6,0.08); }

.article-date {
    font-size: 12px;
    color: var(--text-dim);
    letter-spacing: 1px;
}

.article-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: clamp(1.8rem, 4vw, 3rem);
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--text-primary);
    letter-spacing: 0.5px;
}
.article-excerpt {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 700px;
}
/* Sovereign tagline under excerpt */
.sovereignty-tag {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--accent);
    margin-top: 12px;
    text-transform: uppercase;
}

/* ===== ARTICLE BODY ===== */
.article-body {
    padding: 60px 0 80px;
    position: relative;
    z-index: 2;
}

/* ARTICLE SUMMARY - Glass Panel */
.article-summary {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    padding: 32px 36px;
    border: 1px solid var(--glass-border);
    margin-bottom: 48px;
    position: relative;
}
.article-summary::before {
    content: '';
    position: absolute;
    top: -1px; left: 15%;
    width: 70%; height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-glow), transparent);
}
.article-summary h2 {
    font-family: var(--font-heading);
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
    font-weight: 700;
}
.article-summary p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ARTICLE CONTENT */
.article-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.8;
}
.article-content h2 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 400;
    margin: 56px 0 20px;
    color: var(--text-primary);
    letter-spacing: 0.5px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
}
.article-content h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 400;
    margin: 40px 0 16px;
    color: var(--text-primary);
}
.article-content p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}
.article-content ul, .article-content ol {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}
.article-content li {
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
}
.article-content li::marker {
    color: var(--accent);
}
.article-content strong, .article-content b {
    color: var(--text-primary);
    font-weight: 700;
}
.article-content em {
    color: var(--accent);
    font-style: italic;
}
.article-content a {
    color: var(--accent);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
}
.article-content a:hover {
    border-bottom-color: var(--accent);
}

/* ===== TAGS ===== */
.article-tags {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
}
.article-tags h3 {
    font-family: var(--font-heading);
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}
.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.tag {
    font-size: 12px;
    letter-spacing: 1px;
    padding: 6px 16px;
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    background: transparent;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
}
.tag:hover {
    border-color: var(--glass-border-hover);
    color: var(--accent);
    background: var(--accent-dim);
}

/* ===== CTA SECTION ===== */
.cta-section {
    margin-top: 80px;
    padding: 64px 48px;
    background: rgba(10,20,50,0.6);
    backdrop-filter: blur(16px) saturate(1.2);
    border: 1px solid var(--glass-border);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59,130,246,0.08), transparent 70%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    animation: cta-pulse 4s ease-in-out infinite;
}
@keyframes cta-pulse {
    0%, 100% { transform: translate(-50%,-50%) scale(1); }
    50% { transform: translate(-50%,-50%) scale(1.3); }
}
.cta-section h2 {
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    color: var(--text-primary);
    margin-bottom: 12px;
    position: relative;
}
.cta-section p {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    position: relative;
    max-width: 500px;
    margin-left: auto; margin-right: auto;
    line-height: 1.7;
}

/* CTA BUTTON */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    font-family: var(--font-heading);
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--accent);
    border: 1px solid var(--glass-border-hover);
    background: transparent;
    position: relative;
    overflow: hidden;
    transition: all 0.4s;
    cursor: pointer;
    z-index: 1;
}
.cta-button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent);
    transform: translateX(-101%);
    transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
    z-index: -1;
}
.cta-button:hover {
    color: #ffffff;
    border-color: var(--accent);
}
.cta-button:hover::before { transform: translateX(0); }

/* ===== LINK SECTIONS ===== */
.hub-links-section,
.neighbor-links-section,
.related-services-section,
.hub-children-section,
.related-hubs-section,
.hub-overview,
.market-data-section,
.benefits-section,
.locations-section,
.services-section,
.tags-index-section {
    margin-top: 56px;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}

.hub-links-section h2,
.neighbor-links-section h2,
.related-services-section h2,
.hub-children-section h2,
.related-hubs-section h2,
.hub-overview h2,
.market-data-section h2,
.benefits-section h2,
.locations-section h2,
.services-section h2 {
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: clamp(1.3rem, 2vw, 1.8rem);
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.hub-links-section p,
.neighbor-links-section p,
.related-services-section p,
.hub-children-section p,
.hub-overview p,
.market-data-section p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===== SERVICE BUTTONS ===== */
.service-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 16px 0;
}
.service-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 28px;
    font-family: var(--font-heading);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    color: #e8f0ff;
    border: 1px solid rgba(59,130,246,0.35);
    background: rgba(59,130,246,0.12);
    backdrop-filter: blur(8px);
    box-shadow: 0 0 12px rgba(59,130,246,0.1), inset 0 1px 0 rgba(255,255,255,0.05);
    transition: all 0.3s;
}
.service-btn:hover {
    border-color: rgba(59,130,246,0.6);
    background: rgba(59,130,246,0.25);
    color: #ffffff;
    box-shadow: 0 0 20px rgba(59,130,246,0.2), inset 0 1px 0 rgba(255,255,255,0.08);
    transform: translateY(-2px);
}

/* ===== CITY LINKS ===== */
.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 12px;
}
.city-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    text-decoration: none;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: all 0.3s;
}
.city-link::before {
    display: none;
}
.city-link:hover {
    border-color: var(--glass-border-hover);
    background: var(--accent-dim);
    transform: translateY(-2px);
}
.city-link:hover::before {
    box-shadow: 0 0 8px var(--accent-glow);
}

/* ===== CITY GRID (Hub pages) ===== */
.city-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
    margin-top: 20px;
}
.city-card {
    display: flex;
    flex-direction: column;
    padding: 16px 20px;
    background: var(--glass-bg);
    backdrop-filter: blur(8px);
    border: 1px solid var(--glass-border);
    transition: all var(--transition-smooth);
    text-decoration: none;
}
.city-card:hover {
    border-color: var(--glass-border-hover);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(45,106,79,0.08);
}
.city-card h3 {
    margin: 0 0 4px;
    font-size: 1rem;
    font-family: var(--font-heading);
    font-weight: 400;
}
.city-card h3 a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s;
}
.city-card h3 a:hover { color: var(--accent); }
.city-card p {
    margin: 0;
    color: var(--text-dim);
    font-size: 0.8rem;
}
.city-card .city-name {
    color: var(--text-primary);
    font-weight: 400;
    font-size: 0.95rem;
}
.city-card .city-stat {
    color: var(--accent);
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 4px;
}

/* ===== STAT GRID ===== */
.stat-grid,
.market-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1px;
    background: var(--glass-border);
    margin: 24px 0 32px;
}
.stat-card {
    background: rgba(10,20,50,0.6);
    backdrop-filter: blur(16px) saturate(1.2);
    padding: 32px 24px;
    text-align: center;
    transition: background 0.3s;
    position: relative;
}
.stat-card:hover {
    background: rgba(15,30,65,0.7);
}
.stat-icon {
    display: block;
    margin: 0 auto 10px;
    color: var(--accent);
    opacity: 0.5;
}
.stat-value {
    display: block;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 8px;
}
.stat-card.highlight .stat-value,
.stat-value.highlight-cyan {
    color: var(--accent);
}
.stat-label {
    display: block;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-dim);
    font-weight: 400;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    margin-top: 56px;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}
.faq-section h2 {
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: 1.6rem;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 32px;
}
.faq-item {
    background: rgba(10,20,50,0.4);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(8px);
    margin-bottom: 8px;
    overflow: hidden;
    transition: all 0.3s;
}
.faq-item:hover {
    border-color: var(--glass-border-hover);
    background: rgba(10,20,50,0.55);
}
.faq-item.active {
    border-color: var(--glass-border-hover);
    background: rgba(10,20,50,0.6);
}
.faq-question {
    padding: 20px 24px;
    cursor: pointer;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 0.95rem;
    color: var(--text-primary);
    letter-spacing: 0.3px;
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
    margin: 0 !important;
    gap: 16px;
    transition: color 0.3s;
}
.faq-question:hover { color: var(--accent); }
.faq-question::before {
    content: '+';
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 28px; height: 28px;
    border: 1px solid var(--glass-border-hover);
    color: var(--accent);
    font-size: 1rem;
    font-weight: 300;
    line-height: 1;
    transition: all 0.3s;
    flex-shrink: 0;
}
.faq-item.active .faq-question::before {
    content: '\2212';
    background: var(--accent);
    color: #ffffff;
    border-color: var(--accent);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.3s ease-out;
    padding: 0 24px 0 68px;
    opacity: 0;
}
.faq-item.active .faq-answer {
    padding-bottom: 24px;
    max-height: 500px;
    opacity: 1;
    transition: max-height 0.5s ease-in, opacity 0.3s ease-in, padding 0.3s ease-in;
}
.faq-answer p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.7;
    padding-top: 8px;
    border-top: 1px solid var(--border-color);
    font-size: 0.9rem;
}

/* ===== BENEFITS TABLE ===== */
.benefits-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 8px;
}
.benefit-row {
    transition: all 0.3s;
}
.benefit-row:hover {
    box-shadow: 0 4px 20px rgba(45,106,79,0.08);
}
.benefit-icon-cell {
    width: 80px;
    padding: 24px;
    vertical-align: middle;
    text-align: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-right: none;
}
.benefit-icon-cell svg {
    width: 32px; height: 32px;
    color: var(--accent);
    transition: all 0.3s;
}
.benefit-row:hover .benefit-icon-cell svg {
    transform: scale(1.1);
    filter: drop-shadow(0 0 6px var(--accent-glow));
}
.benefit-text-cell {
    padding: 24px;
    vertical-align: middle;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-left: none;
}
.benefit-text-cell h3 {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 1rem;
    color: var(--text-primary);
    margin: 0 0 6px;
    letter-spacing: 0.5px;
}
.benefit-text-cell p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ===== STATES / SERVICES GRID (Locations page) ===== */
.states-grid-large,
.services-grid-large {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 16px;
    margin-bottom: 48px;
}
.states-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 8px;
}
.state-link {
    display: block;
    padding: 12px 16px;
    text-align: center;
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: all 0.3s;
}
.state-link:hover {
    border-color: var(--glass-border-hover);
    background: var(--accent-dim);
    transform: translateY(-2px);
}

.state-card,
.service-card {
    background: var(--glass-bg);
    backdrop-filter: blur(8px);
    border: 1px solid var(--glass-border);
    padding: 28px;
    transition: all var(--transition-smooth);
    position: relative;
}
.state-card::before,
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: radial-gradient(ellipse at top, var(--accent-dim), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
}
.state-card:hover,
.service-card:hover {
    border-color: var(--glass-border-hover);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(45,106,79,0.08);
}
.state-card:hover::before,
.service-card:hover::before { opacity: 1; }

.state-card h3,
.service-card h3 {
    position: relative;
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 1.1rem;
    margin: 0 0 12px;
    color: var(--text-primary);
}
.state-card h3 a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s;
}
.state-card h3 a:hover { color: var(--accent); }

.state-stats,
.service-stats {
    position: relative;
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-dim);
}
.state-services {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.service-tag {
    font-size: 10px;
    letter-spacing: 1px;
    padding: 4px 10px;
    border: 1px solid var(--glass-border);
    color: var(--text-dim);
}

.top-cities {
    position: relative;
}
.top-cities h4 {
    font-family: var(--font-heading);
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 8px;
}
.city-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.city-chip {
    font-size: 11px;
    padding: 4px 12px;
    border: 1px solid var(--glass-border);
    color: var(--accent);
    text-decoration: none;
    transition: all 0.3s;
    letter-spacing: 0.5px;
}
.city-chip:hover {
    background: var(--accent);
    color: #ffffff;
    border-color: var(--accent);
}

/* ===== TAGS PAGE ===== */
.tags-grid-large {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 12px;
}
.tag-card {
    display: flex;
    flex-direction: column;
    padding: 24px;
    border: 1px solid var(--glass-border);
    background: transparent;
    text-decoration: none;
    transition: all 0.3s;
}
.tag-card:hover {
    border-color: var(--glass-border-hover);
    background: var(--accent-dim);
    transform: translateY(-2px);
}
.tag-name {
    font-family: var(--font-heading);
    font-weight: 400;
    color: var(--text-primary);
    font-size: 1rem;
    margin-bottom: 6px;
}
.tag-count {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
}

/* ===== MARKET-SPECIFIC HERO VARIANTS ===== */
.tech-hero .hero-overlay { background: linear-gradient(180deg, transparent 0%, rgba(6,13,31,0.5) 40%, var(--bg-primary) 100%); }
.legal-hero .hero-overlay { background: linear-gradient(180deg, transparent 0%, rgba(6,13,31,0.5) 40%, var(--bg-primary) 100%); }
.healthcare-hero .hero-overlay { background: linear-gradient(180deg, transparent 0%, rgba(6,13,31,0.5) 40%, var(--bg-primary) 100%); }
.fence-hero .hero-overlay { background: linear-gradient(180deg, transparent 0%, rgba(6,13,31,0.5) 40%, var(--bg-primary) 100%); }

/* ===== MARKET-SPECIFIC DATA SECTIONS ===== */
.tech-data .stat-card.highlight { border-color: rgba(59,130,246,0.25); }
.legal-data .stat-card.highlight { border-color: rgba(124,58,237,0.25); }
.healthcare-data .stat-card.highlight { border-color: rgba(5,150,105,0.25); }
.fence-data .stat-card.highlight { border-color: rgba(217,119,6,0.25); }

/* ===== MARKET-SPECIFIC BENEFITS SECTIONS ===== */
.tech-benefits .benefit-icon-cell svg { color: #3b82f6; }
.legal-benefits .benefit-icon-cell svg { color: #a78bfa; }
.healthcare-benefits .benefit-icon-cell svg { color: #34d399; }
.fence-benefits .benefit-icon-cell svg { color: #fbbf24; }

/* ================================================================
   MARKET INTELLIGENCE INFOGRAPHIC COMPONENTS
   ================================================================ */

/* -- Market color variables -- */
:root {
    --mi-tech: #3b82f6;
    --mi-legal: #7c3aed;
    --mi-healthcare: #059669;
    --mi-fence: #d97706;
}

/* -- .mi-stats: Enhanced stat grid with colored top borders -- */
.mi-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin: 32px 0;
}
.mi-stat {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 24px 20px;
    text-align: center;
    backdrop-filter: blur(8px);
    transition: transform var(--transition-fast), border-color var(--transition-fast);
}
.mi-stat:hover {
    transform: translateY(-2px);
    border-color: var(--glass-border-hover);
}

/* Market-color top borders */
.market-technology .mi-stat { border-top: 3px solid var(--mi-tech); }
.market-legal .mi-stat { border-top: 3px solid var(--mi-legal); }
.market-healthcare .mi-stat { border-top: 3px solid var(--mi-healthcare); }
.market-fence .mi-stat { border-top: 3px solid var(--mi-fence); }

.mi-stat.highlight {
    border-top-width: 4px;
}
.market-technology .mi-stat.highlight { box-shadow: 0 0 20px rgba(59,130,246,0.15); }
.market-legal .mi-stat.highlight { box-shadow: 0 0 20px rgba(124,58,237,0.15); }
.market-healthcare .mi-stat.highlight { box-shadow: 0 0 20px rgba(5,150,105,0.15); }
.market-fence .mi-stat.highlight { box-shadow: 0 0 20px rgba(217,119,6,0.15); }

.mi-value {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    color: var(--text-primary);
    line-height: 1.1;
    margin-bottom: 6px;
}
.mi-stat.highlight .mi-value {
    color: var(--accent-bright);
}
.market-legal .mi-stat.highlight .mi-value { color: #a78bfa; }
.market-healthcare .mi-stat.highlight .mi-value { color: #34d399; }
.market-fence .mi-stat.highlight .mi-value { color: #fbbf24; }

.mi-label {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-dim);
}

/* -- .mi-narrative: Market intelligence text block -- */
.mi-narrative {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 28px 32px;
    margin: 32px 0;
    backdrop-filter: blur(8px);
    border-left: 4px solid var(--accent);
}
.market-legal .mi-narrative { border-left-color: var(--mi-legal); }
.market-healthcare .mi-narrative { border-left-color: var(--mi-healthcare); }
.market-fence .mi-narrative { border-left-color: var(--mi-fence); }

.mi-narrative h2 {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    margin-bottom: 12px;
    color: var(--text-primary);
}
.mi-narrative p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 8px;
}
.mi-narrative p:last-child { margin-bottom: 0; }

/* -- .mi-features: Feature/insight card grid -- */
.mi-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 32px 0;
}
.mi-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 24px;
    backdrop-filter: blur(8px);
    transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}
.mi-card:hover {
    transform: translateY(-3px);
    border-color: var(--glass-border-hover);
}
.market-technology .mi-card:hover { box-shadow: 0 4px 20px rgba(59,130,246,0.12); }
.market-legal .mi-card:hover { box-shadow: 0 4px 20px rgba(124,58,237,0.12); }
.market-healthcare .mi-card:hover { box-shadow: 0 4px 20px rgba(5,150,105,0.12); }
.market-fence .mi-card:hover { box-shadow: 0 4px 20px rgba(217,119,6,0.12); }

.mi-card-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin-bottom: 14px;
    background: var(--accent-dim);
}
.market-technology .mi-card-icon { background: rgba(59,130,246,0.12); color: #3b82f6; }
.market-legal .mi-card-icon { background: rgba(124,58,237,0.12); color: #a78bfa; }
.market-healthcare .mi-card-icon { background: rgba(5,150,105,0.12); color: #34d399; }
.market-fence .mi-card-icon { background: rgba(217,119,6,0.12); color: #fbbf24; }

.mi-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}
.mi-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
}
.mi-card .mi-card-stat {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.3rem;
    margin-bottom: 4px;
}
.market-technology .mi-card .mi-card-stat { color: #60a5fa; }
.market-legal .mi-card .mi-card-stat { color: #a78bfa; }
.market-healthcare .mi-card .mi-card-stat { color: #34d399; }
.market-fence .mi-card .mi-card-stat { color: #fbbf24; }

/* -- .mi-banner: Cross-market data divider -- */
.mi-banner {
    background: linear-gradient(135deg, rgba(59,130,246,0.06) 0%, rgba(10,20,50,0.4) 100%);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 28px 32px;
    margin: 40px 0;
    text-align: center;
}
.market-legal .mi-banner { background: linear-gradient(135deg, rgba(124,58,237,0.06) 0%, rgba(10,20,50,0.4) 100%); }
.market-healthcare .mi-banner { background: linear-gradient(135deg, rgba(5,150,105,0.06) 0%, rgba(10,20,50,0.4) 100%); }
.market-fence .mi-banner { background: linear-gradient(135deg, rgba(217,119,6,0.06) 0%, rgba(10,20,50,0.4) 100%); }

.mi-banner h3 {
    font-size: 1.1rem;
    margin-bottom: 16px;
    color: var(--text-primary);
}
.mi-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}
.mi-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    font-size: 0.85rem;
    text-decoration: none;
    transition: border-color var(--transition-fast), transform var(--transition-fast);
}
.mi-badge:hover {
    border-color: var(--accent);
    transform: translateY(-1px);
    color: var(--text-primary);
}
.mi-badge-value {
    font-weight: 800;
    color: var(--accent-bright);
}

/* -- .mi-flow: Horizontal step flow (for landing pages) -- */
.mi-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin: 40px 0;
    flex-wrap: wrap;
}
.mi-step {
    text-align: center;
    flex: 1;
    min-width: 180px;
    padding: 24px 16px;
}
.mi-step-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--accent-dim);
    border: 2px solid var(--accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--accent-bright);
    margin-bottom: 12px;
}
.mi-step h4 {
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 6px;
}
.mi-step p {
    font-size: 0.82rem;
    color: var(--text-dim);
    line-height: 1.5;
}
.mi-flow-arrow {
    font-size: 1.5rem;
    color: var(--text-dim);
    padding: 0 4px;
}

/* -- Responsive: MI components -- */
@media (max-width: 1024px) {
    .mi-stats { grid-template-columns: repeat(2, 1fr); }
    .mi-features { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .mi-stats { grid-template-columns: 1fr; }
    .mi-features { grid-template-columns: 1fr; }
    .mi-narrative { padding: 20px; }
    .mi-banner { padding: 20px; }
    .mi-flow { flex-direction: column; }
    .mi-flow-arrow { transform: rotate(90deg); }
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 32px; right: 32px;
    width: 44px; height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--glass-border-hover);
    background: rgba(10,20,50,0.7);
    backdrop-filter: blur(12px);
    color: var(--accent);
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s;
    z-index: 999;
    font-size: 16px;
}
.back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
}
.back-to-top:hover {
    background: var(--accent);
    color: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px var(--accent-glow);
}

/* ===== SCROLL REVEAL — visible by default, animate if JS loads ===== */
.reveal {
    opacity: 1;
    transform: translateY(0);
}
.reveal.will-animate {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1),
                transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== FOOTER ===== */
.site-footer {
    border-top: 1px solid var(--border-color);
    padding: 56px 0 32px;
    margin-top: 0;
    position: relative;
    z-index: 2;
    background: rgba(6,13,31,0.85);
    backdrop-filter: blur(16px);
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}
.footer-section h4 {
    font-family: var(--font-heading);
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
    font-weight: 700;
}
.footer-section p,
.footer-section a {
    color: #6b88b0;
    text-decoration: none;
    line-height: 1.8;
    font-size: 13px;
    transition: color 0.3s;
}
.footer-section a:hover { color: var(--accent); }
.footer-section ul {
    list-style: none;
    padding: 0;
}
.footer-section ul li {
    margin-bottom: 8px;
}
.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
    color: var(--text-dim);
    font-size: 12px;
    letter-spacing: 1px;
}

/* Market-specific tech data sections */
.tech-sectors-section,
.top-companies-section,
.legal-context-section {
    margin-top: 24px;
}
.tech-sectors-section h3,
.top-companies-section h3,
.legal-context-section h3 {
    font-family: var(--font-heading);
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
}
.tech-sectors-list,
.companies-list {
    list-style: none;
    padding: 0;
}
.tech-sector-item,
.company-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 16px;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9rem;
}
.tech-sector-item:last-child,
.company-item:last-child { border-bottom: none; }
.tech-name, .company-name { color: var(--text-primary); }
.patent-count { color: var(--accent); font-size: 0.8rem; }

/* ===== THREAT ALERT ===== */
.threat-alert {
    background: rgba(255, 0, 85, 0.04);
    border: 1px solid rgba(255, 0, 85, 0.2);
    border-left: 4px solid #ff0055;
    padding: 24px 28px;
    margin: 32px 0;
    position: relative;
    backdrop-filter: blur(8px);
}
.threat-alert h4 {
    color: #dc2626;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0 0 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.threat-alert h4::before {
    content: '\26A0';
    font-size: 1.3em;
    line-height: 1;
}
.threat-alert p {
    color: rgba(185, 28, 28, 0.85);
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
}
.threat-alert p strong {
    color: #dc2626;
}

/* ===== SECURITY DASHBOARD (Technology Threat Panel) ===== */
.security-dashboard {
    display: flex;
    gap: 32px;
    background: rgba(255, 0, 85, 0.03);
    border: 1px solid rgba(255, 0, 85, 0.15);
    padding: 32px;
    margin: 32px 0;
    backdrop-filter: blur(8px);
}
.dashboard-visual {
    flex: 0 0 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-right: 1px solid rgba(255, 0, 85, 0.12);
    padding-right: 32px;
}
.risk-meter {
    width: 120px;
    height: 60px;
    border: 2px solid rgba(255, 0, 85, 0.3);
    border-bottom: none;
    border-radius: 60px 60px 0 0;
    position: relative;
    overflow: hidden;
    background: rgba(255, 0, 85, 0.04);
}
.meter-needle {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 2px;
    height: 52px;
    background: #dc2626;
    transform-origin: bottom center;
    transform: rotate(50deg);
    box-shadow: 0 0 10px rgba(255, 0, 85, 0.5);
    animation: needle-pulse 3s ease-in-out infinite;
}
@keyframes needle-pulse {
    0%, 100% { transform: rotate(50deg); box-shadow: 0 0 10px rgba(255, 0, 85, 0.5); }
    50% { transform: rotate(55deg); box-shadow: 0 0 18px rgba(255, 0, 85, 0.7); }
}
.dashboard-content {
    flex: 1;
}
.dashboard-content h3 {
    color: #dc2626;
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 1.1rem;
    margin: 12px 0;
}
.dashboard-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}
.status-badge {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 14px;
    border: 1px solid rgba(255, 0, 85, 0.25);
    color: #dc2626;
    background: rgba(255, 0, 85, 0.05);
}

/* Warning text for stat values (e.g. healthcare HIPAA status) */
.warning-text {
    color: #dc2626 !important;
}

/* ===== FOCUS STATES (ACCESSIBILITY) ===== */
a:focus-visible,
button:focus-visible,
[role="button"]:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}
.main-nav a:focus-visible,
.service-btn:focus-visible,
.cta-button:focus-visible,
.city-link:focus-visible,
.city-chip:focus-visible,
.tag-card:focus-visible,
.tag:focus-visible,
.state-link:focus-visible,
.breadcrumb a:focus-visible,
.logo a:focus-visible,
.back-to-top:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}
.hamburger:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}
.faq-question:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: -2px;
}

/* ===== SKIP LINK (ACCESSIBILITY) ===== */
.skip-link {
    position: absolute;
    top: -100px;
    left: 16px;
    z-index: 10000;
    padding: 12px 20px;
    background: var(--accent);
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
    border-radius: 4px;
    transition: top 0.2s ease;
}
.skip-link:focus {
    top: 16px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .stat-grid,
    .market-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .header-content { flex-wrap: nowrap; }
    .main-nav { display: none; }
    .hamburger { display: flex; }
    .breadcrumb { margin-top: calc(72px + env(safe-area-inset-top, 0px)); }
    .article-title { font-size: 1.6rem; }
    .article-content { font-size: 1rem; }
    .cta-section { padding: 48px 28px; }
    .states-grid-large,
    .services-grid-large { grid-template-columns: 1fr; }
    .security-dashboard {
        flex-direction: column;
    }
    .dashboard-visual {
        flex: none;
        border-right: none;
        border-bottom: 1px solid rgba(255, 0, 85, 0.12);
        padding-bottom: 24px;
        padding-right: 0;
    }
    .cities-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
    .footer-content { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .stat-grid,
    .market-stats-grid { grid-template-columns: 1fr; }
    .faq-question {
        padding: 16px;
        font-size: 0.9rem;
        gap: 12px;
    }
    .faq-answer { padding-left: 56px; }
    .benefit-icon-cell { width: 60px; padding: 16px; }
    .benefit-text-cell { padding: 16px; }
    .benefit-text-cell h3 { font-size: 0.9rem; }
}
