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

:root {
    /* Color Palette */
    --tech-blue: #2563EB;
    --safe-green: #10B981;
    --premium-gold: #D4AF37;
    --neutral-gray: #6B7280;
    --accent-purple: #8B5CF6;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #2563EB 0%, #8B5CF6 100%);
    --gradient-secondary: linear-gradient(135deg, #10B981 0%, #2563EB 100%);
    --gradient-dark: linear-gradient(180deg, #0F172A 0%, #1E293B 100%);
    
    /* Shades */
    --blue-50: #EFF6FF;
    --blue-900: #1E3A8A;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-800: #1F2937;
    --gray-900: #111827;
    
    /* Spacing */
    --container-width: 1280px;
    --section-padding: 80px;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'Roboto Mono', monospace;
    
    /* Animations */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-800);
    background-color: #ffffff;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--gradient-dark);
    color: white;
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(0);
    transition: transform 0.4s ease;
}

.cookie-consent.hidden {
    transform: translateY(100%);
}

.cookie-content {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 250px;
}

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

.btn-accept,
.btn-learn {
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
    display: inline-block;
}

.btn-accept {
    background: var(--tech-blue);
    color: white;
    border: none;
}

.btn-accept:hover {
    background: var(--blue-900);
}

.btn-learn {
    background: transparent;
    color: white;
    border: 1px solid white;
}

.btn-learn:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.navbar {
    padding: 16px 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--gray-900);
    font-weight: 700;
    font-size: 20px;
}

.logo-img {
    width: 40px;
    height: 40px;
}

.logo-text {
    font-family: var(--font-mono);
}

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

.nav-link {
    text-decoration: none;
    color: var(--gray-800);
    font-weight: 500;
    transition: var(--transition-smooth);
    position: relative;
}

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

.nav-link:hover,
.nav-link.active {
    color: var(--tech-blue);
}

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

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--gray-800);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    z-index: -1;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(139, 92, 246, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.3) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    animation: backgroundShift 20s ease-in-out infinite;
}

@keyframes backgroundShift {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20px, 20px); }
}

.hero-content {
    color: white;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.scanning-text {
    display: inline-block;
    position: relative;
    animation: scanEffect 3s ease-in-out infinite;
}

@keyframes scanEffect {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; text-shadow: 0 0 20px rgba(255, 255, 255, 0.5); }
}

.hero-subtitle {
    font-size: clamp(18px, 2vw, 24px);
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-smooth);
    display: inline-block;
    font-size: 16px;
    border: 2px solid transparent;
}

.btn-primary {
    background: white;
    color: var(--tech-blue);
}

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

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background: white;
    color: var(--tech-blue);
}

.btn-full {
    width: 100%;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    font-family: var(--font-mono);
    margin-bottom: 8px;
    background: linear-gradient(to right, white, var(--premium-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

/* Section Styles */
.section {
    padding: var(--section-padding) 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.section-description {
    font-size: 18px;
    color: var(--neutral-gray);
    max-width: 700px;
    margin: 0 auto;
}

/* Introduction Section */
.intro-section {
    background: var(--gray-50);
}

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

.intro-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition-smooth);
}

.intro-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.intro-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: white;
}

.intro-icon svg {
    width: 32px;
    height: 32px;
}

.intro-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

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

/* Technologies Section */
.technologies-section {
    background: white;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.tech-card {
    background: white;
    border: 2px solid var(--gray-100);
    border-radius: 16px;
    padding: 32px;
    transition: var(--transition-smooth);
}

.tech-card:hover {
    border-color: var(--tech-blue);
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.15);
}

.tech-visual {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.biometric-icon {
    width: 100px;
    height: 100px;
    color: var(--tech-blue);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.tech-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 16px;
    text-align: center;
}

.tech-specs {
    background: var(--gray-50);
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 16px;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.spec-label {
    font-weight: 600;
    color: var(--neutral-gray);
    font-size: 14px;
}

.spec-value {
    font-family: var(--font-mono);
    font-weight: 600;
    color: var(--tech-blue);
}

.security-level {
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.level-high {
    background: rgba(16, 185, 129, 0.1);
    color: var(--safe-green);
}

.level-very-high {
    background: rgba(212, 175, 55, 0.1);
    color: var(--premium-gold);
}

.tech-description {
    color: var(--neutral-gray);
    margin-bottom: 16px;
    line-height: 1.6;
}

.tech-features {
    list-style: none;
    margin: 0;
    padding: 0;
}

.tech-features li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: var(--neutral-gray);
    font-size: 14px;
}

.tech-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--safe-green);
    font-weight: 700;
}

/* Comparison Section */
.comparison-section {
    background: var(--gradient-dark);
    color: white;
}

.comparison-section .section-title {
    color: white;
}

.comparison-section .section-description {
    color: rgba(255, 255, 255, 0.8);
}

.comparison-table-wrapper {
    overflow-x: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.comparison-table {
    width: 100%;
    background: white;
    border-collapse: collapse;
    color: var(--gray-800);
}

.comparison-table thead {
    background: var(--gradient-primary);
    color: white;
}

.comparison-table th {
    padding: 20px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.comparison-table td {
    padding: 20px;
    border-bottom: 1px solid var(--gray-100);
}

.comparison-table tbody tr:hover {
    background: var(--blue-50);
}

.badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
}

.badge-high {
    background: rgba(16, 185, 129, 0.1);
    color: var(--safe-green);
}

.badge-very-high {
    background: rgba(212, 175, 55, 0.1);
    color: var(--premium-gold);
}

.badge-excellent {
    background: rgba(37, 99, 235, 0.1);
    color: var(--tech-blue);
}

.badge-good {
    background: rgba(139, 92, 246, 0.1);
    color: var(--accent-purple);
}

.badge-medium {
    background: rgba(107, 114, 128, 0.1);
    color: var(--neutral-gray);
}

.badge-low {
    background: rgba(16, 185, 129, 0.1);
    color: var(--safe-green);
}

/* Solutions Section */
.solutions-section {
    background: var(--gray-50);
}

.solutions-grid {
    display: grid;
    gap: 40px;
}

.solution-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    transition: var(--transition-smooth);
}

.solution-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.solution-image {
    position: relative;
    overflow: hidden;
    min-height: 300px;
}

.solution-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.solution-card:hover .solution-image img {
    transform: scale(1.05);
}

.solution-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.solution-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.solution-content p {
    color: var(--neutral-gray);
    margin-bottom: 24px;
    line-height: 1.7;
}

.solution-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.solution-content li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    color: var(--neutral-gray);
}

.solution-content li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--tech-blue);
    font-weight: 700;
}

/* Integration Section */
.integration-section {
    background: white;
}

.integration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.integration-card {
    background: var(--gradient-primary);
    color: white;
    padding: 32px;
    border-radius: 16px;
    transition: var(--transition-smooth);
}

.integration-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.3);
}

.integration-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
}

.integration-card p {
    margin-bottom: 20px;
    opacity: 0.95;
    line-height: 1.7;
}

.integration-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.feature-tag {
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

/* Benefits Section */
.benefits-section {
    background: var(--gray-50);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.benefit-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    border-left: 4px solid var(--tech-blue);
    transition: var(--transition-smooth);
}

.benefit-card:hover {
    border-left-color: var(--accent-purple);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.benefit-number {
    font-size: 48px;
    font-weight: 800;
    font-family: var(--font-mono);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.benefit-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

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

/* Security Features */
.security-features {
    background: white;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.security-item {
    text-align: center;
    padding: 32px;
    background: var(--gray-50);
    border-radius: 16px;
    transition: var(--transition-smooth);
}

.security-item:hover {
    background: white;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.security-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.security-item h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.security-item p {
    color: var(--neutral-gray);
    line-height: 1.6;
}

/* Process Section */
.process-section {
    background: var(--gray-50);
}

.process-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gradient-primary);
}

.timeline-item {
    position: relative;
    padding-left: 80px;
    margin-bottom: 50px;
}

.timeline-marker {
    position: absolute;
    left: 0;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: 700;
    font-family: var(--font-mono);
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
}

.timeline-content {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.timeline-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.timeline-content p {
    color: var(--neutral-gray);
    margin-bottom: 12px;
    line-height: 1.7;
}

.timeline-duration {
    display: inline-block;
    background: var(--blue-50);
    color: var(--tech-blue);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
}

/* Contact Section */
.contact-section {
    background: white;
    padding: var(--section-padding) 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 16px;
}

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

.info-items {
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.info-icon {
    font-size: 24px;
    width: 48px;
    height: 48px;
    background: var(--blue-50);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-content h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--neutral-gray);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-content a,
.info-content p {
    color: var(--gray-900);
    text-decoration: none;
    font-weight: 500;
}

.info-content a:hover {
    color: var(--tech-blue);
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-form {
    background: var(--gray-50);
    padding: 40px;
    border-radius: 16px;
}

.contact-form h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 24px;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--gray-100);
    border-radius: 8px;
    font-family: var(--font-primary);
    font-size: 16px;
    transition: var(--transition-smooth);
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--tech-blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background: var(--gradient-dark);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section li {
    margin-bottom: 12px;
}

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

.footer-section a:hover {
    color: var(--premium-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .solution-card {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: var(--transition-smooth);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn {
        text-align: center;
    }
    
    .comparison-table {
        font-size: 14px;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .intro-grid,
    .tech-grid,
    .benefits-grid,
    .security-grid {
        grid-template-columns: 1fr;
    }
    
    .process-timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        padding-left: 60px;
    }
    
    .timeline-marker {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

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

.section {
    animation: fadeInUp 0.6s ease-out;
}

/* Print Styles */
@media print {
    .header,
    .cookie-consent,
    .hero-buttons,
    .mobile-toggle {
        display: none;
    }
}
