/* ========================================
   Canadian Energy Innovation Chronicles
   Futuristic Energy Design System
   ======================================== */

/* ========== Cookie Banner Import ========== */
@import url('cookie-banner.css');

/* ========== CSS Variables ========== */
:root {
    /* Color Palette - Gradient Deep Blue → Electric Blue */
    --primary-dark: #001F3F;
    --primary-blue: #0288D1;
    --accent-maple: #D32F2F;
    --accent-neon: #00E676;
    --accent-silver: #B0BEC5;
    
    /* Gradient Backgrounds */
    --gradient-primary: linear-gradient(135deg, #001F3F 0%, #0288D1 100%);
    --gradient-hero: linear-gradient(180deg, #001F3F 0%, #003D5C 50%, #0288D1 100%);
    --gradient-overlay: linear-gradient(90deg, rgba(0, 31, 63, 0.95) 0%, rgba(2, 136, 209, 0.85) 100%);
    
    /* Typography */
    --font-title: 'Orbitron', sans-serif;
    --font-body: 'Noto Sans', sans-serif;
    --font-code: 'Source Code Pro', monospace;
    --font-retro: 'VT323', monospace;
    
    /* Font Sizes */
    --text-xl: 46px;
    --text-large: 32px;
    --text-medium: 24px;
    --text-body: 18px;
    --text-small: 14px;
    --text-tiny: 12px;
    
    /* Line Height */
    --line-height: 1.65;
    
    /* Layout Widths */
    --width-jumbo: 100%;
    --width-wide: 1400px;
    --width-medium: 1000px;
    --width-compact: 720px;
    
    /* Spacing */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 48px;
    --space-xl: 64px;
    --space-xxl: 96px;
    
    /* Effects */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --shadow-sm: 0 2px 8px rgba(0, 31, 63, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 31, 63, 0.2);
    --shadow-lg: 0 8px 32px rgba(0, 31, 63, 0.3);
    --glow-neon: 0 0 20px rgba(0, 230, 118, 0.5);
    --glow-blue: 0 0 30px rgba(2, 136, 209, 0.6);
}

/* ========== Global Reset ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: var(--text-body);
    line-height: var(--line-height);
    color: #FFFFFF;
    background: var(--primary-dark);
    overflow-x: hidden;
}

/* ========== Typography ========== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-title);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

h1 { font-size: var(--text-xl); }
h2 { font-size: var(--text-large); }
h3 { font-size: var(--text-medium); }
h4 { font-size: 20px; }

p {
    margin-bottom: var(--space-sm);
}

a {
    color: var(--accent-neon);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--primary-blue);
    text-shadow: var(--glow-neon);
}

/* ========== Navigation ========== */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 31, 63, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--primary-blue);
    box-shadow: var(--shadow-lg);
}

.nav-container {
    max-width: var(--width-wide);
    margin: 0 auto;
    padding: var(--space-sm) var(--space-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-title);
    font-size: 24px;
    font-weight: 900;
    color: var(--accent-neon);
    text-shadow: var(--glow-neon);
}

.logo i {
    font-size: 32px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-xs);
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--accent-neon);
    border-radius: 2px;
    transition: var(--transition-normal);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--space-md);
    align-items: center;
}

.nav-menu a {
    font-family: var(--font-code);
    font-size: var(--text-small);
    color: var(--accent-silver);
    padding: var(--space-xs) var(--space-sm);
    border-radius: 4px;
    transition: var(--transition-fast);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--accent-neon);
    background: rgba(0, 230, 118, 0.1);
    box-shadow: var(--glow-neon);
}

/* ========== Hero Section - Jumbo ========== */
.hero-jumbo {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-hero);
    overflow: hidden;
    padding-top: 80px;
}

/* CRT Overlay Effect */
.crt-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.15) 0px,
        transparent 1px,
        transparent 2px,
        rgba(0, 0, 0, 0.15) 3px
    );
    pointer-events: none;
    opacity: 0.3;
}

/* Grid Lines Background */
.grid-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(2, 136, 209, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(2, 136, 209, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.hero-content {
    max-width: var(--width-wide);
    margin: 0 auto;
    padding: var(--space-xl) var(--space-md);
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-xl);
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-size: clamp(32px, 5vw, var(--text-xl));
    margin-bottom: var(--space-md);
    text-transform: uppercase;
}

/* Glitch Title Effect */
.glitch-title {
    position: relative;
    color: var(--accent-neon);
    text-shadow: 
        0 0 10px rgba(0, 230, 118, 0.8),
        0 0 20px rgba(0, 230, 118, 0.6),
        0 0 40px rgba(0, 230, 118, 0.4);
    animation: glitchText 5s infinite;
}

@keyframes glitchText {
    0%, 90%, 100% { opacity: 1; }
    92%, 94%, 96% { opacity: 0.8; }
    93%, 95%, 97% { opacity: 0.9; }
}

.hero-subtitle {
    font-family: var(--font-code);
    font-size: var(--text-medium);
    color: var(--primary-blue);
    margin-bottom: var(--space-md);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-description {
    font-size: 20px;
    color: var(--accent-silver);
    margin-bottom: var(--space-lg);
    max-width: 600px;
}

.hero-stats {
    display: flex;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-title);
    font-size: 36px;
    font-weight: 900;
    color: var(--accent-neon);
    text-shadow: var(--glow-neon);
}

.stat-label {
    font-family: var(--font-code);
    font-size: var(--text-small);
    color: var(--accent-silver);
    text-transform: uppercase;
}

.hero-cta {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

/* Energy Orb Visual */
.energy-orb {
    position: relative;
    width: 400px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.orb-core {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, var(--accent-neon) 0%, var(--primary-blue) 100%);
    border-radius: 50%;
    box-shadow: 
        0 0 40px var(--accent-neon),
        0 0 80px var(--primary-blue),
        inset 0 0 40px rgba(255, 255, 255, 0.2);
    animation: pulse 3s ease-in-out infinite;
}

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

.orb-ring {
    position: absolute;
    border: 2px solid var(--accent-neon);
    border-radius: 50%;
    animation: rotate 10s linear infinite;
}

.orb-ring:nth-child(2) {
    width: 200px;
    height: 200px;
    opacity: 0.6;
}

.orb-ring:nth-child(3) {
    width: 280px;
    height: 280px;
    opacity: 0.4;
    animation-direction: reverse;
    animation-duration: 15s;
}

.orb-ring:nth-child(4) {
    width: 360px;
    height: 360px;
    opacity: 0.2;
    animation-duration: 20s;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.scroll-indicator {
    position: absolute;
    bottom: var(--space-lg);
    left: 50%;
    transform: translateX(-50%);
    color: var(--accent-neon);
    font-size: 32px;
    animation: bounce 2s infinite;
}

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

/* ========== Buttons ========== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: var(--font-code);
    font-size: var(--text-small);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: var(--transition-normal);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--accent-neon);
    color: var(--primary-dark);
    box-shadow: var(--glow-neon);
}

.btn-primary:hover {
    background: transparent;
    color: var(--accent-neon);
    border-color: var(--accent-neon);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 230, 118, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.btn-secondary:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--glow-blue);
}

.btn-tertiary {
    background: transparent;
    color: var(--accent-silver);
    border-color: var(--accent-silver);
}

.btn-tertiary:hover {
    background: var(--accent-silver);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

/* ========== Section Layouts ========== */
.jumbo-section {
    min-height: 100vh;
    padding: var(--space-xxl) var(--space-md);
}

.wide-section {
    max-width: var(--width-wide);
    margin: 0 auto;
    padding: var(--space-xxl) var(--space-md);
}

.medium-section {
    max-width: var(--width-medium);
    margin: 0 auto;
    padding: var(--space-xl) var(--space-md);
}

.compact-section {
    max-width: var(--width-compact);
    margin: 0 auto;
    padding: var(--space-xl) var(--space-md);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.section-title {
    font-size: var(--text-large);
    color: var(--accent-neon);
    text-shadow: var(--glow-neon);
    margin-bottom: var(--space-sm);
    text-transform: uppercase;
}

.section-subtitle {
    font-size: 20px;
    color: var(--accent-silver);
    max-width: 700px;
    margin: 0 auto;
}

/* ========== Timeline Section ========== */
.timeline-section {
    background: linear-gradient(180deg, var(--primary-dark) 0%, #002A4A 100%);
    position: relative;
}

.timeline-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-primary);
    transform: translateX(-50%);
    box-shadow: var(--glow-blue);
}

.timeline-items {
    position: relative;
}

.timeline-item {
    position: relative;
    margin-bottom: var(--space-xl);
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.timeline-item:nth-child(odd) {
    padding-right: 55%;
    text-align: right;
}

.timeline-item:nth-child(even) {
    padding-left: 55%;
    text-align: left;
}

.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.2s; }
.timeline-item:nth-child(3) { animation-delay: 0.3s; }
.timeline-item:nth-child(4) { animation-delay: 0.4s; }
.timeline-item:nth-child(5) { animation-delay: 0.5s; }
.timeline-item:nth-child(6) { animation-delay: 0.6s; }
.timeline-item:nth-child(7) { animation-delay: 0.7s; }
.timeline-item:nth-child(8) { animation-delay: 0.8s; }

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

.timeline-marker {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border: 4px solid var(--primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    box-shadow: var(--glow-blue);
    z-index: 2;
}

.timeline-content {
    background: rgba(0, 31, 63, 0.8);
    border: 2px solid var(--primary-blue);
    border-radius: 8px;
    padding: var(--space-md);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.timeline-content:hover {
    background: rgba(2, 136, 209, 0.2);
    border-color: var(--accent-neon);
    transform: scale(1.02);
}

.timeline-year {
    font-family: var(--font-retro);
    font-size: 28px;
    color: var(--accent-neon);
    display: block;
    margin-bottom: var(--space-xs);
}

.timeline-content h3 {
    color: white;
    margin-bottom: var(--space-sm);
}

.timeline-content p {
    color: var(--accent-silver);
    margin-bottom: 0;
}

/* ========== Energy Grid Layout ========== */
.resources-highlights {
    background: var(--primary-dark);
    padding: var(--space-xxl) var(--space-md);
}

.energy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--space-lg);
    max-width: var(--width-wide);
    margin: 0 auto;
}

.resource-card {
    background: linear-gradient(145deg, rgba(0, 31, 63, 0.9), rgba(2, 136, 209, 0.2));
    border: 2px solid var(--primary-blue);
    border-radius: 12px;
    padding: var(--space-lg);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.resource-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 230, 118, 0.2), transparent);
    transition: var(--transition-slow);
}

.resource-card:hover::before {
    left: 100%;
}

.resource-card:hover {
    border-color: var(--accent-neon);
    box-shadow: 0 8px 32px rgba(0, 230, 118, 0.3);
    transform: translateY(-5px);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    margin-bottom: var(--space-md);
    box-shadow: var(--glow-blue);
}

.resource-card h3 {
    color: var(--accent-neon);
    margin-bottom: var(--space-sm);
}

.resource-stat {
    font-family: var(--font-code);
    font-size: var(--text-small);
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: var(--space-sm);
    display: block;
}

.resource-card p {
    color: var(--accent-silver);
    margin-bottom: var(--space-md);
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    font-family: var(--font-code);
    font-size: var(--text-small);
    color: var(--accent-neon);
    font-weight: 600;
    text-transform: uppercase;
}

.card-link i {
    transition: var(--transition-fast);
}

.card-link:hover i {
    transform: translateX(5px);
}

/* ========== Innovation Spotlight ========== */
.innovation-spotlight {
    background: linear-gradient(180deg, #002A4A 0%, var(--primary-dark) 100%);
}

.innovation-grid {
    display: grid;
    gap: var(--space-xl);
}

.innovation-card {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: var(--space-lg);
    background: rgba(0, 31, 63, 0.6);
    border: 2px solid var(--primary-blue);
    border-radius: 12px;
    padding: var(--space-lg);
    transition: var(--transition-normal);
}

.innovation-card:hover {
    border-color: var(--accent-neon);
    background: rgba(2, 136, 209, 0.15);
    box-shadow: 0 8px 32px rgba(2, 136, 209, 0.3);
}

.innovation-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-icon {
    width: 150px;
    height: 150px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    color: white;
    box-shadow: var(--glow-blue);
    transform: rotate(-5deg);
    transition: var(--transition-normal);
}

.innovation-card:hover .tech-icon {
    transform: rotate(0deg) scale(1.05);
}

.innovation-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.innovation-tag {
    display: inline-block;
    font-family: var(--font-code);
    font-size: var(--text-tiny);
    color: var(--accent-neon);
    background: rgba(0, 230, 118, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: fit-content;
}

.innovation-content h3 {
    color: white;
}

.innovation-content p {
    color: var(--accent-silver);
}

.innovation-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    font-family: var(--font-code);
    font-size: var(--text-small);
    color: var(--accent-neon);
    font-weight: 600;
    margin-top: var(--space-sm);
}

/* ========== CTA Section ========== */
.cta-section {
    background: var(--gradient-primary);
    text-align: center;
    border-radius: 12px;
    margin: var(--space-xxl) var(--space-md);
    box-shadow: var(--shadow-lg);
}

.cta-content h2 {
    color: white;
    margin-bottom: var(--space-md);
}

.cta-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-lg);
}

.cta-buttons {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    flex-wrap: wrap;
}

/* ========== Forms ========== */
.lead-form-section {
    background: linear-gradient(145deg, rgba(0, 31, 63, 0.9), rgba(2, 136, 209, 0.2));
    border: 2px solid var(--primary-blue);
    border-radius: 12px;
    margin: var(--space-xxl) var(--space-md);
}

.form-container h2 {
    text-align: center;
    color: var(--accent-neon);
    margin-bottom: var(--space-sm);
}

.form-container > p {
    text-align: center;
    color: var(--accent-silver);
    margin-bottom: var(--space-lg);
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.form-group label {
    font-family: var(--font-code);
    font-size: var(--text-small);
    color: var(--accent-silver);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
    padding: 14px 18px;
    background: rgba(0, 31, 63, 0.8);
    border: 2px solid var(--primary-blue);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: var(--text-body);
    color: white;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-neon);
    box-shadow: 0 0 10px rgba(0, 230, 118, 0.3);
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
}

.checkbox-label {
    display: flex;
    gap: var(--space-sm);
    align-items: flex-start;
    cursor: pointer;
    color: var(--accent-silver);
}

.checkbox-label input[type="checkbox"] {
    margin-top: 4px;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.checkbox-label a {
    color: var(--accent-neon);
    text-decoration: underline;
}

/* ========== Footer ========== */
.main-footer {
    background: rgba(0, 15, 30, 0.95);
    border-top: 2px solid var(--primary-blue);
    padding: var(--space-xl) var(--space-md) var(--space-md);
    margin-top: var(--space-xxl);
}

.footer-grid {
    max-width: var(--width-wide);
    margin: 0 auto var(--space-xl);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
}

.footer-section h3,
.footer-section h4 {
    color: var(--accent-neon);
    margin-bottom: var(--space-md);
}

.footer-section p {
    color: var(--accent-silver);
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: var(--space-sm);
}

.footer-section a {
    color: var(--accent-silver);
}

.footer-section a:hover {
    color: var(--accent-neon);
}

.footer-social {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: white;
    transition: var(--transition-fast);
}

.footer-social a:hover {
    background: var(--accent-neon);
    transform: translateY(-3px);
    box-shadow: var(--glow-neon);
}

.footer-bottom {
    max-width: var(--width-wide);
    margin: 0 auto;
    padding-top: var(--space-lg);
    border-top: 1px solid var(--primary-blue);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.footer-links {
    display: flex;
    gap: var(--space-md);
}

.footer-links a {
    font-family: var(--font-code);
    font-size: var(--text-small);
    color: var(--accent-silver);
}

.footer-copyright {
    font-size: var(--text-small);
    color: var(--accent-silver);
}

/* ========== Responsive Design ========== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text {
        order: 1;
    }
    
    .hero-visual {
        order: 2;
        justify-self: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .innovation-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .innovation-visual {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    :root {
        --text-xl: 36px;
        --text-large: 28px;
        --text-medium: 22px;
        --text-body: 16px;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 31, 63, 0.98);
        flex-direction: column;
        padding: var(--space-md);
        max-height: 0;
        overflow: hidden;
        transition: var(--transition-normal);
    }
    
    .nav-menu.active {
        max-height: 600px;
        border-bottom: 2px solid var(--primary-blue);
    }
    
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        padding-left: 80px;
        padding-right: 0;
        text-align: left;
    }
    
    .timeline-marker {
        left: 0;
        transform: translate(0, 0);
    }
    
    .timeline-line {
        left: 30px;
    }
    
    .energy-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        flex-direction: column;
        gap: var(--space-md);
    }
    
    .energy-orb {
        width: 300px;
        height: 300px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
}
