/* ============================================================
   VOXERA COMPONENTS
   Page-specific component styles
   ============================================================ */

/* ==================== HERO SECTION ==================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: var(--nav-height);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem 0.4rem 0.5rem;
    background: var(--bg-glass);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-green);
    animation: pulse-glow 2s infinite;
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.5);
}

.hero-badge span {
    color: var(--accent-cyan);
    font-weight: 600;
}

.hero h1 {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 580px;
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.hero-stat-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-primary);
}

.hero-stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}

/* Hero Visual (Map & Dashboard) */
.hero-visual {
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%);
    width: 55%;
    height: 80%;
    z-index: 1;
    pointer-events: none;
}

.hero-map-canvas {
    width: 100%;
    height: 100%;
    opacity: 0.5;
}

/* ==================== DASHBOARD MOCKUP ==================== */
.dashboard-section {
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.dashboard-mockup {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    position: relative;
}

.dashboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
    background: var(--bg-card);
}

.dashboard-header-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.dashboard-dots {
    display: flex;
    gap: 6px;
}

.dashboard-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dashboard-dot:nth-child(1) { background: #ef4444; }
.dashboard-dot:nth-child(2) { background: #f59e0b; }
.dashboard-dot:nth-child(3) { background: #10b981; }

.dashboard-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.dashboard-body {
    display: grid;
    grid-template-columns: 260px 1fr 280px;
    min-height: 500px;
}

.dashboard-sidebar {
    border-right: 1px solid var(--border-color);
    padding: 1rem;
    background: var(--bg-card);
}

.dash-sidebar-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    color: var(--text-secondary);
    cursor: default;
    transition: all 0.3s;
    margin-bottom: 2px;
}

.dash-sidebar-item.active {
    background: rgba(14, 165, 233, 0.1);
    color: var(--accent-blue);
}

.dash-sidebar-item i {
    width: 16px;
    height: 16px;
}

.dashboard-map {
    position: relative;
    overflow: hidden;
}

.dashboard-map-canvas {
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
}

.dashboard-panel {
    border-left: 1px solid var(--border-color);
    padding: 1rem;
    background: var(--bg-card);
    overflow-y: auto;
}

.dash-panel-title {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-tertiary);
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

/* Dashboard Device Cards */
.dash-device {
    padding: 0.75rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    margin-bottom: 0.5rem;
    background: var(--bg-primary);
    transition: all 0.3s;
}

.dash-device:hover {
    border-color: var(--border-accent);
}

.dash-device-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.dash-device-name {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-primary);
}

.dash-status {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.7rem;
    font-weight: 500;
    padding: 2px 8px;
    border-radius: var(--radius-full);
}

.dash-status.online {
    color: var(--accent-green);
    background: rgba(16, 185, 129, 0.1);
}

.dash-status.warning {
    color: var(--accent-amber);
    background: rgba(245, 158, 11, 0.1);
}

.dash-status.offline {
    color: var(--accent-red);
    background: rgba(239, 68, 68, 0.1);
}

.dash-status-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: currentColor;
}

.dash-device-info {
    display: flex;
    justify-content: space-between;
    font-size: 0.72rem;
    color: var(--text-tertiary);
}

/* Dashboard Alerts */
.dash-alert {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.6rem;
    border-radius: var(--radius-sm);
    margin-bottom: 0.5rem;
    font-size: 0.75rem;
    border: 1px solid;
}

.dash-alert i {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    margin-top: 1px;
}

.dash-alert.alert-warning {
    background: rgba(245, 158, 11, 0.05);
    border-color: rgba(245, 158, 11, 0.2);
    color: var(--accent-amber);
}

.dash-alert.alert-danger {
    background: rgba(239, 68, 68, 0.05);
    border-color: rgba(239, 68, 68, 0.2);
    color: var(--accent-red);
}

.dash-alert.alert-info {
    background: rgba(14, 165, 233, 0.05);
    border-color: rgba(14, 165, 233, 0.2);
    color: var(--accent-blue);
}

/* Dashboard Stats */
.dash-stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.dash-stat-card {
    padding: 0.6rem;
    background: var(--bg-primary);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    text-align: center;
}

.dash-stat-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.dash-stat-label {
    font-size: 0.65rem;
    color: var(--text-tertiary);
    margin-top: 2px;
}

/* ==================== FEATURES GRID ==================== */
.features-section {
    position: relative;
}

.feature-card {
    padding: 2.5rem;
}

.feature-card .card-icon {
    width: 56px;
    height: 56px;
}

.feature-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-tertiary);
    font-family: var(--font-mono);
}

/* ==================== INDUSTRIES ==================== */
.industry-card {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.industry-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.industry-icon i {
    width: 28px;
    height: 28px;
}

.industry-card ul {
    list-style: none;
    padding: 0;
    margin-top: 0.5rem;
}

.industry-card ul li {
    font-size: 0.88rem;
    color: var(--text-secondary);
    padding: 0.3rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.industry-card ul li::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--accent-blue);
    flex-shrink: 0;
}

/* ==================== WHY VOXERA ==================== */
.why-section {
    background: var(--bg-secondary);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.why-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    transition: all 0.3s var(--ease-out);
}

.why-item:hover {
    border-color: var(--border-accent);
    transform: translateX(8px);
}

.why-item-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.why-item-icon i {
    width: 20px;
    height: 20px;
}

.why-item h4 {
    font-size: 1.05rem;
    margin-bottom: 0.4rem;
}

.why-item p {
    font-size: 0.88rem;
}

/* ==================== TECH STACK ==================== */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 1rem;
}

.tech-item {
    text-align: center;
    padding: 1.5rem 1rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    transition: all 0.3s var(--ease-out);
}

.tech-item:hover {
    border-color: var(--border-accent);
    transform: translateY(-4px);
    box-shadow: var(--glow-blue);
}

.tech-item i {
    width: 32px;
    height: 32px;
    color: var(--accent-blue);
    margin-bottom: 0.75rem;
}

.tech-item span {
    display: block;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-secondary);
}

/* ==================== TESTIMONIALS ==================== */
.testimonials-section {
    background: var(--bg-secondary);
}

.testimonial-card {
    padding: 2rem;
}

.testimonial-quote {
    font-size: 1rem;
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1.5rem;
    border-left: 2px solid var(--accent-blue);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
}

.testimonial-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.testimonial-role {
    font-size: 0.8rem;
    color: var(--text-tertiary);
}

/* ==================== CTA SECTION ==================== */
.cta-section {
    position: relative;
    overflow: hidden;
}

.cta-box {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 5rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-glow);
    pointer-events: none;
}

.cta-box h2 {
    margin-bottom: 1rem;
    position: relative;
}

.cta-box p {
    font-size: 1.1rem;
    max-width: 550px;
    margin: 0 auto 2rem;
    position: relative;
}

.cta-box .btn-group {
    justify-content: center;
    position: relative;
}

/* ==================== CONTACT PAGE ==================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    margin-bottom: 1rem;
    transition: all 0.3s;
}

.contact-info-card:hover {
    border-color: var(--border-accent);
}

.contact-info-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.contact-info-icon i {
    width: 20px;
    height: 20px;
}

.contact-info-title {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.contact-info-text {
    font-size: 0.88rem;
    color: var(--text-secondary);
}

.contact-form-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    backdrop-filter: blur(10px);
}

.contact-form-card h3 {
    margin-bottom: 0.5rem;
}

.contact-form-card > p {
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* ==================== BLOG CARDS ==================== */
.blog-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    transition: all 0.4s var(--ease-out);
}

.blog-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-4px);
    box-shadow: var(--glow-blue);
}

.blog-card-image {
    height: 200px;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.blog-card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, var(--bg-card));
}

.blog-card-body {
    padding: 1.5rem;
}

.blog-card-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.75rem;
    font-size: 0.78rem;
    color: var(--text-tertiary);
}

.blog-card-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.blog-card-meta i {
    width: 12px;
    height: 12px;
}

.blog-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.blog-card p {
    font-size: 0.88rem;
    line-height: 1.6;
}

.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-blue);
    margin-top: 1rem;
    transition: gap 0.3s;
}

.blog-card-link:hover {
    gap: 0.6rem;
}

.blog-card-link i {
    width: 14px;
    height: 14px;
}

/* ==================== ABOUT PAGE ==================== */
.about-hero {
    padding: 10rem 0 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.timeline {
    position: relative;
    padding-left: 3rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-color);
}

.timeline-item {
    position: relative;
    padding-bottom: 3rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -3rem;
    top: 0.5rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--accent-blue);
    border: 3px solid var(--bg-primary);
    transform: translateX(-5px);
}

.timeline-year {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--accent-blue);
    margin-bottom: 0.5rem;
    font-family: var(--font-mono);
}

.timeline-item h4 {
    margin-bottom: 0.5rem;
}

.timeline-item p {
    font-size: 0.9rem;
}

/* ==================== TEAM GRID ==================== */
.team-card {
    text-align: center;
    padding: 2rem;
}

.team-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.team-name {
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: 0.25rem;
}

.team-role {
    font-size: 0.85rem;
    color: var(--accent-blue);
    margin-bottom: 0.5rem;
}

.team-bio {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* ==================== GOVERNMENT PAGE ==================== */
.gov-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.gov-feature-card {
    padding: 2.5rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.gov-feature-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.gov-feature-icon i {
    width: 24px;
    height: 24px;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.cert-card {
    text-align: center;
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    transition: all 0.3s;
}

.cert-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-4px);
}

.cert-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--bg-tertiary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--accent-blue);
}

.cert-icon i {
    width: 28px;
    height: 28px;
}

.cert-name {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.cert-desc {
    font-size: 0.82rem;
    color: var(--text-secondary);
}

/* ==================== SOLUTIONS PAGE ==================== */
.solution-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 4rem 0;
    border-bottom: 1px solid var(--border-color);
}

.solution-detail:nth-child(even) {
    direction: rtl;
}

.solution-detail:nth-child(even) > * {
    direction: ltr;
}

.solution-visual {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-card) 100%);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 1.75rem;
    aspect-ratio: 4/3;
    display: flex;
    align-items: stretch;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.solution-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-glow);
    pointer-events: none;
    z-index: 0;
}

/* Inner mockup wrapper */
.sol-mockup {
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    font-family: var(--font-mono);
    font-size: 0.72rem;
}

/* Mockup top bar (window chrome) */
.sol-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0.75rem;
    background: var(--bg-tertiary);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
}

.sol-bar-dots {
    display: flex;
    gap: 5px;
}

.sol-bar-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.sol-bar-dots span:nth-child(1) { background: #ef4444; }
.sol-bar-dots span:nth-child(2) { background: #f59e0b; }
.sol-bar-dots span:nth-child(3) { background: #22c55e; }

.sol-bar-title {
    font-size: 0.68rem;
    color: var(--text-tertiary);
    letter-spacing: 0.05em;
}

.sol-bar-status {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.65rem;
    color: #22c55e;
}

.sol-bar-status::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22c55e;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Mockup body */
.sol-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    overflow: hidden;
}

/* Row of KPI stat chips */
.sol-stats {
    display: flex;
    gap: 0.5rem;
}

.sol-stat {
    flex: 1;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 0.45rem 0.6rem;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sol-stat-val {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-blue);
    line-height: 1;
}

.sol-stat-lbl {
    font-size: 0.58rem;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Map / chart placeholder area */
.sol-map {
    flex: 1;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    position: relative;
    overflow: hidden;
    min-height: 80px;
}

/* Data row list items */
.sol-rows {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.sol-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 0.4rem 0.6rem;
    gap: 0.5rem;
}

.sol-row-label {
    color: var(--text-secondary);
    font-size: 0.67rem;
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.sol-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}

.sol-row-val {
    font-size: 0.67rem;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 4px;
    white-space: nowrap;
}

.sol-row-val.green  { background: rgba(34,197,94,0.12);  color: #22c55e; }
.sol-row-val.blue   { background: rgba(59,130,246,0.12);  color: #3b82f6; }
.sol-row-val.amber  { background: rgba(245,158,11,0.12);  color: #f59e0b; }
.sol-row-val.purple { background: rgba(168,85,247,0.12);  color: #a855f7; }
.sol-row-val.red    { background: rgba(239,68,68,0.12);   color: #ef4444; }
.sol-row-val.cyan   { background: rgba(6,182,212,0.12);   color: #06b6d4; }

/* Progress bar */
.sol-bar-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.65rem;
    color: var(--text-tertiary);
}

.sol-progress {
    flex: 1;
    height: 4px;
    background: var(--bg-tertiary);
    border-radius: 2px;
    overflow: hidden;
}

.sol-progress-fill {
    height: 100%;
    border-radius: 2px;
    background: var(--gradient-primary);
}

/* Icon accent in header */
.sol-icon-badge {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.sol-icon-badge i {
    width: 14px;
    height: 14px;
}

/* SVG map grid (for GPS / map visuals) */
.sol-map svg {
    width: 100%;
    height: 100%;
    opacity: 0.55;
}

/* Mini chart bars */
.sol-chart {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 48px;
    padding: 0 0.5rem 0.4rem;
}

.sol-chart-bar {
    flex: 1;
    border-radius: 2px 2px 0 0;
    background: var(--accent-blue);
    opacity: 0.6;
    transition: opacity 0.3s;
}

.sol-chart-bar.active {
    opacity: 1;
    background: var(--gradient-primary);
}

/* Ping / beacon animation dots */
.sol-ping {
    position: absolute;
    border-radius: 50%;
    background: var(--accent-blue);
    animation: sol-ping-anim 2s ease-out infinite;
}

@keyframes sol-ping-anim {
    0%   { transform: scale(0.5); opacity: 0.9; }
    100% { transform: scale(2.5); opacity: 0;   }
}

/* Route path SVG lines */
.sol-route {
    stroke: var(--accent-blue);
    stroke-width: 1.5;
    fill: none;
    stroke-dasharray: 4 3;
    stroke-linecap: round;
}

/* Grid dots background in map area */
.sol-map-bg {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, var(--border-color) 1px, transparent 1px);
    background-size: 14px 14px;
}

/* BLE mesh network nodes */
.sol-node {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-blue);
}

.sol-node::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1px solid var(--accent-blue);
    opacity: 0.3;
}

/* Flashing badge for live updates */
.sol-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.58rem;
    font-weight: 600;
    color: #22c55e;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.sol-live-badge::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #22c55e;
    animation: pulse-dot 1.5s infinite;
}

.solution-info h3 {
    margin-bottom: 1rem;
}

.solution-info p {
    margin-bottom: 1.5rem;
}

.solution-features {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.solution-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.92rem;
    color: var(--text-secondary);
}

.solution-features li i {
    width: 16px;
    height: 16px;
    color: var(--accent-green);
    flex-shrink: 0;
}

/* ==================== PAGE HERO (Inner pages) ==================== */
.page-hero {
    padding: 10rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
}

.page-hero .particle-grid {
    opacity: 0.5;
}

.page-hero h1 {
    position: relative;
    z-index: 1;
    margin-bottom: 1rem;
}

.page-hero p {
    position: relative;
    z-index: 1;
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ==================== RESPONSIVE OVERRIDES ==================== */
@media (max-width: 1024px) {
    .hero-visual {
        display: none;
    }

    .hero-content {
        max-width: 100%;
    }

    .dashboard-body {
        grid-template-columns: 1fr;
    }

    .dashboard-sidebar,
    .dashboard-panel {
        display: none;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .solution-detail,
    .solution-detail:nth-child(even) {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .gov-features {
        grid-template-columns: 1fr;
    }

    .certifications-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .dashboard-mockup {
        border-radius: var(--radius-md);
    }

    .cta-box {
        padding: 3rem 1.5rem;
    }

    .certifications-grid {
        grid-template-columns: 1fr;
    }
}
