/* ===========================================
   ESTILOS ESPECÍFICOS DE RG STUDIO
   =========================================== */

/* ---------- RG Studio Hero Section (Telón) ---------- */
.rg-studio-hero {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: transform 1.4s cubic-bezier(0.77, 0, 0.175, 1);
}

.rg-studio-hero.curtain-open {
    transform: translateY(-100%);
}

.rg-studio-hero__title {
    font-size: 6rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-text-inverted);
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    text-transform: uppercase;
    margin: 0 0 1rem 0;
}

.rg-studio-hero__subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: var(--font-weight-normal);
    letter-spacing: 0.1em;
    margin: 0;
}

/* ---------- Loading Indicator ---------- */
.rg-studio-hero__loader {
    margin-top: 3rem;
    text-align: center;
}

.rg-studio-hero__loader-text {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.2em;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.rg-studio-hero__loader-bar {
    width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 auto;
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.rg-studio-hero__loader-progress {
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    width: 0%;
    transition: width 0.3s ease;
    border-radius: 2px;
}

/* ---------- Main Content ---------- */
body:has(.rg-studio-hero) .main {
    margin-top: 0;
}

/* ---------- Hero Section ---------- */
.rg-hero {
    background-image: url('../../images RGstudio/rg_studio_web-scaled.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: calc(100vh - var(--header-height));
    min-height: calc(100vh - var(--header-height));
    position: relative;
}

.rg-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
}

.rg-hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-lg);
}

.rg-hero__logo {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
}

.rg-hero__logo img {
    width: 100%;
    height: auto;
    filter: brightness(1.2) drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.rg-hero__description {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-normal);
    color: var(--color-text-inverted);
    opacity: 0.9;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Studio Thumbnails in Hero */
.studio-thumbs {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.studio-thumbs__item {
    width: 100px;
    height: 70px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.studio-thumbs__item:hover {
    transform: translateY(-4px) scale(1.05);
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6),
                0 0 20px rgba(255, 255, 255, 0.2);
}

.studio-thumbs__placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    padding: 0.5rem;
    font-weight: var(--font-weight-semibold);
}

/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox__content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    text-align: center;
}

.lightbox__placeholder {
    max-width: 100%;
    max-height: 80vh;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.6);
    padding: 4rem;
    border-radius: 8px;
    min-width: 600px;
    min-height: 400px;
}

.lightbox__caption {
    color: #ffffff;
    font-size: 1.2rem;
    margin-top: 1.5rem;
    font-weight: var(--font-weight-semibold);
}

.lightbox__close,
.lightbox__prev,
.lightbox__next {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    font-size: 2.5rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50%;
    backdrop-filter: blur(10px);
}

.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.1);
}

.lightbox__close {
    top: 2rem;
    right: 2rem;
}

.lightbox__prev {
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
    line-height: 1;
}

.lightbox__next {
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
    line-height: 1;
}

.lightbox__prev:hover,
.lightbox__next:hover {
    transform: translateY(-50%) scale(1.1);
}

/* ---------- About Studio Section with Video ---------- */
.about-studio-section {
    position: relative;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
    padding: 6rem 0;
}

.about-studio-section__video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    z-index: 0;
}

.about-studio-section__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.8) 100%
    );
    z-index: 1;
}

.about-studio-section .container {
    position: relative;
    z-index: 2;
}

/* ---------- Studio Intro Section ---------- */
.studio-intro {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.studio-intro__title {
    color: var(--color-text-inverted);
    margin-bottom: var(--spacing-lg);
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.studio-intro__text {
    font-size: var(--font-size-base);
    line-height: var(--line-height-relaxed);
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* ---------- Services Section ---------- */
.services-section {
    background: linear-gradient(180deg, #000000 0%, #0a0a0a 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(circle, rgba(153, 0, 51, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.services-section__title {
    font-size: 3rem;
    font-weight: var(--font-weight-bold);
    color: #990033;
    text-align: center;
    margin-bottom: 4.5rem;
    letter-spacing: -0.02em;
    text-shadow: 0 0 30px rgba(153, 0, 51, 0.5),
                 0 0 60px rgba(153, 0, 51, 0.3);
    animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% {
        text-shadow: 0 0 30px rgba(153, 0, 51, 0.5),
                     0 0 60px rgba(153, 0, 51, 0.3);
    }
    50% {
        text-shadow: 0 0 40px rgba(153, 0, 51, 0.7),
                     0 0 80px rgba(153, 0, 51, 0.4);
    }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.service-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent,
        rgba(153, 0, 51, 0.1),
        transparent);
    transition: left 0.6s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(153, 0, 51, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4),
                0 0 60px rgba(153, 0, 51, 0.2);
}

.service-card__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s ease;
}

.service-card__icon::before {
    content: '';
    position: absolute;
    inset: -10px;
    background: radial-gradient(circle, rgba(153, 0, 51, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: iconPulse 2s ease-in-out infinite;
}

.service-card:hover .service-card__icon::before {
    opacity: 1;
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.6;
    }
}

.service-card__icon img {
    width: 100%;
    height: 100%;
    filter: brightness(0) saturate(100%) invert(14%) sepia(97%) saturate(6483%) hue-rotate(334deg) brightness(85%) contrast(115%);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.service-card:hover .service-card__icon img {
    filter: brightness(0) saturate(100%) invert(14%) sepia(97%) saturate(6483%) hue-rotate(334deg) brightness(95%) contrast(125%);
    transform: scale(1.1);
    drop-shadow: 0 0 20px rgba(153, 0, 51, 0.8);
}

.service-card__title {
    font-size: 1.75rem;
    font-weight: var(--font-weight-bold);
    color: #990033;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
    transition: all 0.3s ease;
}

.service-card:hover .service-card__title {
    text-shadow: 0 0 20px rgba(153, 0, 51, 0.6);
}

.service-card__list {
    list-style: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--font-size-base);
    line-height: 2;
    transition: all 0.3s ease;
}

.service-card:hover .service-card__list {
    color: rgba(255, 255, 255, 0.95);
}

.service-card__list li {
    margin-bottom: var(--spacing-xs);
    position: relative;
    padding-left: 0;
    transition: all 0.3s ease;
}

.service-card__list li::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -4px;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #990033, transparent);
    transition: width 0.3s ease;
}

.service-card:hover .service-card__list li:hover::before {
    width: 100%;
}

/* ---------- Legendary Microphones Section ---------- */
.legendary-mics-section {
    background: #000000;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.legendary-mics-header {
    text-align: center;
    margin-bottom: 5rem;
}

.legendary-mics-header__title {
    font-size: 5rem;
    font-weight: var(--font-weight-bold);
    color: #d91e5b;
    text-transform: lowercase;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    line-height: 1;
}

.legendary-mics-header__subtitle {
    font-size: 2rem;
    font-weight: var(--font-weight-normal);
    color: var(--color-text-inverted);
    margin: 0.5rem 0;
}

.legendary-mics-carousel {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 5rem;
}

.legendary-mics-grid {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    gap: 3rem;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 2rem 0;
    /* Ocultar scrollbar */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE y Edge */
}

.legendary-mics-grid::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid rgba(217, 30, 91, 0.5);
    background: rgba(0, 0, 0, 0.8);
    color: #d91e5b;
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 0;
    padding-bottom: 3px;
    font-family: Arial, sans-serif;
    backdrop-filter: blur(10px);
}

.carousel-btn:hover {
    background: rgba(217, 30, 91, 0.2);
    border-color: #d91e5b;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 30px rgba(217, 30, 91, 0.4);
}

.carousel-btn--prev {
    left: 1rem;
}

.carousel-btn--next {
    right: 1rem;
}

.mic-card {
    text-align: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.mic-card:hover {
    transform: translateY(-8px);
}

.mic-card__image {
    position: relative;
    width: 140px;
    height: 240px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mic-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #d91e5b;
    border-radius: 50px 50px 8px 8px;
    color: rgba(217, 30, 91, 0.4);
    font-size: 0.9rem;
    font-weight: var(--font-weight-semibold);
}

.mic-card__svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    transition: filter 0.3s ease;
}

.mic-card:hover .mic-card__svg {
    filter: drop-shadow(0 6px 12px rgba(217, 30, 91, 0.4));
}

.mic-card__btn {
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #d91e5b;
    background: rgba(217, 30, 91, 0.2);
    color: #d91e5b;
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.mic-card__btn:hover {
    background: #d91e5b;
    color: #ffffff;
    transform: translateX(-50%) scale(1.1);
    box-shadow: 0 0 20px rgba(217, 30, 91, 0.6);
}

.mic-card__brand {
    font-size: 1.1rem;
    font-weight: var(--font-weight-semibold);
    color: #d91e5b;
    margin-bottom: 0.25rem;
}

.mic-card__model {
    font-size: 1rem;
    font-weight: var(--font-weight-normal);
    color: var(--color-text-inverted);
}

/* Microphone Modal */
.mic-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.mic-modal.active {
    display: flex;
}

.mic-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.mic-modal__content {
    position: relative;
    background: linear-gradient(145deg, #1a1a1a 0%, #0a0a0a 100%);
    border-radius: 16px;
    padding: 2.5rem;
    max-width: 500px;
    width: 90%;
    border: 2px solid rgba(217, 30, 91, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8),
                0 0 40px rgba(217, 30, 91, 0.2);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.mic-modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid rgba(217, 30, 91, 0.4);
    background: rgba(217, 30, 91, 0.1);
    color: #d91e5b;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.mic-modal__close:hover {
    background: #d91e5b;
    color: #ffffff;
    transform: rotate(90deg);
    border-color: #d91e5b;
}

.mic-modal__header {
    margin-bottom: 2rem;
    text-align: center;
}

.mic-modal__title {
    font-size: 1.75rem;
    font-weight: var(--font-weight-bold);
    color: #d91e5b;
}

.mic-modal__body {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mic-modal__diagram {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid rgba(217, 30, 91, 0.2);
}

.mic-modal__diagram-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(217, 30, 91, 0.4);
    font-size: 1.2rem;
    font-weight: var(--font-weight-semibold);
}

.mic-modal__download {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: rgba(217, 30, 91, 0.1);
    border: 2px solid #d91e5b;
    border-radius: 50px;
    color: #d91e5b;
    font-size: 1rem;
    font-weight: var(--font-weight-semibold);
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
}

.mic-modal__download:hover {
    background: #d91e5b;
    color: #ffffff;
    box-shadow: 0 0 30px rgba(217, 30, 91, 0.4);
    transform: translateY(-2px);
}

.mic-modal__download svg {
    transition: transform 0.3s ease;
}

.mic-modal__download:hover svg {
    transform: translateY(2px);
}

/* ---------- Equipment Section ---------- */
.equipment-section {
    background-color: #2d3a45;
    padding: var(--spacing-2xl) 0;
}

.equipment-layout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-2xl);
    max-width: 1400px;
    margin: 0 auto;
}

.equipment-column {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

.equipment-block {
    background-color: transparent;
}

.equipment-block__title {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-semibold);
    color: var(--color-text-inverted);
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
}

.equipment-table {
    display: flex;
    flex-direction: column;
}

.equipment-table__header {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: var(--spacing-md);
    padding: var(--spacing-sm) 0;
    font-size: 0.75rem;
    font-weight: var(--font-weight-semibold);
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: var(--spacing-sm);
}

.equipment-table__row {
    display: grid;
    grid-template-columns: 60px 1fr auto;
    gap: var(--spacing-md);
    align-items: center;
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background-color var(--transition-fast);
}

.equipment-table__row:hover {
    background-color: rgba(255, 255, 255, 0.02);
}

.equipment-table__unit {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.6);
    font-weight: var(--font-weight-medium);
}

.equipment-table__model {
    font-size: var(--font-size-sm);
    color: var(--color-text-inverted);
    line-height: 1.5;
}

.equipment-table__btn {
    width: 24px;
    height: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: transparent;
    color: var(--color-text-inverted);
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all var(--transition-fast);
    opacity: 0.5;
}

.equipment-table__btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    opacity: 1;
}

/* Badge spacing in equipment tables */
.equipment-table__model .badge {
    margin-left: var(--spacing-xs);
}

/* ---------- Dolby Atmos Section ---------- */
.dolby-section {
    background: linear-gradient(180deg, #000000 0%, #0a0a0a 50%, #000000 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.dolby-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1200px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.08) 0%, transparent 70%);
    pointer-events: none;
    animation: pulseGlow 6s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.5;
        transform: translateX(-50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translateX(-50%) scale(1.1);
    }
}

.dolby-section__title {
    font-size: 4rem;
    font-weight: var(--font-weight-bold);
    color: #00D9FF;
    text-align: center;
    margin-bottom: 4rem;
    letter-spacing: -0.02em;
    text-shadow: 0 0 40px rgba(0, 217, 255, 0.6),
                 0 0 80px rgba(0, 217, 255, 0.4);
    animation: titleGlowCyan 3s ease-in-out infinite;
}

@keyframes titleGlowCyan {
    0%, 100% {
        text-shadow: 0 0 40px rgba(0, 217, 255, 0.6),
                     0 0 80px rgba(0, 217, 255, 0.4);
    }
    50% {
        text-shadow: 0 0 60px rgba(0, 217, 255, 0.8),
                     0 0 120px rgba(0, 217, 255, 0.5);
    }
}

/* Dolby Hero Video */
.dolby-hero {
    position: relative;
    max-width: 1200px;
    margin: 0 auto 5rem;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 0 60px rgba(0, 217, 255, 0.3),
                0 20px 80px rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(0, 217, 255, 0.3);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.dolby-hero:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 100px rgba(0, 217, 255, 0.5),
                0 30px 100px rgba(0, 0, 0, 0.8);
    border-color: rgba(0, 217, 255, 0.6);
}

.dolby-hero__video {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16/9;
}

.dolby-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(0, 0, 0, 0.3) 100%
    );
    pointer-events: none;
}

/* Dolby Devices */
.dolby-devices {
    margin-bottom: 6rem;
}

.dolby-devices__title {
    font-size: 3rem;
    font-weight: var(--font-weight-bold);
    color: #00D9FF;
    text-align: center;
    margin-bottom: 4rem;
    letter-spacing: -0.01em;
}

.dolby-devices__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.device-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: rgba(0, 217, 255, 0.02);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.device-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent,
        rgba(0, 217, 255, 0.1),
        transparent);
    transition: left 0.6s ease;
}

.device-card:hover::before {
    left: 100%;
}

.device-card:hover {
    transform: translateY(-12px);
    background: rgba(0, 217, 255, 0.05);
    border-color: rgba(0, 217, 255, 0.5);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4),
                0 0 80px rgba(0, 217, 255, 0.3);
}

.device-card__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    color: #00D9FF;
    position: relative;
    transition: all 0.4s ease;
}

.device-card__icon::before {
    content: '';
    position: absolute;
    inset: -15px;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: iconPulseCyan 2s ease-in-out infinite;
}

.device-card:hover .device-card__icon::before {
    opacity: 1;
}

@keyframes iconPulseCyan {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.6;
    }
}

.device-card:hover .device-card__icon {
    transform: scale(1.1);
    filter: drop-shadow(0 0 30px rgba(0, 217, 255, 0.8));
}

.device-card__name {
    font-size: 1.75rem;
    font-weight: var(--font-weight-bold);
    color: #00D9FF;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.device-card__description {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.device-card:hover .device-card__description {
    color: rgba(255, 255, 255, 0.9);
}

/* Dolby Works */
.dolby-works__title {
    font-size: 3rem;
    font-weight: var(--font-weight-bold);
    color: #00D9FF;
    text-align: center;
    margin-bottom: 4rem;
    letter-spacing: -0.01em;
}

.dolby-works__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.work-card {
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.work-card:hover {
    transform: translateY(-12px);
}

.work-card__cover {
    position: relative;
    aspect-ratio: 1;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(0, 217, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.work-card:hover .work-card__cover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6),
                0 0 80px rgba(0, 217, 255, 0.4);
    border-color: rgba(0, 217, 255, 0.6);
}

.work-card__cover img,
.work-card__placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.work-card__placeholder {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.work-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(0, 0, 0, 0.7) 100%
    );
    opacity: 0.6;
    transition: opacity 0.4s ease;
}

.work-card:hover .work-card__overlay {
    opacity: 0.3;
}

.work-card__badge {
    position: absolute;
    top: 2rem;
    right: -3rem;
    width: 200px;
    background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: var(--font-weight-bold);
    text-align: center;
    padding: 0.5rem 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transform: rotate(45deg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5),
                0 0 20px rgba(211, 47, 47, 0.4);
    z-index: 10;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(211, 47, 47, 0.6),
                    0 0 20px rgba(211, 47, 47, 0.3);
    }
    50% {
        box-shadow: 0 6px 16px rgba(211, 47, 47, 0.8),
                    0 0 30px rgba(211, 47, 47, 0.5);
    }
}

.work-card__artist {
    font-size: 1.5rem;
    font-weight: var(--font-weight-semibold);
    color: var(--color-text-inverted);
    margin-bottom: 1rem;
}

.work-card__btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: rgba(0, 217, 255, 0.1);
    border: 2px solid #00D9FF;
    color: #00D9FF;
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.work-card__btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(0, 217, 255, 0.3), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.work-card__btn:hover::before {
    transform: translateX(100%);
}

.work-card__btn:hover {
    background: #00D9FF;
    color: #000;
    box-shadow: 0 0 30px rgba(0, 217, 255, 0.6);
    transform: translateY(-2px);
}

.work-card__btn--disabled {
    background: rgba(100, 100, 100, 0.2);
    border-color: rgba(150, 150, 150, 0.4);
    color: rgba(150, 150, 150, 0.6);
    cursor: not-allowed;
    pointer-events: none;
}

.work-card__btn--disabled::before {
    display: none;
}

/* ---------- CTA Section ---------- */
.cta-section {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-section .heading-hero {
    color: var(--color-text-inverted);
    margin-bottom: var(--spacing-lg);
}

.cta-section__text {
    font-size: var(--font-size-lg);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--spacing-xl);
    line-height: var(--line-height-relaxed);
}

/* ---------- Responsive Adjustments ---------- */
@media screen and (max-width: 1024px) {
    .services-section {
        padding: 4rem 0;
    }

    .services-section__title {
        font-size: 2.25rem;
        margin-bottom: 3rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        padding: 0 1.5rem;
    }

    .service-card {
        padding: 2rem 1.25rem;
    }

    .service-card__icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.5rem;
    }

    .service-card__title {
        font-size: 1.5rem;
    }

    .equipment-layout {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }

    /* Legendary Mics Responsive */
    .legendary-mics-header__title {
        font-size: 3.5rem;
    }

    .legendary-mics-header__subtitle {
        font-size: 1.5rem;
    }

    .legendary-mics-carousel {
        padding: 0 4rem;
    }

    .legendary-mics-grid {
        gap: 2rem;
    }

    .mic-card__image {
        width: 120px;
        height: 200px;
    }

    .mic-card__btn {
        width: 35px;
        height: 35px;
        font-size: 1.3rem;
    }

    .carousel-btn {
        width: 50px;
        height: 50px;
        font-size: 2.5rem;
    }

    /* Dolby Section Responsive */
    .dolby-section {
        padding: 4rem 0;
    }

    .dolby-section__title {
        font-size: 3rem;
    }

    .dolby-devices__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .dolby-works__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media screen and (max-width: 768px) {
    .rg-hero {
        height: calc(100vh - var(--header-height));
        min-height: calc(100vh - var(--header-height));
    }

    .rg-hero__logo {
        max-width: 280px;
    }

    .studio-thumbs {
        gap: 0.75rem;
        max-width: 100%;
    }

    .studio-thumbs__item {
        width: 80px;
        height: 55px;
    }

    .studio-thumbs__placeholder {
        font-size: 0.5rem;
        padding: 0.3rem;
    }

    .lightbox__placeholder {
        min-width: 90vw;
        min-height: 300px;
        padding: 2rem;
    }

    .lightbox__close {
        top: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
        font-size: 2rem;
    }

    .lightbox__prev,
    .lightbox__next {
        width: 40px;
        height: 40px;
        font-size: 2rem;
    }

    .lightbox__prev {
        left: 0.5rem;
    }

    .lightbox__next {
        right: 0.5rem;
    }

    /* About Studio Video Responsive */
    .about-studio-section {
        min-height: 400px;
        padding: 4rem 0;
    }

    /* Legendary Mics Responsive */
    .legendary-mics-section {
        padding: 4rem 0;
    }

    .legendary-mics-header__title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .legendary-mics-header__subtitle {
        font-size: 1.25rem;
    }

    .legendary-mics-header {
        margin-bottom: 3rem;
    }

    .legendary-mics-carousel {
        padding: 0 3.5rem;
    }

    .legendary-mics-grid {
        gap: 1.5rem;
    }

    .mic-card__image {
        width: 100px;
        height: 170px;
    }

    .mic-card__btn {
        width: 32px;
        height: 32px;
        font-size: 1.2rem;
    }

    .mic-card__brand {
        font-size: 0.95rem;
    }

    .mic-card__model {
        font-size: 0.9rem;
    }

    .carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 2rem;
    }

    .carousel-btn--prev {
        left: 0.5rem;
    }

    .carousel-btn--next {
        right: 0.5rem;
    }

    .mic-modal__content {
        padding: 2rem;
    }

    .mic-modal__title {
        font-size: 1.5rem;
    }

    .services-section {
        padding: 3rem 0;
    }

    .services-section::before {
        width: 600px;
        height: 300px;
    }

    .services-section__title {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .service-card {
        padding: 1.75rem 1rem;
    }

    .service-card__icon {
        width: 64px;
        height: 64px;
        margin-bottom: 1.25rem;
    }

    .service-card__title {
        font-size: 1.25rem;
        margin-bottom: 1.25rem;
    }

    .service-card__list {
        line-height: 1.9;
    }

    .equipment-section {
        padding: var(--spacing-xl) 0;
    }

    .equipment-layout {
        gap: var(--spacing-lg);
    }

    .equipment-table__header {
        font-size: 0.625rem;
    }

    .equipment-table__row {
        grid-template-columns: 40px 1fr auto;
        gap: var(--spacing-sm);
    }

    .equipment-table__model {
        font-size: 0.8125rem;
    }

    /* Dolby Section Responsive */
    .dolby-section {
        padding: 3rem 0;
    }

    .dolby-section::before {
        width: 600px;
        height: 400px;
    }

    .dolby-section__title {
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }

    .dolby-hero {
        margin-bottom: 4rem;
        border-radius: 16px;
    }

    .dolby-devices,
    .dolby-works {
        margin-bottom: 4rem;
    }

    .dolby-devices__title,
    .dolby-works__title {
        font-size: 2.25rem;
        margin-bottom: 3rem;
    }

    .dolby-devices__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .dolby-works__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .device-card {
        padding: 2rem 1.25rem;
    }

    .work-card__cover {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media screen and (max-width: 480px) {
    .rg-hero__logo {
        max-width: 220px;
    }

    .rg-hero__description {
        font-size: var(--font-size-sm);
    }

    .studio-thumbs {
        gap: 0.5rem;
    }

    .studio-thumbs__item {
        width: 60px;
        height: 45px;
    }

    .studio-thumbs__placeholder {
        font-size: 0.45rem;
    }

    .lightbox__caption {
        font-size: 1rem;
    }

    /* About Studio Video Responsive */
    .about-studio-section {
        min-height: 300px;
        padding: 2.5rem 0;
    }

    .studio-intro {
        padding: 0 1rem;
    }

    .studio-intro__title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .studio-intro__text {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    /* Legendary Mics Responsive */
    .legendary-mics-section {
        padding: 3rem 0;
    }

    .legendary-mics-header__title {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }

    .legendary-mics-header__subtitle {
        font-size: 1rem;
    }

    .legendary-mics-header {
        margin-bottom: 2rem;
    }

    .legendary-mics-carousel {
        padding: 0 2.5rem;
    }

    .legendary-mics-grid {
        gap: 1rem;
    }

    .mic-card__image {
        width: 80px;
        height: 140px;
    }

    .mic-card__btn {
        width: 28px;
        height: 28px;
        font-size: 1rem;
    }

    .mic-card__brand {
        font-size: 0.8rem;
    }

    .mic-card__model {
        font-size: 0.75rem;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.8rem;
    }

    .carousel-btn--prev {
        left: 0.25rem;
    }

    .carousel-btn--next {
        right: 0.25rem;
    }

    .mic-modal__content {
        padding: 1.5rem;
        max-width: 95%;
    }

    .mic-modal__title {
        font-size: 1.25rem;
    }

    .mic-modal__body {
        gap: 1.5rem;
    }

    .mic-modal__download {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .services-section {
        padding: 2.5rem 0;
    }

    .services-section::before {
        width: 400px;
        height: 200px;
    }

    .services-section__title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }

    .services-grid {
        gap: 1.25rem;
    }

    .service-card {
        padding: 1.5rem 0.875rem;
    }

    .service-card__icon {
        width: 56px;
        height: 56px;
        margin-bottom: 1rem;
    }

    .service-card__title {
        font-size: 1.125rem;
        margin-bottom: 1rem;
    }

    .service-card__list {
        font-size: var(--font-size-sm);
        line-height: 1.8;
    }

    /* Dolby Section Responsive */
    .dolby-section {
        padding: 2.5rem 0;
    }

    .dolby-section::before {
        width: 400px;
        height: 300px;
    }

    .dolby-section__title {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }

    .dolby-hero {
        margin-bottom: 3rem;
        border-radius: 12px;
    }

    .dolby-devices,
    .dolby-works {
        margin-bottom: 3rem;
    }

    .dolby-devices__title,
    .dolby-works__title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }

    .dolby-devices__grid {
        gap: 1.25rem;
    }

    .dolby-works__grid {
        gap: 1.75rem;
    }

    .device-card {
        padding: 1.75rem 1rem;
    }

    .device-card__icon {
        width: 64px;
        height: 64px;
        margin-bottom: 1.25rem;
    }

    .device-card__name {
        font-size: 1.25rem;
    }

    .device-card__description {
        font-size: 0.875rem;
    }

    .work-card__cover {
        max-width: 320px;
        border-radius: 12px;
    }

    .work-card__artist {
        font-size: 1.25rem;
    }

    .work-card__btn {
        padding: 0.625rem 1.5rem;
        font-size: 0.8125rem;
    }
}
