/* ===================================
   BEAM Live - Main Stylesheet
   =================================== */

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

/* CSS Variables */
:root {
    /* Default theme colors */
    --beam-blue: #0367FD;
    --beam-green: #D1F604;
    --beam-dark: #1a1a1a;
    --beam-gray: #555555;
    --beam-light: #f9fafb;
    --beam-white: #ffffff;
    --border-light: #e5e7eb;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 20px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 12px 32px rgba(0, 0, 0, 0.15);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Border radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    
    /* Spacing */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 32px;
    --space-xl: 48px;
    --space-2xl: 64px;
    --space-3xl: 100px;
}

/* Alternative theme */
body.alt-theme {
    --beam-blue: #0D9EBB;
    --beam-green: #B71B6F;
}

/* Base styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--beam-dark);
    background: var(--beam-white);
    overflow-x: hidden;
}

/* Skip to main content - for accessibility */
.skip-to-main {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--beam-blue);
    color: white;
    padding: 8px;
    z-index: 100;
    text-decoration: none;
}

.skip-to-main:focus {
    top: 0;
}

/* ===================================
   Theme & Language Switcher
   =================================== */
.controls {
    position: fixed;
    top: 90px;
    left: 20px;
    display: flex;
    gap: 16px;
    z-index: 1001;
    animation: slideInLeft 0.5s ease;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.theme-switcher {
    display: flex;
    gap: 8px;
}

.theme-btn {
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.theme-btn:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-md);
}

.theme-btn.active {
    transform: scale(1.15);
    box-shadow: var(--shadow-lg);
}

.theme-btn.active::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
    font-size: 18px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.theme-btn.default-theme {
    background: linear-gradient(135deg, #0367FD 50%, #D1F604 50%);
}

.theme-btn.alternative-theme {
    background: linear-gradient(135deg, #0D9EBB 50%, #B71B6F 50%);
}

.lang-switcher {
    display: flex;
    gap: 8px;
}

.lang-btn {
    padding: 8px 12px;
    background: white;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-weight: 600;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.lang-btn:hover {
    background: var(--beam-light);
    transform: translateY(-2px);
}

.lang-btn.active {
    background: var(--beam-blue);
    color: white;
    border-color: var(--beam-blue);
}

/* ===================================
   Navigation
   =================================== */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all var(--transition-base);
}

nav.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
}

.logo a {
    color: var(--beam-blue);
    text-decoration: none;
    transition: transform var(--transition-base);
    display: inline-block;
}

.logo a:hover {
    transform: scale(1.05);
}

/* Mobile menu toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1002;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--beam-dark);
    transition: all var(--transition-base);
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    color: var(--beam-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-base);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--beam-blue);
    transition: width var(--transition-base);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--beam-blue);
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--beam-white) 0%, var(--beam-light) 100%);
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 60%;
    height: 200%;
    background: linear-gradient(45deg, var(--beam-blue) 0%, var(--beam-green) 100%);
    opacity: 0.03;
    transform: rotate(-15deg);
    animation: float 20s ease-in-out infinite;
}

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

.hero-content {
    max-width: 1200px;
    padding: 0 40px;
    text-align: center;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease;
}

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

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.1;
    animation: slideInFromLeft 0.8s ease;
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero h1 span {
    color: var(--beam-blue);
    display: inline-block;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 16px;
}

.hero .subtitle {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    color: var(--beam-gray);
    margin-bottom: 48px;
    font-weight: 400;
    animation: fadeIn 1s ease 0.3s both;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.hero-animation {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-animation::before,
.hero-animation::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    opacity: 0.05;
}

.hero-animation::before {
    background: var(--beam-blue);
    top: 10%;
    left: 10%;
    animation: blob 15s ease-in-out infinite;
}

.hero-animation::after {
    background: var(--beam-green);
    bottom: 10%;
    right: 10%;
    animation: blob 15s ease-in-out infinite 7s;
}

@keyframes blob {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -50px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 30px) scale(0.9);
    }
}

/* CTA Buttons */
.cta-group {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.5s both;
}

.btn-primary,
.btn-secondary {
    padding: 16px 40px;
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.btn-primary {
    background: var(--beam-blue);
    color: white;
    border: 2px solid var(--beam-blue);
    box-shadow: var(--shadow-md);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--beam-dark);
    border: 2px solid var(--beam-dark);
}

.btn-secondary:hover {
    background: var(--beam-dark);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* ===================================
   Sections
   =================================== */
section {
    padding: var(--space-3xl) 40px;
    position: relative;
}

section:nth-child(even) {
    background: var(--beam-light);
}

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

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: var(--space-xl);
    text-align: center;
    position: relative;
    padding-bottom: var(--space-md);
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--beam-green);
    border-radius: 2px;
    animation: growWidth 0.8s ease;
}

@keyframes growWidth {
    from { width: 0; }
    to { width: 80px; }
}

.section-intro {
    text-align: center;
    font-size: 1.25rem;
    color: var(--beam-gray);
    max-width: 800px;
    margin: 0 auto var(--space-xl);
    line-height: 1.8;
}

/* Problem Section */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.problem-card {
    background: var(--beam-white);
    padding: var(--space-lg);
    border-left: 4px solid var(--beam-blue);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(3, 103, 253, 0.05), transparent);
    transition: left 0.5s;
}

.problem-card:hover::before {
    left: 100%;
}

.problem-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.problem-card h3 {
    color: var(--beam-dark);
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
}

.problem-card p {
    color: var(--beam-gray);
    line-height: 1.7;
}

/* Solution Section */
.solution-points {
    display: grid;
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.solution-point {
    background: var(--beam-white);
    padding: var(--space-lg);
    border-left: 4px solid var(--beam-green);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    position: relative;
}

.solution-point::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: var(--beam-green);
    transform: scaleY(0);
    transition: transform var(--transition-base);
    transform-origin: top;
}

.solution-point:hover::after {
    transform: scaleY(1);
}

.solution-point:hover {
    padding-left: 40px;
    box-shadow: var(--shadow-md);
}

.solution-point h3 {
    color: var(--beam-blue);
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.solution-point p {
    color: var(--beam-gray);
    line-height: 1.7;
}

/* How it works */
.process-steps {
    display: grid;
    gap: var(--space-xl);
    margin-top: var(--space-xl);
    counter-reset: step-counter;
}

.process-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: var(--space-lg);
    align-items: start;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.process-step:nth-child(1) { animation-delay: 0.1s; }
.process-step:nth-child(2) { animation-delay: 0.2s; }
.process-step:nth-child(3) { animation-delay: 0.3s; }
.process-step:nth-child(4) { animation-delay: 0.4s; }

.step-number {
    width: 80px;
    height: 80px;
    background: var(--beam-blue);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    border-radius: var(--radius-md);
    position: relative;
    box-shadow: var(--shadow-md);
}

.step-number::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--beam-green);
    border-radius: var(--radius-md);
    transform: scale(0);
    opacity: 0.3;
    transition: transform var(--transition-base);
}

.process-step:hover .step-number::before {
    transform: scale(1.2);
}

.step-content h3 {
    color: var(--beam-dark);
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.step-content p {
    color: var(--beam-gray);
    line-height: 1.7;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-xl);
}

.team-member {
    text-align: center;
    padding: var(--space-lg);
    background: var(--beam-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.team-member h3 {
    color: var(--beam-dark);
    font-size: 1.75rem;
    margin-bottom: 8px;
}

.team-member .role {
    color: var(--beam-blue);
    font-size: 1.125rem;
    margin-bottom: var(--space-sm);
    font-weight: 600;
}

.team-member p {
    color: var(--beam-gray);
    line-height: 1.7;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info h3,
.contact-form-wrapper h3 {
    color: var(--beam-dark);
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
}

.contact-info p {
    color: var(--beam-gray);
    margin-bottom: 12px;
    line-height: 1.7;
}

.contact-info a {
    color: var(--beam-blue);
    text-decoration: none;
    font-weight: 500;
    transition: all var(--transition-fast);
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Contact Form */
#contact-form {
    display: grid;
    gap: var(--space-md);
}

.form-group {
    display: grid;
    gap: 8px;
}

.form-group label {
    color: var(--beam-dark);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid var(--border-light);
    border-radius: var(--radius-sm);
    font-size: 16px;
    font-family: inherit;
    transition: all var(--transition-base);
    background: var(--beam-white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--beam-blue);
    box-shadow: 0 0 0 3px rgba(3, 103, 253, 0.1);
}

.form-group input.error,
.form-group textarea.error {
    border-color: #ef4444;
}

.form-group .error-message {
    color: #ef4444;
    font-size: 14px;
    margin-top: 4px;
}

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

.btn-submit {
    padding: 16px 40px;
    background: var(--beam-blue);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn-submit:hover {
    background: #0251d9;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-submit.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    border: 2px solid white;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Company Info */
.company-info {
    margin-top: var(--space-2xl);
    padding: var(--space-lg);
    background: var(--beam-white);
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.company-info h3 {
    color: var(--beam-dark);
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
}

.company-info p {
    color: var(--beam-gray);
    margin-bottom: 8px;
}

/* Footer */
footer {
    background: var(--beam-dark);
    color: white;
    padding: 40px;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-company {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.footer-links {
    margin-top: var(--space-md);
    display: flex;
    gap: var(--space-lg);
    justify-content: center;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color var(--transition-base);
}

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

/* Back to top button */
#back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--beam-blue);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-lg);
    z-index: 999;
}

#back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

#back-to-top:hover {
    background: var(--beam-green);
    color: var(--beam-dark);
    transform: translateY(-5px);
}

/* Cookie consent */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 500px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: var(--space-md);
    z-index: 9999;
    animation: slideUp 0.5s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-content h3 {
    color: var(--beam-dark);
    margin-bottom: 12px;
}

.cookie-content p {
    color: var(--beam-gray);
    margin-bottom: var(--space-md);
}

.cookie-buttons {
    display: flex;
    gap: var(--space-sm);
}

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 20px;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
}

.btn-cookie-accept {
    background: var(--beam-blue);
    color: white;
}

.btn-cookie-accept:hover {
    background: #0251d9;
}

.btn-cookie-reject {
    background: var(--beam-light);
    color: var(--beam-dark);
}

.btn-cookie-reject:hover {
    background: var(--border-light);
}

/* Loading overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--beam-light);
    border-top-color: var(--beam-blue);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

/* Scroll animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 1024px) {
    .nav-container {
        padding: 20px;
    }
    
    section {
        padding: var(--space-2xl) 20px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    /* Controls */
    .controls {
        flex-direction: column;
        gap: 12px;
        top: auto;
        bottom: 20px;
        left: 20px;
    }
    
    /* Mobile Navigation */
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 100px 40px 40px;
        gap: 24px;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        transition: right var(--transition-base);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        font-size: 18px;
    }
    
    /* Hero adjustments */
    .hero {
        padding-top: 100px;
    }
    
    .cta-group {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
    
    /* Grid adjustments */
    .problem-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .process-step {
        grid-template-columns: 60px 1fr;
        gap: var(--space-md);
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    /* Back to top button */
    #back-to-top {
        width: 45px;
        height: 45px;
        bottom: 70px;
        right: 20px;
    }
    
    /* Contact form */
    .contact-content {
        gap: var(--space-xl);
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero h2 {
        font-size: 1.5rem;
    }
    
    .hero .subtitle {
        font-size: 1.125rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .section-intro {
        font-size: 1.125rem;
    }
}

/* Print styles */
@media print {
    .controls,
    .mobile-menu-toggle,
    #back-to-top,
    .cookie-consent {
        display: none !important;
    }
    
    nav {
        position: static;
        box-shadow: none;
    }
    
    .hero {
        min-height: auto;
        padding: 40px 20px;
    }
    
    section {
        page-break-inside: avoid;
    }
}
