:root {
    /* Цветовая схема - Дополнительная (Синий и Оранжевый) */
    --primary-color: #2563eb;
    --primary-hover: #1d4ed8;
    --primary-dark: #1e40af;
    --secondary-color: #f97316;
    --secondary-hover: #ea580c;
    --secondary-dark: #c2410c;
    
    /* Акцентные цвета */
    --accent-1: #8b5cf6;
    --accent-2: #06d6a0;
    --accent-3: #ffd60a;
    --accent-4: #ff006e;
    
    /* Нейтральные цвета */
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    --black: #000000;
    
    /* Градиенты */
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    --gradient-hero: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-1) 50%, var(--secondary-color) 100%);
    --gradient-card: linear-gradient(145deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.4) 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    
    /* Тени для неоморфизма */
    --shadow-neumorphism-light: 20px 20px 60px #d1d9e6, -20px -20px 60px #ffffff;
    --shadow-neumorphism-dark: inset 20px 20px 60px #d1d9e6, inset -20px -20px 60px #ffffff;
    --shadow-soft: 0 10px 30px rgba(37, 99, 235, 0.15);
    --shadow-medium: 0 20px 50px rgba(37, 99, 235, 0.25);
    --shadow-strong: 0 30px 80px rgba(37, 99, 235, 0.35);
    
    /* Типографика */
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Merriweather', serif;
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 600;
    --font-weight-bold: 700;
    
    /* Размеры */
    --border-radius: 20px;
    --border-radius-small: 12px;
    --border-radius-large: 30px;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;
    
    /* Анимации */
    --transition-fast: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --transition-medium: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --transition-slow: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Базовые стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    font-weight: var(--font-weight-normal);
    color: var(--gray-800);
    line-height: 1.7;
    background: var(--gray-50);
    overflow-x: hidden;
}

/* Типографика */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: var(--font-weight-bold);
    line-height: 1.3;
    margin-bottom: var(--spacing-sm);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h5 { font-size: clamp(1.125rem, 2vw, 1.5rem); }
h6 { font-size: clamp(1rem, 1.5vw, 1.25rem); }

p {
    margin-bottom: var(--spacing-sm);
    color: var(--gray-700);
    font-size: clamp(1rem, 1.5vw, 1.125rem);
}

/* Глобальные стили кнопок */
.btn, button, input[type='submit'] {
    font-family: var(--font-primary);
    font-weight: var(--font-weight-medium);
    padding: var(--spacing-sm) var(--spacing-lg);
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition-medium);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(10px);
    background: var(--gradient-primary);
    color: var(--white);
    min-height: 48px;
}

.btn:hover, button:hover, input[type='submit']:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-medium);
    color: var(--white);
}

.btn:active, button:active, input[type='submit']:active {
    transform: translateY(-1px) scale(0.98);
}

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

.btn-outline-light {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    backdrop-filter: blur(20px);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
}

.btn-lg {
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: 1.125rem;
}

/* Утилитарные классы */
.section-title {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    position: relative;
}

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

.section-subtitle {
    text-align: center;
    color: var(--gray-600);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto var(--spacing-xl);
}

/* Навигация */
.navbar-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-medium);
}

.navbar {
    padding: var(--spacing-sm) 0;
}

.navbar-brand {
    font-family: var(--font-primary);
    font-weight: var(--font-weight-bold);
    font-size: 1.75rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
}

.navbar-nav .nav-link {
    font-family: var(--font-primary);
    font-weight: var(--font-weight-medium);
    color: var(--gray-700);
    padding: var(--spacing-xs) var(--spacing-sm);
    margin: 0 var(--spacing-xs);
    border-radius: var(--border-radius-small);
    transition: var(--transition-medium);
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
    color: var(--primary-color);
    background: var(--gradient-glass);
    transform: translateY(-2px);
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

.hero-title {
    color: var(--white) !important;
    -webkit-text-fill-color: var(--white) !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: heroTitleAnimation 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hero-subtitle {
    color: var(--white) !important;
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    animation: heroSubtitleAnimation 1s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.2s both;
}

.hero-buttons {
    animation: heroButtonsAnimation 1s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.4s both;
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.shape-1, .shape-2, .shape-3 {
    position: absolute;
    border-radius: 50% 30% 70% 20%;
    opacity: 0.1;
    animation: floatShape 6s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--accent-2);
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: var(--accent-3);
    bottom: 20%;
    left: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: var(--accent-4);
    top: 60%;
    right: 20%;
    animation-delay: 4s;
}

/* Gallery Section */
.gallery-section {
    padding: var(--spacing-xxl) 0;
    background: var(--white);
}

.project-card, .career-card {
    background: var(--white);
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-neumorphism-light);
    transition: var(--transition-medium);
    overflow: hidden;
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.project-card:hover, .career-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-strong);
}

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

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

.project-card:hover .card-image img,
.career-card:hover .card-image img {
    transform: scale(1.1);
}

.card-content {
    padding: var(--spacing-lg);
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-content h4 {
    margin-bottom: var(--spacing-sm);
    color: var(--gray-800);
}

.card-content p {
    flex: 1;
    margin-bottom: var(--spacing-md);
}

/* Contact Section */
.contact-section {
    padding: var(--spacing-xxl) 0;
    background: var(--gray-50);
}

.contact-form {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-neumorphism-light);
}

.form-group {
    margin-bottom: var(--spacing-lg);
}

.form-label {
    font-family: var(--font-primary);
    font-weight: var(--font-weight-medium);
    color: var(--gray-700);
    margin-bottom: var(--spacing-xs);
}

.form-control {
    border: 2px solid var(--gray-200);
    border-radius: var(--border-radius-small);
    padding: var(--spacing-sm);
    font-family: var(--font-secondary);
    transition: var(--transition-medium);
    background: var(--white);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    outline: none;
}

/* News Section */
.news-section {
    padding: var(--spacing-xxl) 0;
    background: var(--white);
}

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

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: var(--spacing-xl);
    width: 100%;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: 0;
    margin-right: 55%;
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 55%;
    margin-right: 0;
    text-align: left;
}

.timeline-content {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-neumorphism-light);
    position: relative;
    transition: var(--transition-medium);
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 0 4px var(--white), 0 0 0 8px var(--primary-color);
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -35px;
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -35px;
}

.timeline-date {
    font-family: var(--font-primary);
    font-weight: var(--font-weight-medium);
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-bottom: var(--spacing-xs);
}

/* Behind the Scenes Section */
.behind-scenes-section {
    padding: var(--spacing-xxl) 0;
    background: var(--gray-50);
}

.behind-scenes-section img {
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-medium);
    transition: var(--transition-medium);
}

.behind-scenes-section img:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-strong);
}

/* Careers Section */
.careers-section {
    padding: var(--spacing-xxl) 0;
    background: var(--white);
}

/* External Resources Section */
.resources-section {
    padding: var(--spacing-xxl) 0;
}

.resource-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-neumorphism-light);
    transition: var(--transition-medium);
    border: none;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

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

.resource-card h5 a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition-fast);
}

.resource-card h5 a:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}

/* Footer */
.footer {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: var(--spacing-xxl) 0 var(--spacing-lg);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
    opacity: 0.05;
    z-index: 0;
}

.footer .container {
    position: relative;
    z-index: 1;
}

.footer-title {
    font-family: var(--font-primary);
    font-weight: var(--font-weight-bold);
    color: var(--white);
    margin-bottom: var(--spacing-sm);
}

.footer-subtitle {
    font-family: var(--font-primary);
    font-weight: var(--font-weight-medium);
    color: var(--gray-200);
    margin-bottom: var(--spacing-sm);
}

.footer-text {
    color: var(--gray-400);
    line-height: 1.6;
}

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

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

.footer-links a {
    color: var(--gray-400);
    text-decoration: none;
    transition: var(--transition-fast);
    display: inline-block;
}

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

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

.social-links a {
    color: var(--gray-400);
    text-decoration: none;
    padding: var(--spacing-xs) var(--spacing-sm);
    border: 1px solid var(--gray-600);
    border-radius: var(--border-radius-small);
    transition: var(--transition-medium);
    font-family: var(--font-primary);
    font-weight: var(--font-weight-medium);
    font-size: 0.9rem;
}

.social-links a:hover {
    color: var(--white);
    border-color: var(--primary-color);
    background: var(--primary-color);
    transform: translateY(-2px);
}

.footer-divider {
    border: none;
    height: 1px;
    background: var(--gray-700);
}

.footer-copyright {
    color: var(--gray-500);
    font-size: 0.9rem;
}

/* Privacy и Terms страницы */
.privacy-content, .terms-content {
    padding-top: 100px;
    min-height: 100vh;
}

.privacy-container, .terms-container {
    background: var(--white);
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-neumorphism-light);
    padding: var(--spacing-xl);
    margin: var(--spacing-lg) auto;
}

/* Success страница */
.success-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-hero);
    padding: var(--spacing-lg);
}

.success-content {
    background: var(--white);
    padding: var(--spacing-xxl);
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-strong);
    text-align: center;
    max-width: 500px;
    width: 100%;
    animation: successAnimation 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Анимации */
@keyframes heroTitleAnimation {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes heroSubtitleAnimation {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroButtonsAnimation {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatShape {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        border-radius: 50% 30% 70% 20%;
    }
    33% {
        transform: translateY(-20px) rotate(120deg);
        border-radius: 30% 70% 20% 50%;
    }
    66% {
        transform: translateY(10px) rotate(240deg);
        border-radius: 70% 20% 50% 30%;
    }
}

@keyframes successAnimation {
    0% {
        opacity: 0;
        transform: translateY(-50px) scale(0.8);
    }
    50% {
        transform: translateY(10px) scale(1.05);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Адаптивность */
@media (max-width: 768px) {
    :root {
        --spacing-xs: 0.25rem;
        --spacing-sm: 0.75rem;
        --spacing-md: 1rem;
        --spacing-lg: 1.5rem;
        --spacing-xl: 2rem;
        --spacing-xxl: 2.5rem;
    }
    
    .hero-section {
        padding: var(--spacing-xl) 0;
        text-align: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 50px;
        margin-right: 0;
        text-align: left;
    }
    
    .timeline-item:nth-child(odd) .timeline-content::before,
    .timeline-item:nth-child(even) .timeline-content::before {
        left: -35px;
        right: auto;
    }
    
    .navbar-nav {
        background: var(--white);
        border-radius: var(--border-radius);
        margin-top: var(--spacing-sm);
        padding: var(--spacing-sm);
        box-shadow: var(--shadow-soft);
    }
    
    .social-links {
        justify-content: center;
    }
    
    .card-content {
        padding: var(--spacing-md);
    }
    
    .contact-form {
        padding: var(--spacing-lg);
    }
    
    .shape-1, .shape-2, .shape-3 {
        width: 150px !important;
        height: 150px !important;
    }
}

@media (max-width: 576px) {
    .btn-lg {
        padding: var(--spacing-sm) var(--spacing-lg);
        font-size: 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
}

/* Улучшения доступности */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Высокий контраст */
@media (prefers-contrast: high) {
    :root {
        --gray-400: #666666;
        --gray-500: #555555;
        --gray-600: #444444;
    }
}

/* Утилитарные классы */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bg-glass {
    background: var(--gradient-glass);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.shadow-neumorphism {
    box-shadow: var(--shadow-neumorphism-light);
}

.shadow-neumorphism:hover {
    box-shadow: var(--shadow-neumorphism-dark);
}

.read-more-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: var(--font-weight-medium);
    font-family: var(--font-primary);
    position: relative;
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.read-more-link::after {
    content: '→';
    transition: var(--transition-fast);
}

.read-more-link:hover {
    color: var(--primary-hover);
    transform: translateX(3px);
}

.read-more-link:hover::after {
    transform: translateX(3px);
}

/* Биоморфные формы */
.biomorphic-shape {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    transition: var(--transition-slow);
}

.biomorphic-shape:hover {
    border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    transform: scale(1.05);
}

/* Стили для About страницы */
.about-content {
    padding-top: 100px;
}

.team-member, .testimonial, .product-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-neumorphism-light);
    padding: var(--spacing-lg);
    transition: var(--transition-medium);
    height: 100%;
}

.team-member:hover, .testimonial:hover, .product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.team-member img, .testimonial img, .product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--border-radius-small);
    margin: 0 auto var(--spacing-sm);
}

/* Стили для Contacts страницы */
.contacts-content {
    padding-top: 100px;
}

.contact-info {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-neumorphism-light);
    padding: var(--spacing-xl);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.contact-info-item {
    margin-bottom: var(--spacing-lg);
    padding: var(--spacing-md);
    border-radius: var(--border-radius-small);
    background: var(--gradient-glass);
    transition: var(--transition-medium);
}

.contact-info-item:hover {
    transform: translateY(-3px);
    background: var(--gradient-primary);
    color: var(--white);
}

.contact-info-item h5 {
    color: inherit;
    -webkit-text-fill-color: inherit;
}

/* Дополнительные утилиты для карточек */
.card {
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-neumorphism-light);
    transition: var(--transition-medium);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin: 0 auto;
}

.card-body {
    padding: var(--spacing-lg);
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: var(--white);
    border-radius: var(--border-radius);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-neumorphism-light);
    transition: var(--transition-medium);
    height: 100%;
}

.item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: var(--border-radius-small);
    margin: 0 auto var(--spacing-sm);
}