/* ============================================
   REVIEWS TABS & PRESS SECTION STYLES
   ============================================ */

/* Promo Video Section */
.promo-video-section {
    background: linear-gradient(180deg, rgba(10, 15, 25, 0.95), rgba(15, 20, 30, 0.95));
    padding: 4rem 0;
}

.promo-video-wrapper {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 2rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 184, 217, 0.3);
    border: 3px solid var(--color-secondary);
}

.promo-video {
    width: 100%;
    height: auto;
    display: block;
    background: #000;
}

.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.video-play-overlay.hidden {
    opacity: 0;
}

.video-play-button {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
    border: none;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    box-shadow: 0 10px 30px rgba(0, 184, 217, 0.5);
    pointer-events: all;
}

.video-play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(0, 184, 217, 0.7);
}

.video-play-button i {
    margin-left: 5px;
}

.video-info {
    text-align: center;
}

.video-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.video-stat {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-text);
    font-size: 1.1rem;
}

.video-stat i {
    color: var(--color-secondary);
    font-size: 1.5rem;
}

/* Reviews Tabs */
.reviews-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0 3rem;
    flex-wrap: wrap;
}

.review-tab {
    background: linear-gradient(135deg, rgba(0, 153, 153, 0.1), rgba(0, 184, 217, 0.1));
    border: 2px solid var(--color-secondary);
    color: var(--color-text);
    padding: 0.75rem 2rem;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.review-tab:hover {
    background: linear-gradient(135deg, rgba(0, 153, 153, 0.2), rgba(0, 184, 217, 0.2));
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 184, 217, 0.3);
}

.review-tab.active {
    background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
    color: white;
    border-color: var(--color-accent);
    box-shadow: 0 5px 20px rgba(0, 184, 217, 0.4);
}

.reviews-content {
    animation: fadeIn 0.5s ease;
}

.reviews-content.hidden {
    display: none;
}

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

/* Support Section */
.support-section {
    margin-top: 4rem;
    padding: 3rem 0;
    background: linear-gradient(135deg, rgba(0, 153, 153, 0.05), rgba(0, 184, 217, 0.05));
    border-radius: 20px;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.support-item {
    background: rgba(20, 25, 35, 0.6);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid rgba(0, 184, 217, 0.2);
    text-align: center;
    transition: all var(--transition-normal);
}

.support-item:hover {
    border-color: var(--color-secondary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 184, 217, 0.2);
}

.support-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.support-item h4 {
    color: var(--color-secondary);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.support-item p {
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* Press/Media Section */
.press-media-section {
    background: linear-gradient(180deg, rgba(10, 15, 25, 0.95), rgba(15, 20, 30, 0.95));
}

.press-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.press-card {
    background: rgba(20, 25, 35, 0.8);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid rgba(0, 184, 217, 0.1);
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.press-card:hover {
    border-color: var(--color-secondary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 184, 217, 0.2);
}

.press-logo {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.press-card h4 {
    color: var(--color-secondary);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.press-title {
    color: var(--color-text);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.4;
}

.press-excerpt {
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.press-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 184, 217, 0.1);
}

.press-date {
    color: var(--color-text-muted);
    font-size: 0.875rem;
}

.press-link {
    color: var(--color-secondary);
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-fast);
}

.press-link:hover {
    color: var(--color-accent);
    transform: translateX(5px);
}

/* Hero Decorative Logos */
.hero-logo-left,
.hero-logo-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    opacity: 0.85;
    transition: all var(--transition-normal);
}

.hero-logo-left {
    left: 5%;
    width: 180px;
    height: 180px;
}

.hero-logo-right {
    right: 5%;
    width: 200px;
    height: 200px;
}

.hero-logo-left img,
.hero-logo-right img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 184, 217, 0.4));
}

.hero-logo-left:hover,
.hero-logo-right:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.05);
}

/* Make LazerDance logo clean (no background) */
.hero-logo-left img {
    /* Transparent background, modern look */
}

/* Tablet adjustments */
@media (max-width: 1200px) {
    .hero-logo-left {
        width: 120px;
        height: 120px;
        left: 3%;
    }
    
    .hero-logo-right {
        width: 140px;
        height: 140px;
        right: 3%;
    }
}

/* Hero UNESCO Text Stamp */
.unesco-stamp-text {
    display: inline-block;
    margin-bottom: 1.5rem;
    animation: float 3s ease-in-out infinite;
}

.unesco-big-text {
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: 0.5rem;
    color: var(--color-secondary);
    text-shadow: 
        0 0 20px rgba(0, 184, 217, 0.5),
        0 0 40px rgba(0, 184, 217, 0.3),
        0 0 60px rgba(0, 184, 217, 0.2);
    display: block;
    line-height: 1;
}

/* Hero Credits */
.hero-credits {
    margin: 1.5rem 0 2rem;
    padding: 1rem 0;
    border-top: 1px solid rgba(0, 184, 217, 0.2);
    border-bottom: 1px solid rgba(0, 184, 217, 0.2);
}

.hero-studio {
    color: var(--color-text);
    font-size: 1.1rem;
    margin: 0 0 0.5rem 0;
}

.hero-studio strong {
    color: var(--color-secondary);
    font-weight: 700;
}

.hero-franchise {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin: 0;
    font-style: italic;
}

/* Inline Video Logo Animation */
.inline-logo-wrapper {
    display: inline-block;
    vertical-align: middle;
    margin: 0 8px;
    position: relative;
}

.inline-logo-video {
    height: 40px;
    width: auto;
    display: inline-block;
    vertical-align: middle;
    filter: drop-shadow(0 2px 8px rgba(0, 184, 217, 0.4));
    transition: all 0.3s ease;
}

.inline-logo-video:hover {
    filter: drop-shadow(0 4px 12px rgba(0, 184, 217, 0.6));
    transform: scale(1.05);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Hero Video Background */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* LazerDance Studio Section */
.studio-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: linear-gradient(135deg, rgba(0, 153, 153, 0.1), rgba(0, 184, 217, 0.1));
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid var(--color-secondary);
    margin: 2rem 0 3rem;
    box-shadow: 0 10px 40px rgba(0, 184, 217, 0.2);
}

.studio-logo-wrapper {
    width: 180px;
    flex-shrink: 0;
    position: relative;
}

.studio-logo-video {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 5px 15px rgba(0, 184, 217, 0.4));
    transition: all 0.3s ease;
}

.studio-logo-video:hover {
    filter: drop-shadow(0 8px 20px rgba(0, 184, 217, 0.6));
    transform: scale(1.05);
}

.studio-logo-fallback {
    width: 100%;
    height: auto;
}

/* Старый статичный логотип (fallback) */
.studio-logo {
    width: 180px;
    height: auto;
    flex-shrink: 0;
    filter: drop-shadow(0 5px 15px rgba(0, 184, 217, 0.3));
}

.studio-info h3 {
    color: var(--color-secondary);
    font-size: 2rem;
    margin: 0 0 0.5rem 0;
    font-weight: 700;
}

.studio-tagline {
    color: var(--color-text);
    font-size: 1.15rem;
    font-weight: 600;
    margin: 0 0 1rem 0;
}

.studio-description {
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.studio-services {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.service-tag {
    background: rgba(0, 184, 217, 0.15);
    color: var(--color-secondary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid rgba(0, 184, 217, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition-fast);
}

.service-tag:hover {
    background: rgba(0, 184, 217, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 184, 217, 0.2);
}

.service-tag i {
    font-size: 1rem;
}

/* Heroes Laser Gallery */
.heroes-laser-section {
    margin: 4rem 0;
    padding: 3rem 0;
}

.heroes-laser-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 2rem;
}

.hero-laser-card {
    background: rgba(10, 15, 25, 0.8);
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(0, 184, 217, 0.2);
    transition: all var(--transition-normal);
    position: relative;
}

/* Большие карточки на всю ширину */
.hero-laser-card-large {
    grid-column: 1 / -1;
}

.hero-laser-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-secondary);
    box-shadow: 0 20px 60px rgba(0, 184, 217, 0.4);
}

.hero-laser-image {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(10, 15, 25, 1) 0%, rgba(0, 20, 40, 1) 100%);
}

.hero-laser-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all var(--transition-normal);
}

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

.hero-laser-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    pointer-events: none;
}

.hero-laser-info {
    padding: 2rem;
}

.hero-laser-info h4 {
    color: var(--color-secondary);
    font-size: 1.5rem;
    margin: 0 0 0.5rem 0;
    font-weight: 700;
}

.hero-laser-title {
    color: var(--color-text-muted);
    font-size: 1rem;
    font-style: italic;
    margin: 0 0 1rem 0;
}

.hero-laser-desc {
    color: var(--color-text);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.hero-laser-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(0, 184, 217, 0.2), rgba(0, 153, 153, 0.2));
    color: var(--color-secondary);
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(0, 184, 217, 0.3);
}

/* Горизонтальный layout для больших карточек */
.hero-laser-card-large {
    display: flex;
    flex-direction: row;
}

.hero-laser-card-large .hero-laser-image {
    width: 50%;
    height: 500px;
}

.hero-laser-card-large .hero-laser-info {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem;
}

.hero-laser-card-large .hero-laser-info h4 {
    font-size: 2rem;
}

.hero-laser-card-large .hero-laser-desc {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Russia Giants Project Status */
.russia-status {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.status-item {
    background: rgba(20, 25, 35, 0.6);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid rgba(0, 184, 217, 0.2);
    transition: all var(--transition-normal);
}

.status-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 184, 217, 0.3);
}

.status-launched {
    border-color: #00ff00;
    background: linear-gradient(135deg, rgba(0, 255, 0, 0.05), rgba(0, 184, 217, 0.05));
}

.status-negotiation {
    border-color: #ffa500;
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.05), rgba(0, 184, 217, 0.05));
}

.status-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.status-launched .status-badge {
    background: rgba(0, 255, 0, 0.2);
    color: #00ff00;
    border: 1px solid #00ff00;
}

.status-negotiation .status-badge {
    background: rgba(255, 165, 0, 0.2);
    color: #ffa500;
    border: 1px solid #ffa500;
}

.status-item h3 {
    color: var(--color-secondary);
    margin: 0 0 1rem 0;
    font-size: 1.5rem;
}

.location-info {
    color: var(--color-text-muted);
    margin: 0.5rem 0;
    font-size: 1rem;
}

.location-info i {
    color: var(--color-secondary);
    margin-right: 0.5rem;
}

.year-info {
    color: var(--color-text);
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

.project-desc {
    color: var(--color-text-muted);
    font-style: italic;
    margin-top: 0.5rem;
}

.russia-concept {
    background: linear-gradient(135deg, rgba(0, 153, 153, 0.1), rgba(0, 184, 217, 0.1));
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.russia-concept h3 {
    color: var(--color-secondary);
    margin-bottom: 1rem;
}

.russia-concept .lead {
    color: var(--color-text);
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Franchise Contact */
.franchise-intro {
    color: var(--color-text);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.contact-franchise {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    padding: 2rem;
    background: rgba(0, 184, 217, 0.05);
    border-radius: 15px;
    border: 2px solid rgba(0, 184, 217, 0.2);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-item i {
    color: var(--color-secondary);
    font-size: 1.5rem;
}

.contact-item a {
    color: var(--color-text);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all var(--transition-fast);
}

.contact-item a:hover {
    color: var(--color-secondary);
    transform: translateX(3px);
}

/* ============================================
   AWARDS COLLAGE STYLES
   ============================================ */

/* International Banner */
.international-banner {
    background: linear-gradient(135deg, rgba(0, 184, 217, 0.1), rgba(15, 25, 40, 0.8));
    border: 2px solid rgba(0, 184, 217, 0.3);
    border-radius: 20px;
    padding: 3rem;
    margin: 3rem 0;
    position: relative;
    overflow: hidden;
}

.international-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 184, 217, 0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

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

.banner-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.unesco-seal {
    flex-shrink: 0;
}

.unesco-seal img {
    width: 180px;
    height: 180px;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 184, 217, 0.4));
}

.banner-text h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.banner-text .lead {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.banner-text .lead strong {
    color: var(--color-secondary);
    font-weight: 600;
}

.cities-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.city-badge {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: #000;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 5px 15px rgba(0, 184, 217, 0.4);
    transition: all 0.3s ease;
}

.city-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 184, 217, 0.6);
}

/* Awards Collage */
.awards-collage {
    margin-top: 4rem;
}

.collage-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-secondary);
    text-align: center;
    margin-bottom: 3rem;
    font-family: 'Playfair Display', serif;
}

/* Awards Carousel */
.awards-carousel-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto 3rem;
    padding: 0 60px;
}

.awards-carousel {
    overflow: hidden;
    border-radius: 20px;
}

.awards-carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 33.333%;
    padding: 0 10px;
    box-sizing: border-box;
}

.carousel-slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    border: 3px solid rgba(0, 184, 217, 0.3);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.carousel-slide:hover img {
    border-color: var(--color-secondary);
    box-shadow: 0 15px 40px rgba(0, 184, 217, 0.6);
    transform: scale(1.02);
}

.award-caption {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.95rem;
    color: var(--color-text);
    font-weight: 600;
}

/* Carousel Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, rgba(0, 184, 217, 0.9), rgba(0, 153, 153, 0.9));
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: linear-gradient(135deg, var(--color-secondary), #00ffaa);
    box-shadow: 0 8px 25px rgba(0, 184, 217, 0.6);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 0;
}

.carousel-next {
    right: 0;
}

/* Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 2rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 184, 217, 0.3);
    border: 2px solid rgba(0, 184, 217, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot:hover {
    background: rgba(0, 184, 217, 0.6);
    transform: scale(1.2);
}

.carousel-dot.active {
    background: var(--color-secondary);
    border-color: var(--color-secondary);
    box-shadow: 0 0 15px rgba(0, 184, 217, 0.8);
}

/* Old grid styles - keeping for compatibility */
.collage-grid {
    display: none; /* Hidden, using carousel now */
}

/* Collage Summary */
.collage-summary {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(0, 184, 217, 0.05), rgba(15, 25, 40, 0.3));
    border-radius: 20px;
    border: 2px solid rgba(0, 184, 217, 0.2);
}

.summary-item {
    text-align: center;
    padding: 1rem 2rem;
}

.summary-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-secondary);
    font-family: 'Playfair Display', serif;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.summary-label {
    display: block;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .international-banner {
        padding: 2rem 1.5rem;
    }
    
    .banner-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .unesco-seal img {
        width: 120px;
        height: 120px;
    }
    
    .banner-text h3 {
        font-size: 1.5rem;
    }
    
    .banner-text .lead {
        font-size: 1rem;
    }
    
    .cities-list {
        justify-content: center;
        gap: 0.75rem;
    }
    
    .city-badge {
        font-size: 0.85rem;
        padding: 0.6rem 1.2rem;
    }
    
    .collage-title {
        font-size: 1.75rem;
    }
    
    .collage-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    .collage-img {
        height: 200px;
    }
    
    /* Carousel Mobile */
    .awards-carousel-wrapper {
        padding: 0 50px;
    }
    
    .carousel-slide {
        min-width: 100%; /* One slide on mobile */
    }
    
    .carousel-slide img {
        height: 350px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .award-caption {
        font-size: 0.85rem;
    }
    
    .collage-summary {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .summary-number {
        font-size: 2.5rem;
    }
    
    .summary-label {
        font-size: 0.85rem;
    }
    
    .unesco-big-text {
        font-size: 2.5rem;
        letter-spacing: 0.3rem;
    }
    
    .hero-credits {
        padding: 0.75rem 0;
        margin: 1rem 0 1.5rem;
    }
    
    .hero-studio {
        font-size: 1rem;
    }
    
    .inline-logo-video {
        height: 32px;
    }
    
    .hero-franchise {
        font-size: 0.85rem;
    }
    
    /* Heroes laser grid - mobile */
    .heroes-laser-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .hero-laser-card-large {
        flex-direction: column;
    }
    
    .hero-laser-card-large .hero-laser-image {
        width: 100%;
        height: 300px;
    }
    
    .hero-laser-card-large .hero-laser-info {
        width: 100%;
        padding: 2rem;
    }
    
    .hero-laser-card-large .hero-laser-info h4 {
        font-size: 1.5rem;
    }
}

/* ============================================
   VIMEO SHOWCASE STYLES
   ============================================ */

.vimeo-showcase-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.vimeo-showcase-wrapper iframe {
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 184, 217, 0.3);
    border: 2px solid rgba(0, 184, 217, 0.2);
}

.vimeo-showcase-info {
    max-width: 800px;
    margin: 2rem auto 0;
    padding: 1.5rem;
    background: rgba(0, 184, 217, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(0, 184, 217, 0.2);
}

.vimeo-showcase-info p {
    margin: 0 0 1rem;
}

.vimeo-showcase-info .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 2px solid var(--color-secondary);
    color: var(--color-secondary);
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.vimeo-showcase-info .btn-outline:hover {
    background: var(--color-secondary);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 184, 217, 0.4);
}

.vimeo-showcase-info .btn-outline i {
    font-size: 1.2rem;
}

/* Responsive для Vimeo Showcase */
@media (max-width: 768px) {
    .vimeo-showcase-wrapper {
        padding: 0 0.5rem;
    }
    
    .vimeo-showcase-info {
        padding: 1rem;
        margin-top: 1.5rem;
    }
    
    .vimeo-showcase-info p {
        font-size: 0.9rem;
    }
    
    .vimeo-showcase-info .btn-outline {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .hero-laser-card-large .hero-laser-desc {
        font-size: 1rem;
    }
    
    /* Hide decorative logos on mobile */
    .hero-logo-left,
    .hero-logo-right {
        display: none;
    }
    
    .studio-header {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .studio-logo-wrapper {
        width: 140px;
        margin: 0 auto 1.5rem;
    }
    
    .studio-logo {
        margin: 0 auto 1.5rem;
    }
    
    .studio-services {
        justify-content: center;
    }
    
    .service-tag {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }
    
    .contact-franchise {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .contact-item {
        justify-content: center;
    }
    
    .status-item h3 {
        font-size: 1.25rem;
    }
    
    /* Heroes Laser Gallery Mobile */
    .heroes-laser-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-laser-image {
        height: 350px;
    }
    
    .hero-laser-info {
        padding: 1.5rem;
    }
    
    .hero-laser-info h4 {
        font-size: 1.3rem;
    }
    
    .hero-laser-desc {
        font-size: 0.95rem;
    }
    
    .promo-video-wrapper {
        border-radius: 10px;
        border-width: 2px;
    }
    
    .video-play-button {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .video-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .video-stat {
        justify-content: center;
    }
    
    .reviews-tabs {
        flex-direction: column;
        align-items: stretch;
    }
    
    .review-tab {
        width: 100%;
        text-align: center;
    }
    
    .support-grid {
        grid-template-columns: 1fr;
    }
    
    .press-grid {
        grid-template-columns: 1fr;
    }
    
    .press-meta {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
}
