/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #1a1a40;
    color: #f3f3f3;
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 90px; /* Отступ для фиксированной шапки */
}

/* Custom Variables */
:root {
    --primary-bg: #1a1a40;
    --accent-gradient: linear-gradient(135deg, #20e3b2 0%, #f94d6a 100%);
    --text-light: #f3f3f3;
    --accent-orange: #ff6f00;
    --dark-bg: #0d0d20;
    --neon-glow: 0 0 20px rgba(32, 227, 178, 0.3);
    --soft-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    animation: textGlow 3s ease-in-out infinite alternate;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-light);
    text-align: center;
    margin-bottom: 2rem;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

p {
    font-size: clamp(1rem, 2vw, 1.125rem);
    margin-bottom: 1.5rem;
    color: rgba(243, 243, 243, 0.9);
}

/* Animations */
@keyframes textGlow {
    0% { text-shadow: 0 0 20px rgba(32, 227, 178, 0.5); }
    100% { text-shadow: 0 0 30px rgba(249, 77, 106, 0.7); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes borderGlow {
    0%, 100% { border-color: #20e3b2; }
    50% { border-color: #f94d6a; }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 64, 0.98);
    backdrop-filter: blur(15px);
    z-index: 1000;
    border-bottom: 2px solid rgba(32, 227, 178, 0.3);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Header Main */
.header-main {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Section */
.logo-section {
    flex: 1;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    transition: var(--transition);
}

.logo:hover {
    transform: translateY(-2px);
}

.logo img {
    width: 50px;
    height: 50px;
    transition: var(--transition);
    filter: drop-shadow(0 0 10px rgba(32, 227, 178, 0.3));
}

.logo:hover img {
    transform: rotate(360deg) scale(1.1);
    filter: drop-shadow(0 0 15px rgba(32, 227, 178, 0.6));
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-light);
    line-height: 1.2;
}

.logo-subtitle {
    font-size: 0.9rem;
    color: rgba(243, 243, 243, 0.7);
    font-weight: 400;
}

/* Navigation */
.nav-menu {
    flex: 2;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(32, 227, 178, 0.2);
}

.nav-icon {
    font-size: 1rem;
}

.nav-text {
    font-size: 0.95rem;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent-gradient);
    transition: var(--transition);
    z-index: -1;
}

.nav-link:hover::before {
    left: 0;
}

.nav-link:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(32, 227, 178, 0.4);
    border-color: transparent;
}

.nav-link.active {
    background: var(--accent-gradient);
    color: white;
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(32, 227, 178, 0.3);
}

.nav-link.contact-cta {
    background: var(--accent-gradient);
    color: white;
    border-color: transparent;
    font-weight: 600;
}

.nav-link.contact-cta:hover {
    background: linear-gradient(135deg, #f94d6a 0%, #20e3b2 100%);
    transform: translateY(-3px) scale(1.05);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 0.25rem;
}

.hamburger {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    transition: var(--transition);
    border-radius: 2px;
}

.mobile-menu-checkbox {
    display: none;
}

.mobile-menu-checkbox:checked + .mobile-menu-toggle .hamburger:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-checkbox:checked + .mobile-menu-toggle .hamburger:nth-child(2) {
    opacity: 0;
}

.mobile-menu-checkbox:checked + .mobile-menu-toggle .hamburger:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Sections */
.section {
    padding: 6rem 0;
    animation: fadeInUp 0.8s ease-out;
}

.section:nth-child(even) {
    background: rgba(13, 13, 32, 0.5);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: url('./img/2H8qCS.jpg') center/cover no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 64, 0.9) 0%, rgba(13, 13, 32, 0.8) 100%);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(32,227,178,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.2;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
}

.hero-subtitle {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    color: rgba(243, 243, 243, 0.8);
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-description {
    font-size: clamp(1rem, 2.5vw, 1.125rem);
    max-width: 600px;
    margin: 0 auto 3rem;
    color: rgba(243, 243, 243, 0.7);
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--accent-gradient);
    color: white;
    animation: fadeInUp 0.8s ease-out 0.9s both;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f94d6a 0%, #20e3b2 100%);
    transition: var(--transition);
    z-index: -1;
}

.btn-primary:hover::before {
    left: 0;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(32, 227, 178, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--accent-orange);
}

.btn-secondary:hover {
    background: var(--accent-orange);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 111, 0, 0.4);
}

/* Cards */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.card {
    background: rgba(13, 13, 32, 0.8);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(32, 227, 178, 0.3);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--accent-gradient);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.card:hover::before {
    opacity: 0.1;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--soft-shadow);
    border-color: rgba(32, 227, 178, 0.6);
    animation: borderGlow 2s ease-in-out infinite;
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--accent-orange);
}

.card-title {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.card-description {
    color: rgba(243, 243, 243, 0.8);
    margin-bottom: 1.5rem;
}

.card-price {
    font-size: 2rem;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

/* Form */
.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(13, 13, 32, 0.8);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(32, 227, 178, 0.3);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-light);
    font-weight: 500;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(32, 227, 178, 0.3);
    border-radius: 10px;
    background: rgba(26, 26, 64, 0.8);
    color: var(--text-light);
    font-size: 1rem;
    transition: var(--transition);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #20e3b2;
    box-shadow: 0 0 0 3px rgba(32, 227, 178, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.checkbox-input {
    width: 18px;
    height: 18px;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.checkbox-label {
    font-size: 0.9rem;
    color: rgba(243, 243, 243, 0.8);
    line-height: 1.4;
}

.checkbox-label a {
    color: #20e3b2;
    text-decoration: none;
    transition: var(--transition);
}

.checkbox-label a:hover {
    color: #f94d6a;
    text-decoration: underline;
}

/* Footer */
.footer {
    background: var(--dark-bg);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(32, 227, 178, 0.3);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.footer-section p,
.footer-section a {
    color: rgba(243, 243, 243, 0.7);
    text-decoration: none;
    transition: var(--transition);
    margin-bottom: 0.5rem;
    display: block;
}

.footer-section a:hover {
    color: #20e3b2;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(32, 227, 178, 0.2);
    color: rgba(243, 243, 243, 0.6);
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(13, 13, 32, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(32, 227, 178, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    z-index: 10000;
    transform: translateY(100px);
    opacity: 0;
    transition: var(--transition);
}

.cookie-popup.show {
    transform: translateY(0);
    opacity: 1;
}

.cookie-popup p {
    margin-bottom: 1rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-accept {
    background: var(--accent-gradient);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.cookie-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(32, 227, 178, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding-top: 70px; /* Меньший отступ для мобильных */
    }
    
    .header-main {
        padding: 0.5rem 0;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .logo img {
        width: 40px;
        height: 40px;
    }
    
    .logo-title {
        font-size: 1.2rem;
    }
    
    .logo-subtitle {
        font-size: 0.8rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(26, 26, 64, 0.98);
        flex-direction: column;
        padding: 2rem;
        border-top: 1px solid rgba(32, 227, 178, 0.3);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        backdrop-filter: blur(15px);
    }
    
    .nav-list {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .nav-link {
        justify-content: center;
        padding: 1rem;
        width: 100%;
    }
    
    .mobile-menu-checkbox:checked ~ .nav-menu {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .section {
        padding: 4rem 0;
    }
    
    .hero {
        min-height: 80vh;
    }
    
    .form-container {
        padding: 2rem;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
    }
    
    .advantages-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .advantages-item {
        padding: 1.5rem;
    }
    
    .advantages-image {
        height: 150px;
    }
    
    .cookie-popup {
        left: 10px;
        right: 10px;
        bottom: 10px;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }
    
    .logo {
        font-size: 1.25rem;
    }
    
    .logo img {
        width: 30px;
        height: 30px;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .form-container {
        padding: 1.5rem;
    }
    
    .card {
        padding: 1.5rem;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-gradient {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

/* Image styles */
.section img {
    transition: var(--transition);
}

.section img:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(32, 227, 178, 0.2);
}

/* Advantages Section */
.advantages-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.advantages-item {
    text-align: center;
    background: rgba(13, 13, 32, 0.6);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(32, 227, 178, 0.3);
    transition: var(--transition);
}

.advantages-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--soft-shadow);
    border-color: rgba(32, 227, 178, 0.6);
}

.advantages-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    box-shadow: var(--soft-shadow);
}

.advantages-title {
    color: var(--text-light);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.advantages-text {
    color: rgba(243, 243, 243, 0.8);
    font-size: 1rem;
    line-height: 1.6;
}

/* Error and Success Messages */
.error-message {
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.3);
    color: #dc3545;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    animation: fadeInUp 0.3s ease-out;
}

.success-message {
    background: rgba(32, 227, 178, 0.1);
    border: 1px solid rgba(32, 227, 178, 0.3);
    color: #20e3b2;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    animation: fadeInUp 0.3s ease-out;
}

/* Thank You Page Styles */
.thank-you-icon {
    font-size: 5rem;
    color: #20e3b2;
    margin-bottom: 2rem;
    animation: pulse 2s ease-in-out infinite;
}

.checkmark {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: block;
    stroke-width: 3;
    stroke: #20e3b2;
    stroke-miterlimit: 10;
    margin: 2rem auto;
    animation: checkmark 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark-circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 3;
    stroke-miterlimit: 10;
    stroke: #20e3b2;
    fill: none;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark-check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
    100% { stroke-dashoffset: 0; }
}

@keyframes checkmark {
    0% { transform: scale(0); }
    100% { transform: scale(1); }
}

/* Policy Pages Styles */
.policy-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.policy-content h2 {
    color: var(--text-light);
    margin-top: 3rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.policy-content h3 {
    color: rgba(243, 243, 243, 0.9);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.policy-content p {
    margin-bottom: 1.5rem;
    color: rgba(243, 243, 243, 0.8);
}

.policy-content ul {
    padding-left: 2rem;
    margin-bottom: 1.5rem;
}

.policy-content li {
    color: rgba(243, 243, 243, 0.8);
    margin-bottom: 0.5rem;
}

.policy-content a {
    color: #20e3b2;
    text-decoration: none;
    transition: var(--transition);
}

.policy-content a:hover {
    color: #f94d6a;
    text-decoration: underline;
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(32, 227, 178, 0.3);
    border-radius: 50%;
    border-top-color: #20e3b2;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}



/* Testimonials specific styles */
.testimonial-card {
    background: rgba(13, 13, 32, 0.8);
    border: 1px solid rgba(32, 227, 178, 0.3);
    border-radius: 15px;
    padding: 2rem;
    position: relative;
    margin-bottom: 2rem;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--soft-shadow);
}

.testimonial-quote {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    color: rgba(243, 243, 243, 0.9);
    position: relative;
}

.testimonial-quote::before {
    content: '"';
    font-size: 3rem;
    color: #20e3b2;
    position: absolute;
    top: -1rem;
    left: -1rem;
}

.testimonial-author {
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.testimonial-company {
    color: rgba(243, 243, 243, 0.7);
    font-size: 0.9rem;
}

/* Services specific styles */
.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: rgba(243, 243, 243, 0.8);
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #20e3b2;
    font-weight: bold;
}

/* Contact info styles */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(13, 13, 32, 0.6);
    border-radius: 10px;
    border: 1px solid rgba(32, 227, 178, 0.2);
    transition: var(--transition);
}

.contact-item:hover {
    border-color: rgba(32, 227, 178, 0.5);
    transform: translateY(-2px);
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--accent-orange);
}

.contact-details h4 {
    color: var(--text-light);
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.contact-details p {
    color: rgba(243, 243, 243, 0.8);
    margin: 0;
    font-size: 0.9rem;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --text-light: #ffffff;
        --primary-bg: #000000;
    }
    
    .card, .form-container, .testimonial-card {
        border-width: 2px;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
} 