/* 
   Renten-Maximierer | Ultra-Premium Design System
   Colors: Deep Obsidian Blue, Golden Champagne, Pure Frost White 
*/

:root {
    --primary-color: #122852; /* Deep Navy Blue */
    --primary-light: #1b3d7a;
    --primary-glow: rgba(27, 61, 122, 0.4);
    
    --accent-color: #22C55E; /* Vibrant Green */
    --accent-glow: rgba(34, 197, 94, 0.4);
    
    /* Complex Gradient for Vibrant Green */
    --accent-gradient: linear-gradient(135deg, #4ADE80 0%, #22C55E 50%, #16A34A 100%);
    --accent-gradient-hover: linear-gradient(135deg, #86EFAC 0%, #4ADE80 50%, #15803D 100%);
    
    --bg-color: #F4F6FB;
    --text-color: #2D3748;
    --text-light: #718096;
    --white: #FFFFFF;
    
    /* Layout & Shapes */
    --border-radius-sm: 8px;
    --border-radius: 16px;
    --border-radius-lg: 24px;
    
    /* Advanced Layered Shadows for Depth */
    --shadow-sm: 0 4px 10px rgba(6, 17, 38, 0.05);
    --shadow-md: 0 10px 25px rgba(6, 17, 38, 0.08), 0 4px 12px rgba(6, 17, 38, 0.04);
    --shadow-lg: 0 20px 40px rgba(6, 17, 38, 0.12), 0 8px 16px rgba(6, 17, 38, 0.06);
    --shadow-gold: 0 10px 30px var(--accent-glow);
    
    /* Interactions */
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: 1px solid rgba(255, 255, 255, 0.4);
    --glass-blur: blur(12px);
}

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

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.02em; /* Tighter modern kerning */
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--white);
    margin-bottom: 1.5rem;
}

h2 {
    font-size: clamp(2rem, 3vw, 2.5rem);
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.3rem;
}

p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

b, strong {
    font-weight: 600;
    color: var(--text-color);
}

/* ===== ADVANCED BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--accent-gradient);
    color: var(--white);
    box-shadow: var(--shadow-gold);
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    transition: all 0.7s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    background: var(--accent-gradient-hover);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.5);
}

.btn-primary:hover::after {
    left: 200%;
}

.btn-large {
    font-size: 1.25rem;
    padding: 18px 45px;
    border-radius: var(--border-radius);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary-color);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.05);
}

.btn-secondary:hover {
    background-color: var(--bg-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
}

.btn-outline:hover {
    background-color: var(--accent-color);
    color: var(--white);
    box-shadow: var(--shadow-gold);
}

.hidden {
    display: none !important;
}

/* ===== PREMIUM HEADER ===== */
.main-header {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: var(--glass-border);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: var(--transition);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.03em;
}

.logo-icon {
    font-size: 2rem;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
}

nav {
    display: flex;
    align-items: center;
    gap: 35px;
}

nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    font-size: 1.05rem;
    position: relative;
    transition: var(--transition-fast);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0; width: 0%; height: 2px;
    background: var(--accent-gradient);
    transition: var(--transition);
}

nav a:hover {
    color: var(--accent-color);
}

nav a:hover::after {
    width: 100%;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    padding: 120px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-size: cover;
    background-position: center;
    z-index: -2;
    transform: scale(1.05); /* Subtle zoom effect */
}

/* Multi-layered cinematic gradient */
.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(6, 17, 38, 0.98) 0%, rgba(18, 40, 82, 0.85) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    animation: slideUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.hero-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.35rem;
    margin-bottom: 2rem;
    line-height: 1.7;
    font-weight: 300;
}

.badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.1);
    backdrop-filter: blur(4px);
    color: var(--accent-color);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: inset 0 0 20px rgba(212, 175, 55, 0.05);
}

/* The transparent notice box */
.hero-content > div {
    border: 1px solid rgba(255,255,255,0.1) !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2) !important;
    border-left: 4px solid var(--accent-color) !important;
    color: rgba(255,255,255,0.9) !important;
    font-weight: 300 !important;
}
.hero-content > div b {
    color: var(--accent-color) !important;
}

/* ===== BENEFITS SECTION ===== */
.benefits {
    padding: 120px 0;
    background-color: var(--bg-color);
    position: relative;
}

/* Subtle background accent */
.benefits::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px; width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(212,175,55,0.05) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.section-title {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 70px;
    position: relative;
    z-index: 1;
}

.section-title h2 {
    font-size: 3rem;
}

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

.benefit-card {
    background: var(--white);
    padding: 45px 35px;
    border-radius: var(--border-radius-lg);
    text-align: left;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.03);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

/* Subtle card gradient line at top */
.benefit-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 4px;
    background: var(--accent-gradient);
    opacity: 0;
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(212, 175, 55, 0.15);
}

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

.benefit-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
    display: inline-block;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.08));
    transition: transform 0.4s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
}

.benefit-card h3 {
    margin-bottom: 12px;
    font-size: 1.4rem;
}

.benefit-card p {
    font-size: 1.05rem;
    margin-bottom: 0;
    line-height: 1.6;
}

/* ===== WIZARD OVERLAY (GLASSMORPHISM) ===== */
.wizard-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(6, 17, 38, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.wizard-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.wizard-container {
    background: var(--white);
    width: 100%;
    max-width: 850px;
    border-radius: var(--border-radius-lg);
    padding: 60px;
    position: relative;
    box-shadow: 0 30px 80px rgba(0,0,0,0.4);
    max-height: 90vh;
    overflow-y: auto;
    border: 1px solid rgba(255,255,255,0.7);
    transform: translateY(0);
    animation: modalPop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes modalPop {
    0% { transform: scale(0.95) translateY(20px); opacity: 0; }
    100% { transform: scale(1) translateY(0); opacity: 1; }
}

.wizard-close {
    position: absolute;
    top: 25px; right: 30px;
    width: 40px; height: 40px;
    border-radius: 50%;
    background: #F4F6FB;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border: none;
    color: #A0AEC0;
    cursor: pointer;
    transition: var(--transition-fast);
}

.wizard-close:hover {
    background: #E2E8F0;
    color: var(--primary-color);
    transform: rotate(90deg);
}

.wizard-progress {
    height: 6px;
    background-color: #EDF2F7;
    border-radius: 10px;
    margin-bottom: 45px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: var(--accent-gradient);
    width: 0%;
    transition: width 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    border-radius: 10px;
}

.wizard-content {
    min-height: 280px;
    animation: fadeInSlideUp 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.question-title {
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.question-desc {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 35px;
}

.options-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.option-btn {
    padding: 22px 25px;
    font-size: 1.2rem;
    border: 2px solid #E2E8F0;
    border-radius: var(--border-radius);
    background: var(--white);
    cursor: pointer;
    transition: var(--transition-fast);
    text-align: left;
    font-weight: 500;
    color: var(--text-color);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.option-btn::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0; width: 0;
    background: var(--accent-color);
    transition: var(--transition-fast);
    opacity: 0;
}

.option-btn:hover {
    border-color: #CBD5E0;
    transform: translateX(4px);
    background: #F7FAFC;
}

.option-btn.selected {
    border-color: var(--accent-color);
    background-color: rgba(212, 175, 55, 0.05);
    color: var(--primary-color);
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.1);
}

.option-btn.selected::before {
    width: 6px;
    opacity: 1;
}

.custom-input {
    background: #F7FAFC;
    color: var(--primary-color);
    font-weight: 600;
    outline: none;
    transition: var(--transition-fast);
}

.custom-input:focus {
    background: var(--white);
    border-color: var(--accent-color) !important;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
}

.wizard-actions {
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #EDF2F7;
    padding-top: 25px;
}

/* ===== RESULTS STYLING ===== */
.result-header {
    text-align: center;
    margin-bottom: 45px;
    animation: slideUp 0.6s ease;
}

.result-header h2 {
    color: var(--primary-color);
    font-size: 2.8rem;
    position: relative;
    display: inline-block;
}

.result-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px; left: 50%; transform: translateX(-50%);
    width: 60px; height: 3px;
    background: var(--accent-gradient);
    border-radius: 2px;
}

.result-header p {
    margin-top: 20px;
}

.result-card {
    background: var(--white);
    border: 1px solid #EDF2F7;
    border-left: 6px solid var(--accent-color);
    padding: 30px;
    border-radius: var(--border-radius);
    margin-bottom: 25px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.result-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.result-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.result-actions {
    margin-top: 20px;
}

.btn-link {
    background: var(--primary-color);
    color: white;
    padding: 12px 24px;
    border-radius: var(--border-radius-sm);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    display: inline-block;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.btn-link:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-print {
    margin-top: 35px;
    width: 100%;
    padding: 16px;
    background: #E2E8F0;
    color: #4A5568;
    border: none;
    font-weight: 600;
    border-radius: var(--border-radius-sm);
    transition: var(--transition);
}

.btn-print:hover {
    background: #CBD5E0;
    color: var(--primary-color);
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
}

/* Animations */
@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    .hero { padding: 80px 0; min-height: 70vh; }
    .hero-content p { font-size: 1.1rem; }
    nav { display: none; } 
    .wizard-container { padding: 40px 25px; margin: 10px; height: auto; border-radius: 16px; }
    .question-title { font-size: 1.7rem; }
    .btn-large { padding: 15px 30px; width: 100%; }
    .benefits { padding: 80px 0; }
    .section-title h2 { font-size: 2.2rem; }
}

/* ===== FEEDBACK / KONTAKTFORMULAR ===== */
.feedback-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-color) 0%, #EDF2F7 100%);
    position: relative;
}

.feedback-card {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 50px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
    overflow: hidden;
}

.feedback-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 4px;
    background: var(--accent-gradient);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-size: 1rem;
}

.form-group .optional {
    font-weight: 400;
    color: var(--text-light);
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #E2E8F0;
    border-radius: var(--border-radius-sm);
    font-size: 1.05rem;
    font-family: inherit;
    color: var(--text-color);
    background: #F7FAFC;
    transition: var(--transition-fast);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent-color);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.12);
}

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

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23718096' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 40px;
}

.feedback-hint {
    font-size: 0.85rem !important;
    color: var(--text-light) !important;
    text-align: center;
    margin-top: 15px;
    margin-bottom: 0 !important;
}

.feedback-success {
    text-align: center;
    padding: 40px 20px;
}

.feedback-success .success-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.feedback-success h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.feedback-success p {
    font-size: 1.1rem;
    margin-bottom: 25px;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .feedback-card {
        padding: 30px 20px;
    }
    .feedback-section {
        padding: 60px 0;
    }
}

/* ===== FOOTER ===== */
footer {
    background-color: var(--primary-color);
    color: rgba(255,255,255,0.6);
    padding: 80px 0 50px;
    text-align: center;
    border-top: 5px solid var(--accent-color);
}

.footer-logo {
    font-size: 1.8rem;
    color: var(--white);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 15px;
}

.footer-links {
    margin-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    display: inline-flex;
    gap: 30px;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-fast);
}

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

@media print {
    body * {
        visibility: hidden;
    }
    #wizard-overlay, #wizard-overlay * {
        visibility: visible;
    }
    #wizard-overlay {
        position: absolute;
        left: 0;
        top: 0;
        background: none;
        padding: 0;
        backdrop-filter: none;
    }
    .wizard-container {
        box-shadow: none;
        border: none;
        padding: 0;
        max-width: 100%;
        animation: none;
        transform: none;
    }
    .wizard-actions, .wizard-close {
        display: none !important;
    }
    .result-card {
        border-color: #000;
        break-inside: avoid;
    }
}
/* latin-ext */
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(assets/fonts/QGYvz_MVcBeNP4NJuktqQ4E.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(assets/fonts/QGYvz_MVcBeNP4NJtEtq.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(assets/fonts/QGYvz_MVcBeNP4NJuktqQ4E.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(assets/fonts/QGYvz_MVcBeNP4NJtEtq.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(assets/fonts/QGYvz_MVcBeNP4NJuktqQ4E.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(assets/fonts/QGYvz_MVcBeNP4NJtEtq.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(assets/fonts/QGYvz_MVcBeNP4NJuktqQ4E.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(assets/fonts/QGYvz_MVcBeNP4NJtEtq.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 600px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: var(--glass-border);
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--shadow-lg);
    z-index: 9999;
    animation: slideUpCookie 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.cookie-content h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.cookie-content p {
    font-size: 0.95rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

@keyframes slideUpCookie {
    from { opacity: 0; transform: translate(-50%, 50px); }
    to { opacity: 1; transform: translate(-50%, 0); }
}

@media (max-width: 768px) {
    .cookie-banner {
        bottom: 0;
        width: 100%;
        border-radius: 20px 20px 0 0;
    }
    .cookie-buttons {
        flex-direction: column;
    }
    .cookie-buttons .btn {
        width: 100%;
    }
}
