/* Import modern tech fonts */
@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@300;400;500;600;700;800&family=Raleway:wght@300;400;500;600;700;800&display=swap');

/* Reset and Base Styles - cleaned up some old code here */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --electric-blue: #2563EB;
    --energy-yellow: #FDE047;
    --dark-blue: #1E3A8A;
    --text-light: #E0E7FF;
    --text-dark: #1E293B;
    --white: #FFFFFF;
    --glow-blue: rgba(37, 99, 235, 0.6);
    --glow-yellow: rgba(253, 224, 71, 0.5);
    --shadow-glow: 0 0 20px rgba(37, 99, 235, 0.4);
    --shadow-glow-yellow: 0 0 15px rgba(253, 224, 71, 0.5);
}

body {
    font-family: 'Exo 2', 'Raleway', sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background-color: var(--dark-blue);
    overflow-x: hidden;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Header Styles */
.header {
    background: rgba(30, 58, 138, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease; /* smooth transition for scroll */
    border-bottom: 1px solid rgba(37, 99, 235, 0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--electric-blue);
    text-decoration: none;
    letter-spacing: -0.5px;
    transition: all 0.3s ease;
    text-shadow: 0 0 10px var(--glow-blue);
    font-family: 'Exo 2', sans-serif;
}

.logo:hover {
    color: var(--energy-yellow);
    text-shadow: 0 0 15px var(--glow-yellow);
    transform: scale(1.05);
}

.nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    font-family: 'Raleway', sans-serif;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--energy-yellow);
    box-shadow: var(--shadow-glow-yellow);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--energy-yellow);
    text-shadow: 0 0 8px var(--glow-yellow);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background: var(--electric-blue);
    transition: all 0.3s ease;
    border-radius: 2px;
    box-shadow: 0 0 5px var(--glow-blue);
}

.burger-menu.active span {
    background: var(--energy-yellow);
    box-shadow: 0 0 8px var(--glow-yellow);
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section with Fullscreen Background */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--dark-blue) 0%, #0F172A 100%);
    padding: 2rem 0;
}

/* Hero Background Slider */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.92) 0%, rgba(15, 23, 42, 0.95) 100%);
    z-index: 1;
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    bottom: 3rem;
    right: 3rem;
    z-index: 5;
    display: flex;
    gap: 1rem;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid var(--electric-blue);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.slider-dot:hover {
    background: rgba(253, 224, 71, 0.5);
    border-color: var(--energy-yellow);
    box-shadow: 0 0 10px var(--glow-yellow);
}

.slider-dot.active {
    background: var(--energy-yellow);
    box-shadow: 0 0 15px var(--glow-yellow);
    transform: scale(1.2);
}

.energy-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

#energy-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.6;
}

.lightning-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.lightning {
    position: absolute;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--electric-blue), transparent);
    opacity: 0;
    animation: lightning-flash 0.3s ease-out;
    box-shadow: 0 0 10px var(--electric-blue);
}

@keyframes lightning-flash {
    0% { opacity: 0; }
    50% { opacity: 1; }
    100% { opacity: 0; }
}

.energy-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--energy-yellow);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--energy-yellow);
    animation: particle-float 8s infinite ease-in-out;
}

@keyframes particle-float {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-100px) translateX(50px);
        opacity: 1;
    }
}

.hero-content {
    position: relative;
    z-index: 3;
    color: var(--text-light);
    max-width: 800px;
    padding: 4rem 0;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-family: 'Exo 2', sans-serif;
    text-shadow: 0 0 20px rgba(37, 99, 235, 0.5);
    background: linear-gradient(135deg, var(--text-light) 0%, var(--electric-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    font-family: 'Raleway', sans-serif;
    color: var(--text-light);
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.3);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
    border-color: var(--electric-blue);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--energy-yellow);
    text-shadow: 0 0 15px var(--glow-yellow);
    font-family: 'Exo 2', sans-serif;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 0.5rem;
    font-family: 'Raleway', sans-serif;
}

.hero-cta {
    display: flex;
    gap: 1rem;
}

/* Network Map SVG */
.network-map {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    z-index: 2;
    opacity: 0.7;
    pointer-events: none;
}

.network-svg {
    width: 100%;
    height: 100%;
}

.network-node {
    fill: var(--electric-blue);
    filter: drop-shadow(0 0 8px var(--electric-blue));
    cursor: pointer;
    transition: all 0.3s ease;
    animation: node-pulse 2s infinite ease-in-out;
}

.network-node:hover {
    fill: var(--energy-yellow);
    filter: drop-shadow(0 0 15px var(--energy-yellow));
    transform: scale(1.2);
}

@keyframes node-pulse {
    0%, 100% {
        opacity: 0.8;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

.network-line {
    stroke: var(--electric-blue);
    stroke-width: 2;
    fill: none;
    filter: drop-shadow(0 0 4px var(--electric-blue));
    animation: line-pulse 3s infinite ease-in-out;
}

@keyframes line-pulse {
    0%, 100% {
        opacity: 0.4;
        stroke-width: 2;
    }
    50% {
        opacity: 0.8;
        stroke-width: 3;
    }
}

.energy-flow {
    stroke: var(--energy-yellow);
    stroke-width: 3;
    fill: none;
    filter: drop-shadow(0 0 8px var(--energy-yellow));
    stroke-dasharray: 10 5;
    animation: energy-flow 2s linear infinite;
}

@keyframes energy-flow {
    0% {
        stroke-dashoffset: 0;
    }
    100% {
        stroke-dashoffset: 15;
    }
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    color: var(--text-light);
    text-align: center;
    opacity: 0.7;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--electric-blue);
    border-bottom: 2px solid var(--electric-blue);
    transform: rotate(45deg);
    margin: 10px auto;
    box-shadow: 0 0 5px var(--electric-blue);
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-family: 'Raleway', sans-serif;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--electric-blue);
    color: var(--white);
    box-shadow: var(--shadow-glow);
    border: 1px solid var(--electric-blue);
}

.btn-primary:hover {
    background: #1D4ED8;
    box-shadow: 0 0 25px var(--glow-blue);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--electric-blue);
    box-shadow: 0 0 10px rgba(37, 99, 235, 0.3);
}

.btn-secondary:hover {
    background: rgba(37, 99, 235, 0.2);
    border-color: var(--energy-yellow);
    color: var(--energy-yellow);
    box-shadow: 0 0 15px var(--glow-yellow);
}

/* Section Styles */
section {
    padding: 5rem 0;
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-light);
    font-family: 'Exo 2', sans-serif;
    text-shadow: 0 0 15px rgba(37, 99, 235, 0.5);
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
    font-family: 'Raleway', sans-serif;
}

/* Solutions Section */
.solutions {
    background: linear-gradient(180deg, var(--dark-blue) 0%, #0F172A 100%);
    position: relative;
}

.solutions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="%232563EB" stroke-width="0.5" opacity="0.2"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.solution-card {
    background: rgba(30, 58, 138, 0.6);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(37, 99, 235, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    will-change: opacity, transform;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.solution-card:hover::before {
    opacity: 1;
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
    border-color: var(--electric-blue);
}

.solution-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid var(--electric-blue);
    box-shadow: 0 0 10px var(--glow-blue);
}

.solution-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.solution-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
    font-family: 'Exo 2', sans-serif;
}

.solution-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    opacity: 0.9;
    font-family: 'Raleway', sans-serif;
}

.solution-features {
    list-style: none;
}

.solution-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
    opacity: 0.9;
    font-family: 'Raleway', sans-serif;
}

.solution-features li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--energy-yellow);
    filter: drop-shadow(0 0 5px var(--glow-yellow));
}

/* Network Components Accordion Section */
.analytics {
    background: linear-gradient(180deg, #0F172A 0%, var(--dark-blue) 100%);
    position: relative;
}

.analytics-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.network-visualization {
    width: 100%;
    height: 400px;
    background: rgba(30, 58, 138, 0.3);
    border-radius: 10px;
    border: 1px solid rgba(37, 99, 235, 0.3);
    position: relative;
    overflow: hidden;
}

#component-canvas {
    width: 100%;
    height: 100%;
}

.analytics-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accordion-item {
    border: 1px solid rgba(37, 99, 235, 0.3);
    border-radius: 8px;
    overflow: hidden;
    background: rgba(30, 58, 138, 0.4);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
}

.accordion-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--electric-blue);
    transform: scaleY(0);
    transition: transform 0.3s ease;
    box-shadow: 0 0 10px var(--electric-blue);
}

.accordion-item.active::before {
    transform: scaleY(1);
}

.accordion-item.active {
    border-color: var(--electric-blue);
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.4);
    background: rgba(30, 58, 138, 0.6);
}

.accordion-header {
    width: 100%;
    padding: 1.5rem;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    color: var(--text-light);
    font-family: 'Exo 2', sans-serif;
    position: relative;
}

.accordion-header:hover {
    color: var(--energy-yellow);
}

.accordion-title {
    flex: 1;
}

.accordion-status {
    font-size: 0.85rem;
    color: var(--energy-yellow);
    margin-right: 1rem;
    font-family: 'Raleway', sans-serif;
    text-shadow: 0 0 8px var(--glow-yellow);
}

.accordion-icon {
    transition: transform 0.3s ease;
    color: var(--electric-blue);
    filter: drop-shadow(0 0 5px var(--electric-blue));
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
    color: var(--energy-yellow);
    filter: drop-shadow(0 0 8px var(--glow-yellow));
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 1.5rem;
    background: rgba(15, 23, 42, 0.5);
}

.accordion-item.active .accordion-content {
    max-height: 500px;
    padding: 1.5rem;
    animation: electric-pulse 0.5s ease;
}

@keyframes electric-pulse {
    0% {
        box-shadow: 0 0 0 rgba(37, 99, 235, 0);
    }
    50% {
        box-shadow: 0 0 30px rgba(37, 99, 235, 0.6);
    }
    100% {
        box-shadow: 0 0 0 rgba(37, 99, 235, 0);
    }
}

.component-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(37, 99, 235, 0.2);
}

.metric {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.metric-label {
    font-size: 0.75rem;
    color: var(--text-light);
    opacity: 0.7;
    margin-bottom: 0.25rem;
    font-family: 'Raleway', sans-serif;
}

.metric-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--energy-yellow);
    text-shadow: 0 0 10px var(--glow-yellow);
    font-family: 'Exo 2', sans-serif;
}

.status-online {
    color: var(--energy-yellow) !important;
}

.accordion-content p {
    margin-bottom: 1rem;
    color: var(--text-light);
    opacity: 0.9;
    font-family: 'Raleway', sans-serif;
    line-height: 1.8;
}

.accordion-content ul {
    list-style: none;
    padding-left: 0;
}

.accordion-content li {
    padding: 0.5rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
    opacity: 0.9;
    font-family: 'Raleway', sans-serif;
}

.accordion-content li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--electric-blue);
    font-weight: bold;
    filter: drop-shadow(0 0 5px var(--electric-blue));
}

/* Monitoring Section */
.monitoring {
    background: linear-gradient(180deg, var(--dark-blue) 0%, #0F172A 100%);
    position: relative;
}

.monitoring-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.monitoring-item {
    background: rgba(30, 58, 138, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(37, 99, 235, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    will-change: opacity, transform;
}

.monitoring-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
    border-color: var(--electric-blue);
}

.monitoring-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.monitoring-item h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.5rem;
    color: var(--text-light);
    font-family: 'Exo 2', sans-serif;
}

.monitoring-item p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-light);
    opacity: 0.9;
    font-family: 'Raleway', sans-serif;
}

/* Platform Section */
.platform {
    background: linear-gradient(180deg, #0F172A 0%, var(--dark-blue) 100%);
}

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

.platform-features {
    margin: 2rem 0;
}

.feature-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(37, 99, 235, 0.1);
    border-left: 3px solid var(--electric-blue);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(37, 99, 235, 0.2);
    border-left-color: var(--energy-yellow);
    box-shadow: 0 0 15px rgba(37, 99, 235, 0.3);
}

.feature-item h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
    font-family: 'Exo 2', sans-serif;
}

.feature-item p {
    color: var(--text-light);
    opacity: 0.9;
    font-family: 'Raleway', sans-serif;
}

.platform-visual img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow-glow);
    border: 1px solid rgba(37, 99, 235, 0.3);
}

/* Integration Section */
.integration {
    background: linear-gradient(180deg, var(--dark-blue) 0%, #0F172A 100%);
}

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

.integration-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.integration-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: rgba(30, 58, 138, 0.4);
    border-radius: 10px;
    border: 1px solid rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
    will-change: opacity, transform;
}

.integration-item:hover {
    border-color: var(--electric-blue);
    box-shadow: var(--shadow-glow);
    transform: translateX(10px);
}

.integration-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--electric-blue);
    min-width: 60px;
    text-shadow: 0 0 10px var(--glow-blue);
    font-family: 'Exo 2', sans-serif;
}

.integration-details h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
    font-family: 'Exo 2', sans-serif;
}

.integration-details p {
    color: var(--text-light);
    opacity: 0.9;
    font-family: 'Raleway', sans-serif;
}

.integration-visual img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow-glow);
    border: 1px solid rgba(37, 99, 235, 0.3);
}

/* Sustainability Section */
.sustainability {
    background: linear-gradient(180deg, #0F172A 0%, var(--dark-blue) 100%);
}

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

.sustainability-visual img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow-glow);
    border: 1px solid rgba(37, 99, 235, 0.3);
}

.sustainability-metrics {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
}

.metric {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(37, 99, 235, 0.3);
    flex: 1;
    transition: all 0.3s ease;
}

.metric:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-glow);
    border-color: var(--electric-blue);
}

.metric-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--energy-yellow);
    text-shadow: 0 0 15px var(--glow-yellow);
    font-family: 'Exo 2', sans-serif;
}

.metric-label {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.5rem;
    opacity: 0.9;
    font-family: 'Raleway', sans-serif;
}

.sustainability-note {
    color: var(--text-light);
    font-style: italic;
    opacity: 0.8;
    font-family: 'Raleway', sans-serif;
}

/* Contact Section */
.contact {
    background: linear-gradient(180deg, var(--dark-blue) 0%, #0F172A 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    padding: 1.5rem;
    background: rgba(30, 58, 138, 0.4);
    border-radius: 10px;
    border: 1px solid rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
}

.contact-item:hover {
    border-color: var(--electric-blue);
    box-shadow: var(--shadow-glow);
}

.contact-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
    font-family: 'Exo 2', sans-serif;
}

.contact-item p {
    color: var(--text-light);
    opacity: 0.9;
    font-family: 'Raleway', sans-serif;
}

.contact-item a {
    color: var(--electric-blue);
    text-decoration: none;
    transition: all 0.3s ease;
    text-shadow: 0 0 5px rgba(37, 99, 235, 0.5);
}

.contact-item a:hover {
    color: var(--energy-yellow);
    text-shadow: 0 0 10px var(--glow-yellow);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(37, 99, 235, 0.3);
    border-radius: 5px;
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
    background: rgba(30, 58, 138, 0.4);
    color: var(--text-light);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--electric-blue);
    box-shadow: 0 0 15px rgba(37, 99, 235, 0.4);
    background: rgba(30, 58, 138, 0.6);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(224, 231, 255, 0.5);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: #0F172A;
    color: var(--text-light);
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(37, 99, 235, 0.3);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
    color: var(--text-light);
    font-family: 'Exo 2', sans-serif;
}

.footer-section p {
    margin-bottom: 0.5rem;
    opacity: 0.8;
    line-height: 1.8;
    font-family: 'Raleway', sans-serif;
}

.footer-section a {
    color: var(--text-light);
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    opacity: 1;
    color: var(--energy-yellow);
    text-shadow: 0 0 8px var(--glow-yellow);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(37, 99, 235, 0.2);
    opacity: 0.7;
    font-family: 'Raleway', sans-serif;
}

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    color: var(--text-light);
    padding: 1.5rem;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
    border-top: 1px solid rgba(37, 99, 235, 0.3);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-notice.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-family: 'Raleway', sans-serif;
}

.cookie-content a {
    color: var(--energy-yellow);
    text-decoration: underline;
    text-shadow: 0 0 5px var(--glow-yellow);
}

.cookie-btn {
    padding: 0.75rem 2rem;
    background: var(--electric-blue);
    color: var(--white);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'Raleway', sans-serif;
    box-shadow: var(--shadow-glow);
}

.cookie-btn:hover {
    background: #1D4ED8;
    box-shadow: 0 0 20px var(--glow-blue);
    transform: translateY(-2px);
}

/* Policy Pages */
.policy-page {
    padding: 4rem 0;
    max-width: 900px;
    margin: 0 auto;
    background: var(--dark-blue);
    min-height: 80vh;
}

.policy-page h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
    font-family: 'Exo 2', sans-serif;
    text-shadow: 0 0 15px rgba(37, 99, 235, 0.5);
}

.policy-date {
    color: var(--text-light);
    margin-bottom: 3rem;
    font-style: italic;
    opacity: 0.7;
    font-family: 'Raleway', sans-serif;
}

.policy-page section {
    margin-bottom: 3rem;
    padding: 0;
}

.policy-page h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text-light);
    font-family: 'Exo 2', sans-serif;
}

.policy-page h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-light);
    font-family: 'Exo 2', sans-serif;
}

.policy-page p {
    margin-bottom: 1rem;
    color: var(--text-light);
    line-height: 1.8;
    opacity: 0.9;
    font-family: 'Raleway', sans-serif;
}

.policy-page ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.policy-page li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
    line-height: 1.8;
    opacity: 0.9;
    font-family: 'Raleway', sans-serif;
}

.policy-page a {
    color: var(--electric-blue);
    text-decoration: none;
    text-shadow: 0 0 5px rgba(37, 99, 235, 0.5);
}

.policy-page a:hover {
    color: var(--energy-yellow);
    text-shadow: 0 0 10px var(--glow-yellow);
}

/* Thanks Page */
.thanks-container {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-blue);
}

.thanks-content {
    text-align: center;
    padding: 3rem;
    background: rgba(30, 58, 138, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    box-shadow: var(--shadow-glow);
    border: 1px solid rgba(37, 99, 235, 0.3);
    max-width: 500px;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: var(--energy-yellow);
    color: var(--dark-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
    box-shadow: 0 0 30px var(--glow-yellow);
    font-weight: bold;
}

.thanks-content h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-light);
    font-family: 'Exo 2', sans-serif;
}

.thanks-content p {
    color: var(--text-light);
    margin-bottom: 2rem;
    opacity: 0.9;
    font-family: 'Raleway', sans-serif;
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
        border-top: 1px solid rgba(37, 99, 235, 0.3);
    }

    .nav.active {
        transform: translateX(0);
    }

    .burger-menu {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .analytics-content,
    .platform-content,
    .integration-content,
    .sustainability-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .sustainability-metrics {
        flex-direction: column;
        gap: 1.5rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .solutions-grid,
    .monitoring-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2rem;
    }

    .component-metrics {
        grid-template-columns: 1fr;
    }
}

/* Fade-in animation classes */
.fade-in-hidden {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Parallax smooth transitions */
#energy-canvas,
.network-map {
    transition: transform 0.1s linear;
    will-change: transform;
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-content {
        padding: 2rem 0;
    }

    section {
        padding: 3rem 0;
    }

    .section-header {
        margin-bottom: 2rem;
    }
}
