.hero {
    position: relative;
    min-height: 90vh;
    background: linear-gradient(135deg, #7c3aed 0%, #8b5cf6 50%, #a78bfa 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="hexgrid" width="60" height="60" patternUnits="userSpaceOnUse"><path d="M 30 0 L 60 15 L 60 45 L 30 60 L 0 45 L 0 15 Z" fill="none" stroke="rgba(255,255,255,0.08)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23hexgrid)"/></svg>');
}
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.hero-waves {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: wave-float 25s ease-in-out infinite;
}
@keyframes wave-float {
    0% { transform: translateX(0) translateY(0); }
    50% { transform: translateX(-20px) translateY(-15px); }
    100% { transform: translateX(0) translateY(0); }
}
.hero .container {
    display: grid;
    align-items: center;
    position: relative;
    z-index: 2;
    padding-bottom: 2rem;
    padding-top: 2rem;
}
.platform-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(139, 92, 246, 0.2);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.platform-badge i {
    background: white;
    color: #7c3aed;
    width: 22px;
    height: 22px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}
.hero-title {
    font-size: 3.8rem;
    font-weight: 900;
    color: white;
    line-height: 1.1;
    margin-bottom: 2rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
    letter-spacing: -1px;
}
.hero-title .highlight {
    color: #fbbf24;
    position: relative;
    display: inline-block;
}
.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}
.metric-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 16px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}
.metric-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}
.metric-icon {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #1f2937;
    font-size: 1rem;
    font-weight: 700;
}
.metric-info .metric-number {
    font-size: 1rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    display: block;
}
.metric-info .metric-label {
    font-size: 0.4rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.5rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.hero-actions {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: #1f2937;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.3);
    border: none;
    cursor: pointer;
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(251, 191, 36, 0.4);
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: transparent;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}
.hero-dashboard {
    position: relative;
}
.dashboard-container {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2rem;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: none;
}
.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.dashboard-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin: 0;
}
.dashboard-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
}
.status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    animation: pulse-status 2s infinite;
}
@keyframes pulse-status {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}
.dashboard-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.metric-tile {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 1.2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.metric-tile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
}
.metric-tile:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}
.metric-tile {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.metric-icon {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1f2937;
    font-size: 0.9rem;
    font-weight: 700;
    flex-shrink: 0;
}
.metric-data {
    flex: 1;
    margin-left: 1rem;
}
.metric-value {
    font-size: 1.2rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 0.3rem;
}
.metric-label {
    font-size: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.metric-trend {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    font-size: 0.7rem;
    font-weight: 600;
}
.metric-trend.up {
    color: #10b981;
}
.metric-trend.down {
    color: #ef4444;
}
.metric-trend i {
    font-size: 0.8rem;
}
.dashboard-chart {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1.5rem;
}
.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}
.chart-header h4 {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin: 0;
}
.chart-controls {
    display: flex;
    gap: 0.5rem;
}
.chart-btn {
    padding: 0.4rem 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}
.chart-btn.active,
.chart-btn:hover {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #1f2937;
    border-color: transparent;
}
.chart-bars {
    display: flex;
    align-items: end;
    gap: 1rem;
    height: 120px;
    padding: 0 0.5rem;
}
.chart-bar {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    position: relative;
    cursor: pointer;
}
.bar-fill {
    width: 100%;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    border-radius: 4px 4px 0 0;
    transition: all 0.3s ease;
    position: relative;
    margin-top: auto;
    min-height: 5px;
}
.chart-bar:hover .bar-fill {
    background: linear-gradient(135deg, #a78bfa, #8b5cf6);
    transform: scaleY(1.1);
}
.bar-label {
    position: absolute;
    top: -1.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: #fbbf24;
}
.bar-name {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.5rem;
    text-align: center;
    font-weight: 500;
}
.dashboard-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}
.live-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.pulse {
    width: 6px;
    height: 6px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse-live 1.5s infinite;
}
@keyframes pulse-live {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}
.last-update {
    font-style: italic;
}
.overview {
    padding: 8rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
}
.overview-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}
.overview-main h2 {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #7c3aed 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    letter-spacing: -1px;
}
.overview-description {
    font-size: 1.2rem;
    color: #6b7280;
    margin-bottom: 3rem;
    line-height: 1.7;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}
.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-left: 5px solid #8b5cf6;
    transition: all 0.3s ease;
}
.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}
.stat-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.stat-icon {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}
.stat-info .stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #7c3aed;
    line-height: 1;
}
.stat-info .stat-label {
    font-size: 0.9rem;
    color: #374151;
    font-weight: 600;
    margin-top: 0.3rem;
}
.stat-info .stat-period {
    font-size: 0.8rem;
    color: #9ca3af;
    margin-top: 0.2rem;
}
.overview-sidebar {
    display: grid;
    gap: 2rem;
}
.quick-actions {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-top: 4px solid #8b5cf6;
}
.quick-actions h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #374151;
    margin-bottom: 1.5rem;
}
.action-list {
    display: grid;
    gap: 1rem;
}
.action-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    color: #374151;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    text-decoration: none;
}
.action-btn:hover {
    background: #8b5cf6;
    color: white;
    transform: translateX(3px);
    border-color: #8b5cf6;
}
.action-btn i {
    color: #8b5cf6;
    font-size: 1rem;
}
.action-btn:hover i {
    color: white;
}
.alerts-panel {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-top: 4px solid #f59e0b;
}
.alerts-panel h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #374151;
    margin-bottom: 1.5rem;
}
.alert-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 1rem;
}
.alert-item.urgent {
    background: #fef2f2;
    border-left: 4px solid #ef4444;
}
.alert-item.info {
    background: #f0f9ff;
    border-left: 4px solid #3b82f6;
}
.alert-item i {
    font-size: 1.2rem;
}
.alert-item.urgent i {
    color: #ef4444;
}
.alert-item.info i {
    color: #3b82f6;
}
.alert-item div strong {
    font-size: 0.9rem;
    font-weight: 600;
    color: #374151;
}
.alert-item div p {
    font-size: 0.8rem;
    color: #6b7280;
    margin-top: 0.2rem;
}
.capabilities {
    padding: 8rem 0;
    background: linear-gradient(135deg, #7c3aed 0%, #8b5cf6 100%);
    color: white;
}
.capabilities h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 4rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}
.capability-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
}
.capability-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}
.capability-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.capability-icon {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1f2937;
    font-size: 1.3rem;
    font-weight: 700;
}
.capability-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
}
.capability-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}
.capability-features {
    display: grid;
    gap: 0.8rem;
}
.capability-features li {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
    list-style: none;
    padding-left: 1.5rem;
    position: relative;
}
.capability-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #fbbf24;
    font-weight: 700;
}
.hero-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}
.hero-benefits {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 3rem;
}
.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}
.benefit-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}
.benefit-item i {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #1f2937;
    width: 24px;
    height: 24px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    flex-shrink: 0;
}
.benefit-item span {
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
}
.overview-header {
    text-align: center;
    margin-bottom: 4rem;
}
.overview-header h2 {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #7c3aed 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}
.overview-header p {
    font-size: 1.2rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}
.overview-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}
.strategic-panel {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border-top: 5px solid #8b5cf6;
}
.strategic-panel h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #374151;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.panel-content {
    margin-top: 2rem;
}
.kpi-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}
.kpi-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 16px;
    border-left: 4px solid #8b5cf6;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.kpi-card:hover {
    background: #f1f5f9;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
.kpi-icon {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.kpi-content {
    flex: 1;
}
.kpi-value {
    font-size: 2rem;
    font-weight: 800;
    color: #7c3aed;
    line-height: 1;
    margin-bottom: 0.3rem;
}
.kpi-label {
    font-size: 0.9rem;
    color: #374151;
    font-weight: 600;
    margin-bottom: 0.2rem;
}
.kpi-period {
    font-size: 0.8rem;
    color: #9ca3af;
}
.regional-network {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}
.regional-network::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60"><circle cx="30" cy="30" r="1" fill="rgba(124,58,237,0.1)"/></svg>');
    background-size: 60px 60px;
}
.network-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 2;
}
.network-text h2 {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #7c3aed 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}
.network-text p {
    font-size: 1.2rem;
    color: #6b7280;
    margin-bottom: 3rem;
    line-height: 1.6;
}
.network-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}
.network-stat {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-top: 4px solid #8b5cf6;
    transition: all 0.3s ease;
}
.network-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}
.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #7c3aed;
    line-height: 1;
    margin-bottom: 0.5rem;
}
.stat-label {
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.network-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}
.network-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(139, 92, 246, 0.4);
    background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
}
.network-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}
.network-diagram {
    position: relative;
    width: 400px;
    height: 400px;
}
.network-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.4);
    z-index: 3;
}
.network-center i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}
.network-center span {
    font-size: 0.8rem;
    text-align: center;
}
.network-nodes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translate(42%, 42%);
    z-index: 2;
}
.network-node {
    position: absolute;
    width: 60px;
    height: 60px;
    background: white;
    border: 3px solid #8b5cf6;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    color: #7c3aed;
    font-weight: 700;
    transform: rotate(var(--angle)) translateX(160px) rotate(calc(-1 * var(--angle)));
    transition: all 0.3s ease;
}
.network-node:hover {
    background: #8b5cf6;
    color: white;
    transform: rotate(var(--angle)) translateX(160px) rotate(calc(-1 * var(--angle))) scale(1.1);
}
.network-node i {
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
}
.network-node span {
    font-size: 0.7rem;
}
.network-connections {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 320px;
    height: 320px;
    transform: translate(-50%, -50%);
    border: 2px dashed rgba(139, 92, 246, 0.3);
    border-radius: 50%;
    animation: rotate-connections 30s linear infinite;
}
@keyframes rotate-connections {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}
.cta {
    padding: 8rem 0;
    background: linear-gradient(135deg, #7c3aed 0%, #8b5cf6 50%, #a78bfa 100%);
    position: relative;
    overflow: hidden;
}
.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: 100px 100px;
    animation: float-particles 20s ease-in-out infinite;
}
@keyframes float-particles {
    0% { transform: translateX(0) translateY(0); }
    50% { transform: translateX(-10px) translateY(-20px); }
    100% { transform: translateX(0) translateY(0); }
}
.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}
.cta-content h2 {
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.cta-content p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.cta-actions {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
}
.cta .btn-primary {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}
.cta .btn-primary:hover {
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
    box-shadow: 0 12px 35px rgba(245, 158, 11, 0.5);
}
.cta .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px);
}
.cta .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}
@media (max-width: 1024px) {
    .hero .container {
        gap: 4rem;
    }
    .overview-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .hero-metrics {
        grid-template-columns: 1fr;
    }
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .kpi-grid {
        grid-template-columns: 1fr;
    }
    .hero-layout {
        gap: 4rem;
    }
    .network-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    .network-stats {
        grid-template-columns: 1fr;
    }
    .network-diagram {
        width: 300px;
        height: 300px;
    }
    .network-node {
        transform: rotate(var(--angle)) translateX(120px) rotate(calc(-1 * var(--angle)));
    }
    .network-connections {
        width: 240px;
        height: 240px;
    }
    .cta-actions {
        flex-direction: column;
        gap: 1.5rem;
    }
}
@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
        margin-bottom: 25vh;

    }
    .hero-image-overlay img {
        width: 100vw !important;
        left: 50vw !important;
    }
    .hero-title {
        font-size: 3rem;
    }
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .dashboard-metrics {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .chart-bars {
        height: 100px;
        gap: 0.5rem;
    }
    .dashboard-footer {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    .capabilities-grid {
        grid-template-columns: 1fr;
    }
    .hero-metrics {
        grid-template-columns: 1fr;
    }
    .hero-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    .network-text h2,
    .cta-content h2 {
        font-size: 2.5rem;
    }
    .network-text {
        text-align: center;
    }
    .network-diagram {
        width: 250px;
        height: 250px;
    }
    .network-node {
        width: 50px;
        height: 50px;
        transform: rotate(var(--angle)) translateX(100px) rotate(calc(-1 * var(--angle)));
    }
    .network-connections {
        width: 200px;
        height: 200px;
    }
    .cta-actions {
        flex-direction: column;
        align-items: stretch;
    }
}
@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .capabilities {
        padding: 5rem 0;
    }
    .capability-card {
        padding: 2rem;
    }
    .btn-primary,
    .btn-secondary {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    .dashboard-metrics {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .dashboard-container {
        padding: 1.5rem;
    }
    .chart-header {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    .chart-bars {
        height: 80px;
        gap: 0.3rem;
    }
    .bar-name {
        font-size: 0.6rem;
    }
    .overview-main h2 {
        font-size: 2.5rem;
    }
    .network-text h2,
    .cta-content h2 {
        font-size: 2rem;
    }
    .network-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .network-diagram {
        width: 200px;
        height: 200px;
    }
    .network-center {
        width: 80px;
        height: 80px;
    }
    .network-node {
        width: 40px;
        height: 40px;
        transform: rotate(var(--angle)) translateX(80px) rotate(calc(-1 * var(--angle)));
    }
    .network-connections {
        width: 160px;
        height: 160px;
    }
    .cta {
        padding: 5rem 0;
    }
    .cta-content p {
        font-size: 1.1rem;
    }
}
@media (max-width: 768px) {
    .hero .container {
        width: 100%;
        display: block;
    }
    .hero-title {
        font-size: 2rem;
    }
    .hero-stats {
        gap: 1.5rem;
    }
    .btn-primary, .btn-secondary {
        padding: 1rem 2rem;
        font-size: .7rem;
    }
    .stat-number {
        font-size: 1rem;
    }
    .stat-label {
        font-size: 0.6rem;
    }
    .hero-description {
        font-size: 1rem;
    }
    .hero-visual {
        transform: scale(.7);
    }
    .section-header h2 {
        font-size: 2rem;
    }
    .section-header p {
        font-size: 1rem;
    }
    .platform-badge {
        padding: 0.5rem 0.5rem;
        font-size: 0.6rem;
    }
    .tools-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .management-grid {
        grid-template-columns: 1fr;
    }
    .management-card {
        padding: 2rem;
    }
    .testimonial-card {
        padding: 2rem;
    }
    .cta .btn-primary, .cta .btn-secondary {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    .tools-header h2,
    .management-header h2,
    .testimonials h2,
    .cta-content h2 {
        font-size: 2.5rem;
    }
    .cta-actions {
        flex-direction: column;
        align-items: stretch;
    }
}
