:root {
    /* Colors */
    --bg-dark: #05070a;
    --bg-card: rgba(15, 20, 30, 0.7);
    --primary: #00d2ff;
    --primary-glow: rgba(0, 210, 255, 0.4);
    --secondary: #00ffaa;
    --secondary-glow: rgba(0, 255, 170, 0.4);
    --text-main: #ffffff;
    --text-muted: #a0a0b0;
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-bg: rgba(255, 255, 255, 0.03);
    
    /* Transitions */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

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

:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 4px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 100px 0;
}

.bg-glow, .bg-glow-2 {
    position: fixed;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
}

.bg-glow {
    background: radial-gradient(circle at 100% 0%, rgba(0, 210, 255, 0.08) 0%, transparent 50%);
}

.bg-glow-2 {
    background: radial-gradient(circle at 0% 100%, rgba(0, 255, 170, 0.08) 0%, transparent 50%);
}

/* --- Typography --- */
h1, h2, h3, h4 {
    font-weight: 800;
    line-height: 1.2;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; margin-bottom: 1rem; }
h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }

span {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sub-title {
    display: block;
    color: var(--secondary);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.lead {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* --- Components --- */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.25s ease;
    will-change: transform;
}

.btn-lg { padding: 18px 36px; font-size: 1.1rem; }
.btn-sm { padding: 10px 20px; font-size: 0.9rem; }

.btn-primary {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    color: var(--bg-dark);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: var(--glass-bg);
    color: var(--text-main);
    border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
    background: var(--glass-border);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.btn-secondary:active {
    transform: translateY(0);
}

.btn-full { width: 100%; justify-content: center; }

/* Icon inside button animation */
.btn i, .btn svg {
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn:hover i, .btn:hover svg {
    transform: translateX(4px) rotate(45deg);
}

.link-btn {
    background: none;
    border: none;
    color: var(--primary);
    text-decoration: none;
    cursor: pointer;
    font: inherit;
    padding: 0;
    position: relative;
}

.link-btn::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.link-btn:hover::after {
    width: 100%;
}

/* --- Navbar --- */
.navbar {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: padding 0.3s var(--ease), background 0.3s var(--ease);
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(5, 7, 10, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
}

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

.nav-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s var(--ease);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary);
}

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* --- Hero --- */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 6px 15px;
    background: rgba(0, 210, 255, 0.1);
    border: 1px solid rgba(0, 210, 255, 0.2);
    border-radius: 50px;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

.image-wrapper {
    position: relative;
    padding: 20px;
    transition: transform 0.4s ease;
    will-change: transform;
}

.image-wrapper:hover {
    transform: scale(1.02);
}

.photo-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--glass-border);
}

/* Hero window dots */
.window-dots {
    position: absolute;
    top: 15px;
    left: 20px;
    display: flex;
    gap: 8px;
    z-index: 10;
}

.window-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.window-dots .dot.red { background: #ff5f56; }
.window-dots .dot.orange { background: #ffbd2e; }
.window-dots .dot.green { background: #27c93f; }

.floating-card {
    position: absolute;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 0.9rem;
    animation: float 4s infinite ease-in-out;
}

.card-1 { top: -20px; right: -20px; animation-delay: 0s; }
.card-2 { bottom: 40px; left: -30px; animation-delay: 2s; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* --- Services --- */
.section-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.service-card {
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 10px 30px -10px rgba(0,0,0,0.5);
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
    will-change: transform;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: transform 0.3s var(--ease);
}

.service-card:hover .card-icon {
    transform: scale(1.1);
}

.card-icon.blue { background: rgba(0, 210, 255, 0.1); color: var(--primary); }
.card-icon.green { background: rgba(0, 255, 170, 0.1); color: var(--secondary); }

.service-card h3 { color: white; margin-bottom: 15px; }
.service-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; }

/* --- Portfolio --- */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.portfolio-card {
    text-decoration: none;
    color: white;
    overflow: hidden;
    border-radius: 24px;
    display: block;
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
    will-change: transform;
}

.portfolio-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.port-image-container {
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    position: relative;
    background: rgba(255, 255, 255, 0.05);
}

.port-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
    will-change: transform;
}

.img-overlay {
    position: absolute;
    inset: 0;
    background: transparent !important; /* Odstraněno tmavé pozadí */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    opacity: 0;
    transition: opacity 0.3s var(--ease);
    z-index: 2;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.img-overlay span {
    font-weight: 700;
    font-size: 1.1rem;
    color: #ffffff !important; /* Čistá bílá */
    text-shadow: 0 2px 4px rgba(0,0,0,0.8); /* Silnější stín pro čitelnost bez pozadí */
    filter: none !important;
    opacity: 1 !important;
}

.img-overlay i {
    color: #ffffff !important; /* Čistá bílá */
    filter: none !important;
    opacity: 1 !important;
}

.portfolio-card:hover .img-overlay { 
    opacity: 1; 
}
.portfolio-card:hover .port-image { transform: scale(1.05); }

.port-info {
    padding: 30px;
    position: relative;
    z-index: 3;
}

.port-info h4 { 
    font-size: 1.3rem; 
    margin-bottom: 10px; 
    color: #ffffff !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    filter: none !important;
}
.port-info p { 
    color: #ffffff !important; 
    font-size: 0.95rem;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    filter: none !important;
    opacity: 1 !important;
}

/* --- FAQ --- */
.faq-container {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    color: white;
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
    background: none;
    border: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s var(--ease);
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.04);
}

.faq-icon {
    transition: transform 0.3s ease;
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 30px;
    opacity: 0;
    transition: all 0.3s ease;
}

.faq-answer p {
    color: var(--text-muted);
    font-size: 1rem;
    padding-bottom: 25px;
    line-height: 1.7;
}

.faq-item.active {
    border-color: var(--primary);
    background: rgba(0, 210, 255, 0.03);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    opacity: 1;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

/* --- Contact Section --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.contact-card {
    padding: 50px;
    border-radius: 32px;
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.5);
    background: #0a0c10;
    border: 1px solid var(--glass-border);
}

.card-header {
    margin-bottom: 35px;
}

.card-header h2 { font-size: 2.2rem; margin-bottom: 10px; }
.card-header p { color: var(--text-muted); font-size: 1.1rem; }

#contactForm {
    display: flex;
    flex-direction: column;
    width: 100%;
}

@media (min-width: 769px) {
    #contactForm {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        grid-auto-flow: dense;
    }
    
    /* Grid layout mapping */
    #contactForm .h-pot { grid-column: span 2; display: none; }
    #contactForm .form-group:nth-child(2) { grid-column: 1; } /* Name */
    #contactForm .form-group:nth-child(3) { grid-column: 2; } /* Email */
    #contactForm .form-group:nth-child(4) { grid-column: 1; } /* Phone */
    #contactForm .form-group:nth-child(5) { grid-column: 2; } /* Business */
    #contactForm .form-group:nth-child(6), /* Budget */
    #contactForm .form-group:nth-child(7), /* Message */
    #contactForm .btn,
    #contactForm .form-microcopy,
    #contactForm #formStatus {
        grid-column: span 2;
    }
}

.form-group {
    margin-bottom: 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.form-group input, 
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    color: white;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s var(--ease);
    box-sizing: border-box;
}

.form-group input,
.form-group select {
    height: 56px; /* Consistent height for all single-line inputs */
}

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

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 18px;
    padding-right: 50px;
}

.form-group input:focus, 
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 210, 255, 0.2);
}

.form-microcopy {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.form-microcopy span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
}

.form-microcopy i {
    width: 16px;
    height: 16px;
    color: var(--secondary);
}

.contact-info-content h2 { font-size: 3rem; margin-bottom: 20px; }
.contact-lead { font-size: 1.25rem; color: var(--text-muted); margin-bottom: 40px; }

.info-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-link {
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    color: white;
    transition: transform 0.3s var(--ease);
}

.info-link:not(div):hover {
    transform: translateX(10px);
}

.info-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    transition: all 0.3s var(--ease);
}

.info-link:hover .info-icon {
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(0, 210, 255, 0.2);
    transform: scale(1.1);
}

.info-text span {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.info-text strong {
    font-size: 1.2rem;
    font-weight: 700;
}

/* --- Reviews --- */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    padding: 40px;
    border-radius: 24px;
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
    will-change: transform;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.stars {
    color: #ffcc00;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.review-card p {
    color: var(--text-muted);
    font-style: italic;
    font-size: 1rem;
    line-height: 1.7;
}

.review-author {
    margin-top: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-info strong { display: block; color: white; }
.author-info span { font-size: 0.85rem; color: var(--text-muted); }

/* --- Modals --- */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease);
}

.modal-overlay:not(.hidden) {
    opacity: 1;
    visibility: visible;
}

.modal {
    width: 90%;
    max-width: 600px;
    padding: 40px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    background: #0a0c10;
    border: 1px solid var(--glass-border);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transform: translateY(20px);
    transition: transform 0.3s var(--ease);
    border-radius: 24px;
}

.modal-overlay:not(.hidden) .modal {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 5px;
    transition: transform 0.3s var(--ease);
}

.modal-close:hover {
    transform: rotate(90deg);
}

.modal-body h2 {
    margin-bottom: 20px;
    color: var(--primary);
}

.modal-body h3 {
    margin: 20px 0 10px;
    color: var(--secondary);
}

.modal-body p, .modal-body li {
    color: var(--text-muted);
    margin-bottom: 12px;
}

.modal-body ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.cookie-cat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: rgba(255,255,255,0.03);
    border-radius: 10px;
    margin-bottom: 10px;
}

.cookie-info strong { display: block; color: white; }
.cookie-info span { font-size: 0.8rem; color: var(--text-muted); }

.switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
}

.switch input { opacity: 0; width: 0; height: 0; }

.slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: background 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
    border-radius: 24px;
}

input:checked + .slider {
    background-color: rgba(0, 255, 170, 0.1);
    border: 1px solid var(--secondary);
    box-shadow: 0 0 10px var(--secondary-glow);
}

.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: transform 0.3s var(--ease);
    border-radius: 50%;
}

input:checked + .slider:before {
    transform: translateX(20px);
}

/* --- Footer --- */
.footer {
    background: rgba(0,0,0,0.3);
    padding: 80px 0 30px;
    border-top: 1px solid var(--glass-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand .motto { color: var(--text-muted); margin: 15px 0 10px; }

.footer-col h4, .footer-nav h4, .footer-legal h4, .footer-contact h4 {
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.footer-nav a, .footer-legal button {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.3s var(--ease);
    background: none;
    border: none;
    padding: 0;
    font: inherit;
    cursor: pointer;
    text-align: left;
}

.footer-nav a:hover, .footer-legal button:hover { color: var(--primary); }

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: opacity 0.3s var(--ease);
}

.footer-link span {
    color: var(--text-muted) !important;
    font-size: 0.95rem;
}

.footer-link:hover span {
    color: white !important;
    text-decoration: underline;
}

.footer-link i, .footer-link svg {
    flex-shrink: 0;
}

.footer-link .blue, .footer-link svg.blue { color: var(--primary) !important; }
.footer-link .green, .footer-link svg.green { color: var(--secondary) !important; }

.footer-contact .social-icons { display: flex; gap: 15px; margin-top: 25px; }
.footer-contact .social-icons a { color: var(--text-muted); transition: color 0.3s var(--ease), transform 0.3s var(--ease); }
.footer-contact .social-icons a:hover { color: var(--primary); transform: translateY(-3px); }

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* --- Cookie Banner --- */
.cookie-banner {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 800px;
    padding: 20px 30px;
    z-index: 2000;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

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

.cookie-content p { color: white; font-size: 0.95rem; }
.cookie-actions { display: flex; gap: 15px; }

/* --- Reveal Animation --- */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    will-change: transform, opacity;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.hidden { display: none; }

/* --- Responsive --- */
@media (max-width: 1024px) {
    h1 { font-size: 2.8rem; }
    .hero-grid, .contact-grid { grid-template-columns: 1fr; }
    .hero-image { display: none; }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--bg-dark);
        flex-direction: column;
        justify-content: center;
        transition: right 0.5s var(--ease);
        z-index: 999;
    }

    .nav-menu.active { right: 0; }
    .hamburger { display: flex; }
    
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .section-padding { padding: 60px 0; }
    
    .cookie-content { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; }
    h1 { font-size: 2.2rem; }
}
