/* ============================================
   ФУТУРИСТИЧЕСКИЙ ДИЗАЙН - CSS ПЕРЕМЕННЫЕ
   ============================================ */

:root {
    /* Яркая цветовая палитра */
    --primary-color: #FF006E;
    --primary-dark: #CC0058;
    --primary-light: #FF3385;
    --secondary-color: #8338EC;
    --secondary-dark: #6929BD;
    --secondary-light: #9D5FEF;
    --accent-color: #00F5FF;
    --accent-dark: #00C2CC;
    --accent-light: #5AFFFF;
    --success-color: #06FFA5;
    --warning-color: #FFD60A;
    --danger-color: #FF006E;
    
    /* Нейтральные цвета */
    --bg-primary: #0A0E27;
    --bg-secondary: #1A1F3A;
    --bg-tertiary: #2A2F4A;
    --text-primary: #FFFFFF;
    --text-secondary: #E0E0E0;
    --text-muted: #A0A0A0;
    
    /* Градиенты */
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
    --gradient-accent: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    --gradient-dark: linear-gradient(180deg, rgba(10, 14, 39, 0.95) 0%, rgba(26, 31, 58, 0.95) 100%);
    
    /* Типографика */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Merriweather', serif;
    
    /* Размеры шрифтов - адаптивная типографика */
    --font-size-h1: clamp(2.5rem, 5vw, 4rem);
    --font-size-h2: clamp(2rem, 4vw, 3rem);
    --font-size-h3: clamp(1.5rem, 3vw, 2rem);
    --font-size-h4: clamp(1.25rem, 2.5vw, 1.5rem);
    --font-size-body: clamp(1rem, 1.5vw, 1.125rem);
    --font-size-small: clamp(0.875rem, 1.2vw, 1rem);
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 5rem;
    
    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(255, 0, 110, 0.2);
    --shadow-md: 0 4px 20px rgba(131, 56, 236, 0.3);
    --shadow-lg: 0 8px 40px rgba(0, 245, 255, 0.4);
    --shadow-glow: 0 0 30px rgba(255, 0, 110, 0.5);
    
    /* Border radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ============================================
   GLOBAL STYLES
   ============================================ */

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-size: var(--font-size-body);
    line-height: 1.8;
    color: var(--text-secondary);
    background: var(--bg-primary);
    overflow-x: hidden;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6,
.title {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.02em;
}

h1, .title.is-1 {
    font-size: var(--font-size-h1);
    font-weight: 900;
}

h2, .title.is-2 {
    font-size: var(--font-size-h2);
}

h3, .title.is-3 {
    font-size: var(--font-size-h3);
}

h4, .title.is-4 {
    font-size: var(--font-size-h4);
}

.subtitle {
    font-family: var(--font-body);
    color: var(--text-muted);
    margin-bottom: var(--spacing-sm);
}

p {
    margin-bottom: var(--spacing-sm);
    line-height: 1.8;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: all var(--transition-fast);
}

a:hover {
    color: var(--accent-light);
    text-decoration: none;
}

/* ============================================
   BUTTONS - ГЛОБАЛЬНЫЕ СТИЛИ
   ============================================ */

.btn,
.button,
button,
input[type='submit'] {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: var(--font-size-body);
    padding: 1rem 2.5rem;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-normal);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    overflow: hidden;
    display: inline-block;
    text-align: center;
}

.btn::before,
.button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width var(--transition-slow), height var(--transition-slow);
}

.btn:hover::before,
.button:hover::before {
    width: 300px;
    height: 300px;
}

.button.is-primary,
.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-primary);
    box-shadow: var(--shadow-sm);
}

.button.is-primary:hover,
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.button.is-light {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border: 2px solid var(--accent-color);
    backdrop-filter: blur(10px);
}

.button.is-light:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--accent-light);
    transform: translateY(-3px);
}

.button.is-large {
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

.header {
    position: relative;
    z-index: 1000;
}

.navbar {
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 0, 110, 0.3);
    padding: 1rem 0;
    transition: all var(--transition-normal);
}

.navbar.is-fixed-top {
    box-shadow: var(--shadow-md);
}

.navbar-brand .logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-item {
    color: var(--text-secondary);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.5rem 1rem;
    transition: all var(--transition-fast);
    position: relative;
}

.navbar-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transform: translateX(-50%);
    transition: width var(--transition-normal);
}

.navbar-item:hover {
    color: var(--text-primary);
}

.navbar-item:hover::after {
    width: 80%;
}

.navbar-burger {
    color: var(--text-primary);
}

.navbar-burger:hover {
    background: rgba(255, 0, 110, 0.1);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero-section {
    position: relative;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.3) 0%, rgba(131, 56, 236, 0.3) 100%);
    z-index: 1;
}

.hero-body {
    position: relative;
    z-index: 2;
    padding: var(--spacing-xl) var(--spacing-md);
}

.hero-title {
    color: var(--text-primary) !important;
    font-size: var(--font-size-h1);
    font-weight: 900;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    margin-bottom: var(--spacing-md);
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    color: var(--text-primary) !important;
    font-size: var(--font-size-h3);
    font-family: var(--font-heading);
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    margin-bottom: var(--spacing-md);
    animation: fadeInUp 1.2s ease;
}

.hero-description {
    color: var(--text-primary) !important;
    font-size: var(--font-size-body);
    max-width: 700px;
    margin: 0 auto var(--spacing-lg);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1.4s ease;
}

.hero-buttons {
    margin-top: var(--spacing-lg);
    animation: fadeInUp 1.6s ease;
    gap: var(--spacing-sm);
}

/* ============================================
   SECTIONS - ОБЩИЕ СТИЛИ
   ============================================ */

.section {
    padding: var(--spacing-xl) var(--spacing-md);
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: var(--spacing-sm);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
}

.section-subtitle {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    color: var(--text-muted);
}

/* ============================================
   TEAM SECTION
   ============================================ */

.team-section {
    background: var(--bg-secondary);
}

.team-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 0, 110, 0.2);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-normal);
    backdrop-filter: blur(10px);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.team-card .card-image {
    overflow: hidden;
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
    margin: 0 auto;
}

.team-card:hover .card-image img {
    transform: scale(1.1);
}

.team-card .card-content {
    padding: var(--spacing-md);
    text-align: center;
}

.team-card .title {
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
}

.team-card .subtitle {
    color: var(--accent-color);
    font-size: var(--font-size-small);
    margin-bottom: var(--spacing-sm);
}

.team-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================
   MEDIA SECTION
   ============================================ */

.media-section {
    background: var(--bg-primary);
    overflow: hidden;
}

.media-slider {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 600px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity var(--transition-slow);
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.slider-prev,
.slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 0, 110, 0.8);
    color: var(--text-primary);
    border: none;
    font-size: 3rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--transition-fast);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.slider-prev {
    left: 20px;
}

.slider-next {
    right: 20px;
}

.slider-prev:hover,
.slider-next:hover {
    background: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow-glow);
}

/* ============================================
   BEHIND THE SCENES SECTION
   ============================================ */

.behind-section {
    background: var(--bg-secondary);
}

.behind-content {
    padding: var(--spacing-md);
}

.behind-content h3 {
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
}

.behind-content p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

.behind-section .image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.behind-section .image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.behind-section .image:hover img {
    transform: scale(1.05);
}

/* ============================================
   RESOURCES SECTION
   ============================================ */

.resources-section {
    background: var(--bg-primary);
}

.resource-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(131, 56, 236, 0.3);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    height: 100%;
    transition: all var(--transition-normal);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
}

.resource-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary-color);
    background: rgba(255, 255, 255, 0.08);
}

.resource-card .title {
    margin-bottom: var(--spacing-md);
}

.resource-card .title a {
    color: var(--text-primary);
    transition: all var(--transition-fast);
}

.resource-card .title a:hover {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.resource-card p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    flex-grow: 1;
}

.resource-card .button {
    margin-top: auto;
}

/* ============================================
   CAREERS SECTION
   ============================================ */

.careers-section {
    background: var(--bg-secondary);
}

.careers-content {
    padding: var(--spacing-md);
}

.careers-content h3 {
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
}

.careers-content p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

.career-benefits {
    background: rgba(255, 0, 110, 0.1);
    border-left: 4px solid var(--primary-color);
    padding: var(--spacing-md);
    margin: var(--spacing-md) 0;
    border-radius: var(--radius-sm);
}

.career-benefits h4 {
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.career-benefits ul {
    list-style: none;
    padding-left: 0;
}

.career-benefits li {
    color: var(--text-secondary);
    padding: var(--spacing-xs) 0;
    position: relative;
    padding-left: 30px;
}

.career-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.careers-section .image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.careers-section .image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.careers-section .image:hover img {
    transform: scale(1.05);
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-section {
    background: var(--bg-primary);
}

.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 0, 110, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    backdrop-filter: blur(10px);
}

.contact-form .field {
    margin-bottom: var(--spacing-md);
}

.contact-form .label {
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    display: block;
}

.contact-form .input,
.contact-form .textarea {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(131, 56, 236, 0.3);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    padding: 1rem;
    font-family: var(--font-body);
    transition: all var(--transition-fast);
    width: 100%;
}

.contact-form .input:focus,
.contact-form .textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 0, 110, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

.contact-form .textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-info {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 245, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    backdrop-filter: blur(10px);
    height: 100%;
}

.contact-info h3 {
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
}

.info-item {
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info-item:last-child {
    border-bottom: none;
}

.info-item strong {
    color: var(--accent-color);
    font-family: var(--font-heading);
    display: block;
    margin-bottom: var(--spacing-xs);
}

.info-item p {
    color: var(--text-secondary);
    margin: 0;
}

.info-item a {
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}

.info-item a:hover {
    color: var(--accent-light);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--bg-secondary);
    border-top: 1px solid rgba(255, 0, 110, 0.3);
    padding: var(--spacing-xl) var(--spacing-md) var(--spacing-md);
    color: var(--text-secondary);
}

.footer h3 {
    color: var(--text-primary);
    font-size: var(--font-size-h4);
    margin-bottom: var(--spacing-md);
}

.footer p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: var(--spacing-sm);
}

.footer-links a {
    color: var(--text-secondary);
    transition: all var(--transition-fast);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.social-links a {
    color: var(--text-secondary);
    font-family: var(--font-heading);
    font-weight: 600;
    padding: var(--spacing-sm) var(--spacing-md);
    border: 1px solid rgba(255, 0, 110, 0.3);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    display: inline-block;
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
}

.social-links a:hover {
    background: rgba(255, 0, 110, 0.2);
    border-color: var(--primary-color);
    color: var(--text-primary);
    transform: translateX(5px);
}

.footer-bottom {
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--text-muted);
    margin: 0;
}

/* ============================================
   SUCCESS PAGE
   ============================================ */

.success-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-dark);
    padding: var(--spacing-md);
}

.success-content {
    text-align: center;
    max-width: 600px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 245, 255, 0.3);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    backdrop-filter: blur(20px);
}

.success-content h1 {
    color: var(--success-color);
    margin-bottom: var(--spacing-md);
}

.success-content p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
}

/* ============================================
   PRIVACY & TERMS PAGES
   ============================================ */

.content-page {
    padding-top: 100px;
    min-height: 100vh;
    background: var(--bg-primary);
}

.content-page .container {
    max-width: 900px;
    padding: var(--spacing-xl) var(--spacing-md);
}

.content-page h1 {
    color: var(--text-primary);
    margin-bottom: var(--spacing-lg);
}

.content-page h2 {
    color: var(--text-primary);
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
}

.content-page p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

.content-page ul,
.content-page ol {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    padding-left: var(--spacing-lg);
}

.content-page li {
    margin-bottom: var(--spacing-sm);
}

/* ============================================
   ANIMATIONS
   ============================================ */

@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 glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 0, 110, 0.5);
    }
    50% {
        box-shadow: 0 0 40px rgba(131, 56, 236, 0.8);
    }
}

/* Scroll-dependent animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glassmorphism {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.glow-effect {
    animation: glow 3s ease-in-out infinite;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media screen and (max-width: 1024px) {
    :root {
        --spacing-xl: 3rem;
        --spacing-lg: 2rem;
    }
    
    .slider-container {
        height: 450px;
    }
    
    .slider-prev,
    .slider-next {
        width: 50px;
        height: 50px;
        font-size: 2rem;
    }
}

@media screen and (max-width: 768px) {
    :root {
        --spacing-xl: 2rem;
        --spacing-lg: 1.5rem;
    }
    
    .section {
        padding: var(--spacing-lg) var(--spacing-sm);
    }
    
    .hero-section {
        background-attachment: scroll;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .button.is-large {
        width: 100%;
        padding: 1rem 2rem;
    }
    
    .slider-container {
        height: 350px;
    }
    
    .slider-prev {
        left: 10px;
    }
    
    .slider-next {
        right: 10px;
    }
    
    .team-card .card-image {
        height: 300px;
    }
    
    .navbar-menu {
        background: rgba(10, 14, 39, 0.98);
        border-top: 1px solid rgba(255, 0, 110, 0.3);
    }
    
    .social-links {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 480px) {
    .slider-container {
        height: 250px;
    }
    
    .slider-prev,
    .slider-next {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .contact-form-wrapper,
    .contact-info {
        padding: var(--spacing-md);
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
    .navbar,
    .hero-buttons,
    .slider-prev,
    .slider-next,
    .footer {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .section {
        page-break-inside: avoid;
    }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

:focus-visible {
    outline: 2px solid var(--accent-color);
    outline-offset: 4px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --text-primary: #FFFFFF;
        --text-secondary: #F0F0F0;
        --bg-primary: #000000;
        --bg-secondary: #1A1A1A;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
figure{
    width: 100% !important;
}