/* ============================================
   CSS Variables - Brand Colors & Theme
   ============================================ */
:root {
    --color-primary: #890620;
    --color-primary-light: #a30d2a;
    --color-primary-dark: #6b0518;
    --color-dark: #1D1D1D;
    --color-bright: #F9BD14;
    --color-system: #929292;
    
    --color-glass-bg: rgba(255, 255, 255, 0.1);
    --color-glass-border: rgba(255, 255, 255, 0.2);
    --color-glass-shadow: rgba(0, 0, 0, 0.3);
    
    --color-text-primary: #ffffff;
    --color-text-secondary: rgba(255, 255, 255, 0.9);
    --color-text-muted: rgba(255, 255, 255, 0.7);
    
    --font-family: 'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;
    
    --border-radius-sm: 12px;
    --border-radius-md: 20px;
    --border-radius-lg: 32px;
    
    --blur-amount: 20px;
    --transition-base: 0.3s ease;
}

/* ============================================
   Reset & Base Styles
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    video {
        display: none;
    }
}

body {
    font-family: var(--font-family);
    font-weight: 400;
    color: var(--color-text-primary);
    min-height: 100vh;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    background: var(--color-dark);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   Video Background
   ============================================ */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(29, 29, 29, 0.4) 0%,
        rgba(29, 29, 29, 0.6) 50%,
        rgba(29, 29, 29, 0.8) 100%
    );
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

/* ============================================
   Site Header
   ============================================ */
.site-header {
    position: relative;
    z-index: 100;
    padding: var(--spacing-md) var(--spacing-md);
    background: rgba(29, 29, 29, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-md);
    flex-wrap: nowrap;
}

@media (max-width: 767px) {
    .header-content {
        gap: var(--spacing-xs);
    }
}

.logo-section {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    flex-shrink: 0;
    min-width: 0;
}

@media (max-width: 767px) {
    .logo-section {
        gap: 0;
    }
}

.logo-icon {
    width: auto;
    height: 64px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-img {
    height: 100%;
    width: auto;
    object-fit: contain;
    display: block;
    max-width: 280px;
}

@media (max-width: 767px) {
    .logo-icon {
        height: 48px;
    }
    
    .logo-img {
        max-width: 200px;
    }
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-title {
    font-family: var(--font-family);
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    color: var(--color-text-primary);
    letter-spacing: 1px;
    line-height: 1.2;
    white-space: nowrap;
}

.logo-tagline {
    font-family: var(--font-family);
    font-size: clamp(0.75rem, 2vw, 0.875rem);
    font-style: italic;
    color: var(--color-text-muted);
    font-weight: 400;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    flex-shrink: 0;
}

/* ============================================
   Language Switcher (in header)
   ============================================ */
.language-switcher {
    position: relative;
}

.lang-btn {
    background: var(--color-bright);
    color: var(--color-dark);
    border: none;
    border-radius: var(--border-radius-sm);
    padding: var(--spacing-xs) var(--spacing-sm);
    font-family: var(--font-family);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    transition: all var(--transition-base);
    min-width: 80px;
    justify-content: center;
}

.lang-btn i {
    font-size: 0.875rem;
    flex-shrink: 0;
}

.lang-btn .fa-chevron-down {
    font-size: 0.625rem;
}

.lang-btn span {
    font-family: var(--font-family);
    font-weight: 600;
}

.lang-btn:hover,
.lang-btn:focus {
    background: #ffd044;
    transform: translateY(-1px);
    outline: 2px solid var(--color-bright);
    outline-offset: 2px;
}

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

.lang-menu {
    position: absolute;
    top: calc(100% + var(--spacing-xs));
    right: 0;
    background: rgba(24, 24, 24, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-sm);
    padding: var(--spacing-xs);
    min-width: 140px;
    display: none;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
    z-index: 1000;
}

.lang-menu[aria-hidden="false"] {
    display: block;
}

.lang-option {
    display: block;
    width: 100%;
    background: transparent;
    border: none;
    color: var(--color-text-primary);
    padding: var(--spacing-xs) var(--spacing-sm);
    font-family: var(--font-family);
    font-size: 0.875rem;
    font-weight: 400;
    text-align: left;
    cursor: pointer;
    border-radius: calc(var(--border-radius-sm) - 4px);
    transition: background var(--transition-base);
}

.lang-option:hover,
.lang-option:focus {
    background: rgba(255, 255, 255, 0.18);
    outline: none;
}

.header-btn {
    background: var(--color-bright);
    color: var(--color-dark);
    border: none;
    border-radius: var(--border-radius-sm);
    padding: var(--spacing-xs) var(--spacing-md);
    font-family: var(--font-family);
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    transition: all var(--transition-base);
    white-space: nowrap;
    flex-shrink: 0;
}

.header-btn-s {
    width: 48px;
    height: 48px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    min-width: 48px;
}

.header-btn-s i {
    font-size: 1.25rem;
    color: var(--color-dark);
}

.header-btn span {
    font-family: var(--font-family);
    font-weight: 600;
}

.header-btn:hover,
.header-btn:focus {
    background: #ffd044;
    transform: translateY(-1px);
    outline: 2px solid var(--color-bright);
    outline-offset: 2px;
}

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

/* ============================================
   Main Content
   ============================================ */
.main-content {
    position: relative;
    z-index: 1;
    padding: var(--spacing-xl) var(--spacing-md) var(--spacing-xxl);
    max-width: 1200px;
    margin: 0 auto;
    min-height: calc(100vh - 100px);
}

/* ============================================
   Hero Section
   ============================================ */
.hero-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    max-width: 1200px;
}

/* ============================================
   Hero Main Layout - Flex with Stats on Left
   ============================================ */
.hero-main-layout {
    display: flex;
    flex-direction: row;
    gap: var(--spacing-xl);
    align-items: flex-start;
    width: 100%;
}

.hero-text-content {
    flex: 1;
    min-width: 0;
}

.hero-title {
    font-family: var(--font-family);
    font-size: clamp(1.6rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--color-text-primary);
    line-height: 1.1;
    letter-spacing: -0.5px;
    margin-bottom: var(--spacing-md);
    margin-top: 0;
}

.hero-description {
    font-family: var(--font-family);
    font-size: clamp(1rem, 2.5vw, 1.125rem);
    font-weight: 400;
    color: var(--color-text-secondary);
    line-height: 1.6;
    max-width: 700px;
}

/* ============================================
   Statistics Cards (Glassmorphism) - Left Side of Hero
   ============================================ */
.stats-container {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    flex-shrink: 0;
    min-width: 180px;
}

.stat-card {
    background: var(--color-glass-bg);
    backdrop-filter: blur(var(--blur-amount));
    -webkit-backdrop-filter: blur(var(--blur-amount));
    border: 1px solid var(--color-glass-border);
    border-radius: var(--border-radius-sm);
    padding: var(--spacing-md) var(--spacing-lg);
    box-shadow: 0 8px 32px var(--color-glass-shadow);
    text-align: center;
    transition: transform var(--transition-base);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px var(--color-glass-shadow);
}

.stat-number {
    font-family: var(--font-family);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--color-bright);
    line-height: 1;
    margin-bottom: var(--spacing-xs);
    white-space: nowrap;
}

.stat-label {
    font-family: var(--font-family);
    font-size: clamp(0.75rem, 1.5vw, 0.875rem);
    color: var(--color-text-secondary);
    font-weight: 500;
    line-height: 1.2;
    white-space: nowrap;
}

/* ============================================
   Line Separator
   ============================================ */
.line-separator {
    width: 100%;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent 0%,
        rgba(255, 255, 255, 0.3) 20%,
        rgba(255, 255, 255, 0.3) 80%,
        transparent 100%
    );
    margin: var(--spacing-xs) 0 var(--spacing-xs) 0;
}

/* ============================================
   Community Text - Centered and Bigger
   ============================================ */
.community-text {
    font-family: var(--font-family);
    font-size: clamp(1.25rem, 3.5vw, 1.75rem);
    color: var(--color-text-primary);
    font-weight: 600;
    text-align: center;
    width: 100%;
    margin: var(--spacing-xs) 0 var(--spacing-md);
    letter-spacing: 0.3px;
}

/* Reduce spacing between buttons and description text */
.features-section .community-text {
    margin-top: 0;
}

/* ============================================
   CTA Buttons
   ============================================ */
.cta-buttons-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: var(--spacing-sm);
}

.cta-buttons-wrapper.hero-cta {
    justify-content: center;
    margin-top: 0;
    margin-bottom: 0;
}

.cta-buttons-wrapper.hero-cta .cta-buttons {
    justify-content: center;
    gap: var(--spacing-sm);
    align-items: stretch;
}

.cta-buttons {
    display: flex;
    flex-direction: row;
    gap: var(--spacing-md);
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    max-width: 600px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-xl);
    font-family: var(--font-family);
    font-size: clamp(0.9375rem, 2vw, 1rem);
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--border-radius-md);
    transition: all var(--transition-base);
    min-height: 56px;
    min-width: 200px;
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    flex: 1;
    max-width: 280px;
}

.cta-btn.store-badge {
    background: #0a0a0a;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
    padding: 10px 16px;
    min-width: 210px;
    min-height: 52px;
}

.cta-btn.store-badge:hover,
.cta-btn.store-badge:focus {
    background: #000000;
    transform: translateY(-1px);
    outline: 2px solid rgba(255, 255, 255, 0.6);
    outline-offset: 2px;
}

.cta-btn.store-badge:active {
    transform: translateY(0);
}

.store-badge .badge-icon {
    width: 26px;
    height: 26px;
    object-fit: contain;
    filter: grayscale(100%) brightness(1.2);
}

.store-badge .badge-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.1;
    gap: 2px;
}

.store-badge .badge-eyebrow {
    font-size: 0.7rem;
    font-weight: 500;
    opacity: 0.85;
    letter-spacing: 0.2px;
}

.store-badge .badge-store {
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.cta-btn-home {
    min-width: 170px;
    min-height: 52px;
    padding: 10px 16px;
    font-size: 0.9rem;
}

.cta-btn-primary {
    background: var(--color-bright);
    color: var(--color-dark);
    box-shadow: 0 4px 16px rgba(249, 189, 20, 0.4);
}

.cta-btn-primary:hover,
.cta-btn-primary:focus {
    background: #ffd044;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(249, 189, 20, 0.6);
    outline: 2px solid var(--color-bright);
    outline-offset: 2px;
}

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

.cta-btn i {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.cta-btn-text {
    font-family: var(--font-family);
    font-weight: 600;
    white-space: nowrap;
}

/* ============================================
   Features Section
   ============================================ */
.features-section {
    margin-top: var(--spacing-sm);
    padding-top: var(--spacing-xs);
}

.features-card {
    background: var(--color-glass-bg);
    backdrop-filter: blur(var(--blur-amount));
    -webkit-backdrop-filter: blur(var(--blur-amount));
    border: 1px solid var(--color-glass-border);
    border-radius: var(--border-radius-md);
    padding: var(--spacing-lg);
    box-shadow: 0 8px 32px var(--color-glass-shadow);
}


.features-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-sm);
    padding: 0;
    margin: 0;
}

.feature-item {
    font-family: var(--font-family);
    font-size: clamp(0.875rem, 1.8vw, 0.9375rem);
    font-weight: 400;
    color: var(--color-text-secondary);
    padding-left: var(--spacing-md);
    position: relative;
    line-height: 1.4;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.feature-item::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-bright);
    font-weight: 700;
    font-size: 1.1em;
    font-family: var(--font-family);
    top: 2px;
}

.feature-name {
    font-weight: 600;
    color: var(--color-text-primary);
    font-size: 1em;
}

.feature-desc {
    font-weight: 400;
    color: var(--color-text-muted);
    font-size: 0.9em;
    line-height: 1.4;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    position: relative;
    z-index: 1;
    margin-top: auto;
    padding: var(--spacing-lg) var(--spacing-md);
    text-align: center;
    color: var(--color-text-muted);
    background: rgba(29, 29, 29, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-xs);
}

.footer-link {
    font-family: var(--font-family);
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color var(--transition-base);
    padding: 2px 4px;
}

.footer-link:hover,
.footer-link:focus {
    color: var(--color-text-primary);
    outline: 2px solid var(--color-bright);
    outline-offset: 2px;
    border-radius: 4px;
}

.footer-separator {
    color: var(--color-text-muted);
    font-size: 0.75rem;
    margin: 0 2px;
}

.footer-copyright {
    font-family: var(--font-family);
    font-size: 0.6875rem;
    font-weight: 400;
    opacity: 0.6;
    letter-spacing: 0.3px;
}

/* ============================================
   Cookie Banner
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2000;
    padding: var(--spacing-md);
    background: var(--color-glass-bg);
    backdrop-filter: blur(var(--blur-amount));
    -webkit-backdrop-filter: blur(var(--blur-amount));
    border-top: 1px solid var(--color-glass-border);
    box-shadow: 0 -4px 24px var(--color-glass-shadow);
    transform: translateY(100%);
    transition: transform var(--transition-base);
}

.cookie-banner[aria-hidden="false"] {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    align-items: flex-start;
}

.cookie-text {
    font-family: var(--font-family);
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--color-text-secondary);
    line-height: 1.5;
    flex: 1;
}

.cookie-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    align-items: center;
    width: 100%;
}

.cookie-link {
    font-family: var(--font-family);
    font-weight: 400;
    color: var(--color-bright);
    text-decoration: underline;
    font-size: 0.875rem;
    margin-right: auto;
}

.cookie-link:hover,
.cookie-link:focus {
    color: var(--color-text-primary);
    outline: 2px solid var(--color-bright);
    outline-offset: 2px;
    border-radius: 4px;
}

.cookie-btn {
    padding: var(--spacing-sm) var(--spacing-md);
    font-family: var(--font-family);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--border-radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-base);
    min-height: 40px;
    min-width: 100px;
}

.cookie-btn-primary {
    background: var(--color-bright);
    color: var(--color-dark);
}

.cookie-btn-primary:hover,
.cookie-btn-primary:focus {
    background: #ffd044;
    outline: 2px solid var(--color-bright);
    outline-offset: 2px;
}

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

.cookie-btn-secondary:hover,
.cookie-btn-secondary:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    outline: 2px solid var(--color-bright);
    outline-offset: 2px;
}

/* ============================================
   Desktop Styles
   ============================================ */
@media (min-width: 768px) {
    .site-header {
        padding: var(--spacing-md) var(--spacing-xl);
    }
    
    .main-content {
        padding: var(--spacing-xxl) var(--spacing-xl) var(--spacing-xxl);
    }
    
    .hero-main-layout {
        gap: var(--spacing-xxl);
    }
    
    .stats-container {
        min-width: 200px;
        gap: var(--spacing-md);
    }
    
    .stat-card {
        padding: var(--spacing-lg) var(--spacing-xl);
    }
    
    .stat-number {
        font-size: clamp(1.75rem, 2.5vw, 2.25rem);
    }
    
    .stat-label {
        font-size: clamp(0.75rem, 1vw, 0.875rem);
    }
    
    .line-separator {
        margin: var(--spacing-xs) 0;
    }
    
    .community-text {
        font-size: clamp(1.5rem, 3vw, 2rem);
        margin: var(--spacing-xs) 0;
    }
    
    .cta-buttons-wrapper {
        margin-top: var(--spacing-xs);
    }
    
    .features-list {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-sm);
    }
    
    .features-card {
        padding: var(--spacing-lg) var(--spacing-xl);
    }
    
    .cta-buttons {
        flex-wrap: nowrap;
        gap: var(--spacing-lg);
    }
    
    .cta-btn {
        min-width: 220px;
        max-width: 260px;
    }
    
    .cookie-content {
        flex-direction: row;
        align-items: center;
    }
    
    .cookie-text {
        margin-right: var(--spacing-md);
    }
    
    .cookie-actions {
        width: auto;
        flex-shrink: 0;
    }
    
    .hero-content {
        max-width: 1000px;
    }
}

@media (min-width: 1024px) {
    .hero-content {
        max-width: 1100px;
    }
    
    .stats-community-wrapper {
        max-width: 100%;
    }
    
    .community-text {
        font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    }
    
    .cta-buttons {
        max-width: 780px;
    }

    .cta-buttons-wrapper.hero-cta {
        margin-top: var(--spacing-sm);
    }

    .cta-btn {
        width: 260px;
        min-height: 64px;
        padding: 14px 22px;
    }

    .cta-btn.store-badge {
        width: 260px;
        padding: 14px 22px;
    }

    .cta-btn-home {
        width: 260px;
        min-height: 64px;
        padding: 14px 22px;
    }
}

/* Mobile-specific adjustments */
@media (max-width: 767px) {
    .hero-main-layout {
        flex-direction: column;
        gap: var(--spacing-lg);
    }
    
    .hero-title {
        margin-top: var(--spacing-xs);
        margin-bottom: var(--spacing-xs);
    }
    
    /* Slightly smaller hero title on mobile for German only */
    html[lang="de"] .hero-title {
        font-size: clamp(1.4rem, 4.5vw, 2.4rem);
    }
    
    .hero-text-content {
        margin-top: 0;
        margin-bottom: 0;
    }
    
    .stats-container {
        flex-direction: row;
        width: 100%;
        min-width: auto;
        gap: var(--spacing-sm);
    }
    
    .stat-card {
        flex: 1;
        padding: var(--spacing-sm) var(--spacing-md);
    }
    
    .stat-number {
        font-size: clamp(1.25rem, 4vw, 1.75rem);
    }
    
    .stat-label {
        font-size: clamp(0.75rem, 2vw, 0.875rem);
    }
    
    .line-separator {
        margin: var(--spacing-xs) 0;
    }
    
    .community-text {
        font-size: clamp(1.125rem, 4vw, 1.5rem);
    }
    
    .cta-buttons-wrapper {
        margin-top: var(--spacing-xs);
    }
    
    .site-header {
        padding: var(--spacing-sm) var(--spacing-md);
    }
    
    .header-actions {
        gap: var(--spacing-xs);
    }
    
    .lang-btn {
        min-width: 60px;
        padding: var(--spacing-xs);
    }
    
    .features-list {
        grid-template-columns: 1fr;
        gap: var(--spacing-xs);
    }
    
    .features-section {
        margin-top: var(--spacing-lg);
        padding-top: var(--spacing-md);
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 100%;
        min-width: auto;
    }
    
    .logo-title {
        font-size: clamp(1.25rem, 4vw, 1.75rem);
    }
}

/* ============================================
   Accessibility: Focus Styles
   ============================================ */
*:focus-visible {
    outline: 2px solid var(--color-bright);
    outline-offset: 2px;
    border-radius: 4px;
}

/* ============================================
   Print Styles
   ============================================ */
@media print {
    .video-background,
    .language-switcher,
    .cookie-banner {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .hero-section,
    .features-card {
        background: white;
        border: 1px solid #ccc;
        box-shadow: none;
    }
}
