:root {
    --primary: #0f172a;
    --secondary: #1e293b;
    --accent: #38bdf8;
    --background: #f1f5f9;
    --surface: #ffffff;
    --text: #0f172a;
    --muted: #64748b;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Sora', sans-serif;
    color: var(--text);
    background-color: var(--background);
    line-height: 1.6;
}

.uk-navbar-container {
    background: var(--surface) !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.uk-navbar-nav > li > a {
    color: var(--text);
    font-weight: 500;
    text-transform: none;
}

.uk-navbar-nav > li.uk-active > a,
.uk-navbar-nav > li > a:hover {
    color: var(--accent);
}

.uk-button-primary {
    background-color: var(--accent);
    color: var(--surface);
    border: none;
    font-weight: 600;
    text-transform: none;
}

.uk-button-primary:hover {
    background-color: #0ea5e9;
}

.uk-button-default {
    background-color: var(--surface);
    color: var(--text);
    border: 2px solid var(--primary);
    font-weight: 600;
    text-transform: none;
}

.uk-button-default:hover {
    background-color: var(--primary);
    color: var(--surface);
}

.hero-diagonal {
    position: relative;
    min-height: 600px;
    display: flex;
    overflow: hidden;
}

.hero-content {
    position: relative;
    width: 55%;
    background: var(--primary);
    color: var(--surface);
    display: flex;
    align-items: center;
    padding: 80px 40px;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
    z-index: 2;
}

.hero-text {
    max-width: 600px;
}

.hero-text h1 {
    color: var(--surface);
    margin-bottom: 20px;
}

.hero-text p {
    color: rgba(255,255,255,0.9);
}

.hero-image {
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 959px) {
    .hero-diagonal {
        flex-direction: column;
        min-height: auto;
    }
    
    .hero-content {
        width: 100%;
        clip-path: none;
        padding: 60px 20px;
    }
    
    .hero-image {
        position: relative;
        width: 100%;
        height: 400px;
    }
}

.value-card,
.uk-card {
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.step-card {
    padding: 30px 20px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--accent);
    color: var(--surface);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    color: var(--muted);
    font-size: 14px;
}

.footer-with-pattern {
    position: relative;
    overflow: hidden;
}

.footer-with-pattern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255,255,255,.03) 35px, rgba(255,255,255,.03) 70px);
    pointer-events: none;
}

.uk-section-primary {
    background-color: var(--primary) !important;
}

.uk-section-secondary {
    background-color: var(--secondary) !important;
}

.uk-section-muted {
    background-color: var(--background) !important;
}

.uk-text-primary {
    color: var(--accent) !important;
}

.uk-border-rounded {
    border-radius: 8px;
}

.contact-cards-section .uk-card {
    text-align: center;
    padding: 40px 20px;
}

.contact-cards-section .uk-card a {
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
}

.contact-cards-section .uk-card a:hover {
    color: var(--accent);
}

input.error,
textarea.error,
select.error {
    border-color: #f0506e !important;
}

.result-box {
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.result-label {
    font-size: 12px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 8px;
}

.result-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--surface);
}

.eco-stat {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--background);
    border-radius: 8px;
}

.eco-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent);
}

.eco-label {
    font-size: 14px;
    color: var(--muted);
}

#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--surface);
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    padding: 20px;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s;
}

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

#cookie-banner .uk-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

@media (max-width: 768px) {
    #cookie-banner .uk-container {
        flex-direction: column;
        text-align: center;
    }
}

.uk-accordion-title {
    font-weight: 600;
    color: var(--text);
}

.uk-accordion-title::before {
    background-image: url("data:image/svg+xml,%3Csvg width='13' height='13' viewBox='0 0 13 13' xmlns='http://www.w3.org/2000/svg'%3E%3Crect fill='%2338bdf8' width='13' height='1' x='0' y='6'%3E%3C/rect%3E%3Crect fill='%2338bdf8' width='1' height='13' x='6' y='0'%3E%3C/rect%3E%3C/svg%3E");
}

.uk-open .uk-accordion-title::before {
    background-image: url("data:image/svg+xml,%3Csvg width='13' height='13' viewBox='0 0 13 13' xmlns='http://www.w3.org/2000/svg'%3E%3Crect fill='%2338bdf8' width='13' height='1' x='0' y='6'%3E%3C/rect%3E%3C/svg%3E");
}

.uk-link-text a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
}

.uk-link-text a:hover {
    color: var(--surface);
}

@media (max-width: 640px) {
    .hero-text h1 {
        font-size: 32px;
    }
    
    .stat-number {
        font-size: 36px;
    }
}