/**
 * Energialaskuri.fi - PUHDAS CSS
 * YKSINKERTAINEN: Kaikki fontit samaa kokoa
 * Päivitetty: 2025-01-25
 */

/* ========================================
   CSS VARIABLES
======================================== */
:root {
    /* Colors */
    --primary: #27AE60;
    --danger: #E74C3C;
    --warning: #F39C12;
    --info: #3498DB;
    --dark: #2C3E50;
    --gray: #7F8C8D;
    --light-gray: #ECF0F1;
    --white: #FFFFFF;
    --bg: #F8F9FA;
    --border: #E0E0E0;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 0.75rem;
    --spacing-lg: 1rem;
    --spacing-xl: 1.5rem;
    --spacing-2xl: 2rem;
    
    /* Typography - YKSI KOKO */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    --font-size: 16px;  /* KAIKKI käyttää tätä */
    
    /* Radius */
    --radius-sm: 4px;
    --radius-md: 6px;
    --radius-lg: 8px;
    
    /* Transition */
    --transition: 200ms ease;
}

/* ========================================
   RESET & BASE
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size);
    line-height: 1.5;
    color: var(--dark);
    background-color: var(--bg);
    -webkit-font-smoothing: antialiased;
}

/* PAKOTA kaikki fontit samaksi */
body * {
    font-size: var(--font-size) !important;
    font-family: var(--font-family) !important;
}

/* Poikkeukset: vain nämä saavat olla eri kokoa */
.price-number {
    font-size: 56px !important;
    font-family: 'Courier New', monospace !important;
    font-weight: 900 !important;
}

.stat-label {
    font-size: 12px !important;
    text-transform: uppercase;
    font-weight: 600;
}

.spot-label {
    font-size: 14px !important;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 2px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: var(--primary);
    font-size: var(--font-size) !important;
}

/* ========================================
   CONTAINER
======================================== */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

/* ========================================
   HEADER
======================================== */
.site-header {
    background: var(--white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    padding: var(--spacing-lg) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo a {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.logo img {
    height: 60px;
    width: auto;
}

.logo-desktop {
    display: block;
}

.logo-mobile {
    display: none; /* Piilotetaan kokonaan */
}

/* Mobiilissa käytetään samaa logoa, mutta pienempänä */
@media (max-width: 768px) {
    .logo img {
        height: 48px; /* Pienempi mobiilissa */
    }
}

/* Vanhat logo-tyylit (ei enää käytössä) */
.logo-icon {
    display: none;
}

.logo-text {
    display: none;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: var(--spacing-xl);
}

.main-nav a {
    color: var(--dark);
    font-weight: 500;
    font-size: 18px !important;
    transition: color var(--transition);
}

.main-nav a:hover,
.main-nav li.active a {
    color: var(--primary);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-sm);
}

.mobile-menu-toggle span {
    width: 24px;
    height: 3px;
    background: var(--dark);
    transition: all var(--transition);
}

/* ========================================
   HERO SECTION
======================================== */
.hero-section {
    background: linear-gradient(90deg, #4F46E5 0%, #3B82F6 100%);
    color: var(--white);
    padding: 3rem 0 2rem;
    margin-bottom: 2rem;
}

.hero-content {
    text-align: center;
}

/* Hero Intro - SEO texts */
.hero-intro {
    margin-bottom: 2rem;
}

.hero-intro h1 {
    font-size: 28px !important;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.hero-description {
    font-size: var(--font-size) !important;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Spot Price Display */
.spot-price-display {
    margin-bottom: 1.5rem;
}

.spot-price {
    display: inline-block;
    padding: 1.5rem 2rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.price-unit {
    opacity: 0.9;
    margin-left: 0.5rem;
}

.price-status {
    margin-top: 1rem;
}

.status-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.status-badge.low {
    background: var(--primary);
}

.status-badge.medium {
    background: var(--warning);
}

.status-badge.high {
    background: var(--danger);
}

/* Today Stats */
.today-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
}

.stat-item {
    padding: 1rem;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-item:last-child {
    border-right: none;
}

.stat-divider {
    display: none;
}

.stat-value {
    display: block;
    font-weight: 700;
    margin-top: 0.25rem;
    color: var(--white);
}

.stat-value.low {
    color: #2ECC71;
}

/* ========================================
   CALCULATOR SECTION
======================================== */
.calculator-section {
    padding: 2rem 0;
}

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

.section-header h1,
.section-header h2 {
    font-size: 26px !important; /* Kasvatettu 24px -> 26px */
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.section-header p {
    color: var(--gray);
}

/* Device Categories */
.device-categories {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.category-tab {
    padding: 0.75rem 1.5rem;
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition);
    font-weight: 600;
}

.category-tab:hover {
    border-color: var(--primary);
    background: rgba(39, 174, 96, 0.05);
}

.category-tab.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* Calculator Grid (2 columns) */
.calculator-grid {
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: 2rem;
    align-items: start;
}

/* Left Column */
.left-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Panel */
.panel {
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.panel-header {
    padding: 1rem;
    border-bottom: 1px solid var(--border);
    font-weight: 700;
    background: var(--bg);
}

/* Device List */
.device-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-height: 400px;
    overflow-y: auto;
}

.device-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    cursor: pointer;
    transition: all var(--transition);
    border-bottom: 1px solid var(--light-gray);
}

.device-card:last-child {
    border-bottom: none;
}

.device-card:hover {
    background: rgba(39, 174, 96, 0.05);
}

.device-card.selected {
    background: rgba(39, 174, 96, 0.1);
    border-left: 4px solid var(--primary);
}

.device-icon {
    font-size: 28px !important;
    flex-shrink: 0;
}

.device-name {
    font-weight: 600;
    flex-grow: 1;
}

.device-info {
    color: var(--gray);
}

/* Controls Panel */
.controls-panel {
    display: none;
}

.controls-content {
    padding: 1rem;
}

.control-row {
    margin-bottom: 1.5rem;
}

.control-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.control-value {
    color: var(--primary);
    font-weight: 700;
}

.slider-wrapper {
    display: flex;
    gap: var(--spacing-sm);
    align-items: center;
}

input[type="range"] {
    flex-grow: 1;
    height: 8px;
    border-radius: 4px;
    background: var(--light-gray);
    outline: none;
    -webkit-appearance: none;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
}

input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    border: none;
}

input[type="number"] {
    width: 80px;
    padding: 0.5rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    text-align: center;
}

/* Calculate Button */
.btn-calculate {
    width: 100%;
    padding: 1rem;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius-md);
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-calculate:hover {
    background: #229954;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
}

/* Right Column - Results */
.right-column {
    position: sticky;
    top: 100px;
}

.cheapest-time-container {
    background: linear-gradient(135deg, rgba(39, 174, 96, 0.1) 0%, rgba(46, 204, 113, 0.05) 100%);
    border: 3px solid var(--primary);
    border-radius: var(--radius-lg);
    padding: 2rem;
}

.cheapest-time-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.cheapest-time-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cheapest-time-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--white);
    border-radius: var(--radius-sm);
}

.cheapest-time-row .label {
    font-weight: 600;
    color: var(--gray);
}

.cheapest-time-row .value {
    font-weight: 700;
    color: var(--dark);
}

.savings-positive {
    color: var(--primary) !important;
}

/* Kallein hetki -boksi */
.expensive-time-info {
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.1) 0%, rgba(192, 57, 43, 0.05) 100%);
    border-radius: var(--radius-lg);
    border: 2px solid var(--danger);
    margin-top: 1rem;
}

.expensive-time-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--danger);
}

.expensive-time-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.expensive-time-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: var(--white);
    border-radius: var(--radius-sm);
}

.expensive-time-row .label {
    font-weight: 600;
    color: var(--gray);
}

.expensive-time-row .value {
    font-weight: 700;
    color: var(--dark);
}

.expensive-warning {
    color: var(--danger) !important;
}

/* Aikavalinnat (Time Preferences) */
   CHART SECTION
======================================== */
.chart-section {
    padding: 2rem 0;
    background: var(--white);
    margin-top: 2rem;
}

.chart-section h2 {
    font-size: 26px !important; /* Kasvatettu 24px -> 26px */
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
}

.chart-toggle {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.toggle-btn {
    padding: 0.75rem 1.5rem;
    background: var(--bg);
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition);
    font-weight: 600;
}

.toggle-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.chart-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* ========================================
   INFO SECTION
======================================== */
.info-section {
    padding: 3rem 0;
}

.info-section h2 {
    font-size: 26px !important;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 2rem;
    text-align: center;
}

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

.info-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.info-icon {
    font-size: 48px !important;
    margin-bottom: 1rem;
}

.info-card h3 {
    font-size: 20px !important;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

/* ========================================
   FOOTER
======================================== */
.site-footer {
    background: var(--dark);
    color: var(--white);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

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

.footer-section h3,
.footer-section h4 {
    font-size: 18px !important;
    font-weight: 700;
    margin-bottom: 1rem;
}

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

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

/* ========================================
   MOBILE RESPONSIVE
======================================== */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        padding: 1rem 0;
    }
    
    .main-nav.active {
        display: block;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 0;
    }
    
    .main-nav li {
        border-bottom: 1px solid var(--light-gray);
    }
    
    .main-nav a {
        display: block;
        padding: 1rem;
        text-align: center;
    }
    
    .calculator-grid {
        grid-template-columns: 1fr;
    }
    
    .right-column {
        position: static;
    }
    
    .hero-intro h1 {
        font-size: 20px !important;
    }
    
    .today-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ========================================
   TIME PREFERENCES
======================================== */
.time-preference-section {
    margin: 1.5rem 0;
    padding: 1rem;
    background: var(--bg);
    border-radius: var(--radius-md);
}

.time-preference-label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 700;
    color: var(--dark);
    font-size: 15px !important;
}

.time-preference-label .icon {
    font-size: 18px !important;
    margin-right: 0.5rem;
}

.time-slots-grid {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.time-slot-option {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
    transition: all var(--transition);
}

.time-slot-option:hover {
    border-color: var(--primary);
    background: rgba(39, 174, 96, 0.05);
}

.time-slot-option:has(input:checked) {
    border-color: var(--primary);
    background: rgba(39, 174, 96, 0.1);
}

.time-slot-checkbox {
    margin-right: 0.75rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
    flex-shrink: 0;
}

.time-slot-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-grow: 1;
    cursor: pointer;
}

.time-icon {
    font-size: 20px !important;
}

.time-text {
    font-weight: 600;
}

.time-range {
    color: var(--gray);
}

.time-preference-hint {
    padding: 0.75rem;
    background: rgba(52, 152, 219, 0.1);
    border-left: 4px solid var(--info);
    border-radius: var(--radius-sm);
    color: var(--dark);
    font-size: 14px !important;
}

/* ========================================
   FIX: JavaScript inline styles override
======================================== */
/* JS info-tekstit normaalikokoisiksi */
.time-slot-option [style*="display: block"],
.time-slot-option [style*="color"],
.time-slot-option span[style] {
    font-size: 14px !important;
    font-weight: 500 !important;
    line-height: 1.3 !important;
    margin-left: 1.5rem !important;
}

/* ========================================
   TOMORROW PRICES SECTION
======================================== */
.tomorrow-prices-section {
    padding: 2rem;
    text-align: center;
}

.tomorrow-prices-section h2 {
    font-size: 24px !important;
    font-weight: 700;
    margin-bottom: 1rem;
}

.tomorrow-prices-section p {
    font-size: 16px !important;
    color: var(--gray);
    margin-bottom: 1rem;
}

.tomorrow-status {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: rgba(52, 152, 219, 0.1);
    border-radius: 8px;
    border: 2px solid var(--info);
    font-weight: 600;
}
/* ========================================
   CHART SECTION - TÄYDELLINEN KORJAUS
======================================== */

/* Legenda (Halpa, Keskihinta, Kallis) */
.chart-legend {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 16px !important;
    font-weight: 500;
}

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

.legend-dot.cheap {
    background: #27AE60;
}

.legend-dot.medium {
    background: #F39C12;
}

.legend-dot.expensive {
    background: #E74C3C;
}

/* Vihje-laatikko */
.chart-hint {
    max-width: 800px;
    margin: 1.5rem auto;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.08) 0%, rgba(46, 204, 113, 0.08) 100%);
    border-left: 4px solid var(--info);
    border-radius: 8px;
    font-size: 16px !important;
    line-height: 1.6;
    color: var(--dark);
    text-align: center;
}

.chart-hint strong {
    font-weight: 700;
    color: var(--dark);
}

/* Huomisen hinnat -osio */
.tomorrow-section {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--bg);
    border-radius: 12px;
}

.tomorrow-section h2 {
    font-size: 26px !important; /* Kasvatettu 24px -> 26px */
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.tomorrow-section .status-text {
    font-size: 16px !important;
    color: var(--gray);
    line-height: 1.5;
}

.tomorrow-section .publish-time {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(52, 152, 219, 0.1);
    border: 2px solid var(--info);
    border-radius: 8px;
    font-size: 16px !important;
    font-weight: 600;
    color: var(--info);
}

/* Chart info - OIKEA luokka! */
.chart-info {
    max-width: 800px;
    margin: 1.5rem auto;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.08) 0%, rgba(46, 204, 113, 0.08) 100%);
    border-left: 4px solid var(--info);
    border-radius: 8px;
    text-align: center;
}

.chart-info p {
    font-size: 16px !important;
    line-height: 1.6;
    color: var(--dark);
    margin: 0;
}

.chart-info strong {
    font-weight: 700;
}
/* Piilotetaan slider-inputit */
#custom-power,
#custom-duration {
    display: none !important;
}

/* ========================================
   CONTENT PAGES (Tietoa, Yhteystiedot, Tietosuoja)
======================================== */
.content-section {
    padding: 3rem 0;
    background: var(--bg);
}

.content-section .container {
    max-width: 900px;
}

.content-section h1 {
    font-size: 32px !important;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 2rem;
    text-align: center;
}

.content-section h2 {
    font-size: 24px !important;
    font-weight: 700;
    color: var(--dark);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-section h3 {
    font-size: 20px !important;
    font-weight: 600;
    color: var(--dark);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.content-box {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    margin-bottom: 2rem;
}

.content-box p {
    line-height: 1.7;
    margin-bottom: 1rem;
}

.content-box ul,
.content-box ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.content-box li {
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.content-box a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: underline;
}

.content-box a:hover {
    color: #229954;
}

/* Privacy Section */
.privacy-section {
    margin-bottom: 2rem;
}

/* Success/Info Boxes */
.success-box {
    padding: 1.5rem;
    background: rgba(39, 174, 96, 0.1);
    border-left: 4px solid var(--primary);
    border-radius: var(--radius-md);
    margin: 1.5rem 0;
}

.info-highlight {
    padding: 1.5rem;
    background: rgba(52, 152, 219, 0.1);
    border-left: 4px solid var(--info);
    border-radius: var(--radius-md);
    margin: 1.5rem 0;
}

/* Contact Cards */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.contact-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--border);
    text-align: center;
    transition: all var(--transition);
}

.contact-card:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.15);
    transform: translateY(-2px);
}

.contact-card h3 {
    font-size: 20px !important;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.contact-card p {
    line-height: 1.6;
}

.contact-card a {
    color: var(--primary);
    font-weight: 600;
    font-size: 18px !important;
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, var(--primary) 0%, #229954 100%);
    padding: 3rem 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    color: var(--white);
    margin-top: 3rem;
}

.cta-box h3 {
    font-size: 26px !important;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-box p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--white);
    color: var(--primary);
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 18px !important;
    transition: all var(--transition);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .content-section h1 {
        font-size: 24px !important;
    }
    
    .content-section h2 {
        font-size: 20px !important;
    }
    
    .content-box {
        padding: 1.5rem;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   ENERGY INFO SECTION (Spot-hinta selitys)
======================================== */
.energy-info-section {
    padding: 3rem 0;
    background: var(--bg);
}

.energy-info-section .container {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    padding: 2.5rem 3rem;
    text-align: center;
}

.energy-info-section h2 {
    font-size: 26px !important;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.energy-info-section p {
    color: var(--gray);
    font-size: 16px !important;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto;
}

.energy-info-section p + p {
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .energy-info-section {
        padding: 2rem 1rem;
    }

    .energy-info-section .container {
        padding: 1.5rem;
    }

    .energy-info-section h2 {
        font-size: 20px !important;
    }
}
