/* 
 * ORTHO IMAGEN DIGITAL - MASTER DESIGN SYSTEM
 * Fusionando paridad visual de home.html con Arquitectura Semántica
 * -------------------------------------------------------------
 */

:root {
    --primary: #006876;
    --primary-light: #00bcd4;
    --slate-900: #0f172a;
    --slate-800: #1e293b;
    --slate-400: #94a3b8;
    --white-glass: rgba(255, 255, 255, 0.6);
}

html, body {
    width: 100%;
    max-width: 100vw !important;
    overflow-x: hidden !important;
    position: relative !important;
    margin: 0;
    padding: 0;
}

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
}

/* --- GLOBAL COMPONENTS --- */

/* Estilo Premium (Nosotros Style) */
.callout-glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(165, 243, 252, 0.5); /* Borde cian sutil */
    border-radius: 1.5rem;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.callout-glass:hover {
    transform: scale(1.05) translateY(-5px);
    border-color: rgba(6, 182, 212, 0.4);
    box-shadow: 0 20px 50px -15px rgba(0, 0, 0, 0.1);
}

.callout-badge {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 24px;
    height: 24px;
    background: #10b981; /* Verde esmeralda */
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(16, 185, 129, 0.3);
    font-size: 14px;
    font-weight: bold;
}

.clinical-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 2rem;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.clinical-card h3 {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--slate-800);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.clinical-card p {
    font-size: 0.875rem;
    font-weight: 300;
    color: var(--slate-500);
    line-height: 1.6;
    flex-grow: 1;
}

.clinical-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 80px rgba(0, 104, 118, 0.08);
    background: white;
}

.clinical-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2.5rem;
    transition: all 0.5s ease;
}

/* --- SECTION HEADERS --- */
.section-title {
    font-size: 2.25rem;
    font-weight: 300;
    color: var(--slate-900);
    margin-bottom: 1rem;
    line-height: 1.1;
}

.section-desc {
    font-size: 1.125rem;
    font-weight: 300;
    color: var(--slate-500);
    max-width: 28rem;
}

.clinical-link {
    margin-top: auto;
    padding-top: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-family: 'Manrope', sans-serif;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: all 0.3s ease;
}

.clinical-link:hover {
    gap: 0.8rem;
    color: var(--primary-light);
}

/* --- CORE LAYOUT & BACKGROUNDS --- */

.aura-blob {
    filter: blur(100px);
    opacity: 0.15;
    z-index: -1;
    will-change: transform;
    position: absolute;
}

.glass-card {
    background: var(--white-glass);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- HERO COMPONENTS --- */

.hero-video-container {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: contrast(1.1) saturate(1.2) brightness(1.02);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradiente cinemático: Cian translúcido a Slate-900 profundo */
    background: linear-gradient(135deg, rgba(0, 104, 118, 0.3) 0%, rgba(15, 23, 42, 0.6) 100%);
    z-index: 0;
}

.hero-text-overlay {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    padding: 0 1rem; /* Reset de padding ya que el header sticky empuja el contenido */
    width: 100%;
    max-width: 1200px;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 9999px;
    font-family: 'Manrope', sans-serif;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.3em;
    color: var(--primary-light);
    margin-bottom: 2rem;
    text-transform: uppercase;
}



.hero-title {
    font-size: clamp(3.5rem, 12vw, 8rem);
    font-weight: 100;
    line-height: 0.95;
    margin-bottom: 2.5rem;
    letter-spacing: -0.05em;
    color: white;
}

.hero-title span {
    font-weight: 700;
    font-style: italic;
    background: linear-gradient(to right, var(--primary-light), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(236, 254, 255, 0.7);
    max-width: 42rem;
    margin: 0 auto 2.5rem auto;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
}

.cta-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 100;
    line-height: 1.1;
    color: var(--slate-900);
    margin-bottom: 2rem;
    letter-spacing: -0.03em;
}

.cta-title span {
    font-weight: 700;
    font-style: italic;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-description {
    font-size: 1.125rem;
    font-weight: 300;
    color: var(--slate-600);
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 600px;
}

/* --- BUTTON SYSTEM --- */

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #007c89 0%, #00bcd4 100%); /* Degradado exacto */
    color: white;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 9999px; /* Estilo píldora */
    box-shadow: 0 10px 20px rgba(0, 124, 137, 0.2);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0, 124, 137, 0.3);
    filter: brightness(1.1);
}

.btn-glass {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: white; /* Blanco sólido como en la imagen */
    color: var(--primary);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 9999px; /* Estilo píldora */
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-glass:hover {
    background: var(--slate-50);
    transform: translateY(-2px);
}

/* --- SCROLLYTELLING REFINEMENTS --- */

.scrolly-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary-light);
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    display: block;
}

.scrolly-heading {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 300;
    line-height: 1.1;
    color: white;
}

.scrolly-heading span.highlight {
    color: var(--primary-light);
    font-style: italic;
}

/* --- FOOTER REFINEMENTS --- */

.footer-nav-link {
    font-size: 14px;
    color: var(--slate-400);
    transition: all 0.3s ease;
    display: inline-block;
    padding: 0.25rem 0;
}

.footer-nav-link:hover {
    color: var(--primary-light);
    transform: translateX(5px);
}

/* --- TRUST & AUTHORITY SECTION --- */

.section-title {
    font-size: 3rem;
    font-weight: 300;
    color: var(--slate-900);
}

.section-subtitle {
    color: rgba(6, 182, 212, 0.4);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    font-size: 8px;
    margin-bottom: 1rem;
    display: block;
}

.hud-label {
    font-family: 'Manrope', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
}

/* --- BRANCHES SECTION --- */

.branches-section {
    padding: 10rem 0;
    overflow: hidden;
    background: #f8fafc;
}

.carousel-wrapper {
    position: relative;
    width: 100%;
}

.branch-carousel {
    display: flex;
    align-items: center;
    gap: 3rem;
    overflow-x: auto;
    padding-top: 5rem;
    padding-bottom: 5rem;
    width: 100%;
    position: relative;
    padding-left: 0;
    padding-right: 0;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.branch-carousel::-webkit-scrollbar {
    display: none;
}

.branch-item {
    min-width: 320px;
    scroll-snap-align: center;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    opacity: 0.5;
    filter: grayscale(1);
    transform: scale(0.9);
    transform-origin: center center;
    will-change: transform, opacity;
}

.branch-item.branch-card--active {
    opacity: 1;
    filter: grayscale(0);
    transform: scale(1.05);
    z-index: 50;
}

.clinical-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 50px rgba(0, 104, 118, 0.04);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.clinical-card:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateY(-8px) scale(1.01);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(0, 188, 212, 0.2);
    box-shadow: 0 30px 60px rgba(0, 104, 118, 0.08);
}

.clinical-card p {
    color: var(--slate-600); /* Contraste mejorado */
    line-height: 1.7;
    font-weight: 300;
}

.branch-title {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--slate-800);
    margin-bottom: 0.25rem;
}

.branch-label {
    font-family: 'Manrope', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-weight: 800;
    font-size: 9px;
    color: var(--primary);
    margin-bottom: 0.5rem;
    display: block;
}

.branch-info-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1.5rem;
}

.branch-info-badge {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 1rem;
    background: rgba(241, 245, 249, 0.5);
    border-radius: 1rem;
    font-size: 10px;
    font-weight: 600;
    color: var(--slate-600);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.4s ease;
}

.branch-info-badge span:first-child {
    font-size: 16px;
    color: var(--primary-light);
}

.branch-item.branch-card--active .branch-card {
    background: white;
    border-color: var(--primary-light);
    box-shadow: 0 30px 60px rgba(0, 104, 118, 0.1);
}

.branch-item.branch-card--active .branch-info-badge {
    background: white;
    color: var(--slate-900);
    border-color: rgba(6, 182, 212, 0.2);
}

.branch-cta {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 10px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Controles del Carrusel */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 4rem;
    height: 4rem;
    border-radius: 9999px;
    background: white;
    border: 1px solid rgba(0, 188, 212, 0.1);
    box-shadow: 0 10px 25px rgba(0, 104, 118, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    cursor: pointer;
    z-index: 100;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.carousel-nav:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 15px 35px rgba(0, 188, 212, 0.3);
}

.carousel-nav.prev {
    left: 2rem;
}

.carousel-nav.next {
    right: 2rem;
}

.carousel-nav span {
    font-size: 20px;
}

@media (max-width: 768px) {
    .carousel-nav {
        display: none; /* Ocultar en móvil para scroll táctil */
    }
}

/* --- TRUST & AUTHORITY SECTION --- */

.visual-anchor-container {
    position: absolute;
    top: 30%;
    right: -5%;
    width: 45%;
    max-width: 600px;
    z-index: 0;
    pointer-events: none;
    will-change: transform;
}

.visual-anchor {
    width: 100%;
    height: auto;
    opacity: 0.35;
    filter: drop-shadow(0 0 30px rgba(0, 188, 212, 0.2));
    mix-blend-mode: normal;
    will-change: transform, opacity;
}

@media (max-width: 768px) {
    .visual-anchor-container {
        width: 60%;
        right: -10%;
        top: 40%;
    }
    .visual-anchor {
        opacity: 0.2;
    }
}

@media (max-width: 768px) {
    .visual-anchor {
        width: 50%;
        right: -5%;
        opacity: 0.05;
    }
}

.trust-card-interactive::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(600px circle at var(--mouse-x) var(--mouse-y), rgba(0, 188, 212, 0.15), transparent 40%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
    z-index: 5;
}

.trust-card-interactive:hover::after {
    opacity: 1;
}

.clinical-card:hover .clinical-icon {
    background: var(--primary);
    color: white;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 20px rgba(0, 188, 212, 0.2);
}

.trust-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: rgba(0, 188, 212, 0.05);
    border-radius: 9999px;
    font-size: 10px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 10;
}

/* --- CALL TO ACTION (ENRICHED) --- */

.cta-section {
    background: #ffffff;
    border-top: 1px solid rgba(0, 188, 212, 0.1);
    position: relative;
    overflow-x: hidden; /* Solo recortar horizontal, no vertical */
}

.cta-visual-group {
    position: relative;
    z-index: 1;
}

.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.cta-aura {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(0, 188, 212, 0.15) 0%, rgba(0, 188, 212, 0.05) 40%, transparent 70%);
    z-index: 0;
    filter: blur(40px);
    pointer-events: none;
}

.cta-image-wrapper {
    position: relative;
    border-radius: 3.5rem;
    overflow: hidden;
    box-shadow: 0 40px 100px -20px rgba(0, 104, 118, 0.15);
    border: 1px solid rgba(0, 188, 212, 0.1);
    perspective: 1000px;
    will-change: transform;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta-visual-group:hover .cta-image-wrapper {
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
}

.cta-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.cta-testimonial {
    position: absolute;
    bottom: 3rem;
    right: -3rem;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 1.8rem 2.2rem;
    border-radius: 1.8rem;
    box-shadow: 0 30px 60px -10px rgba(0, 104, 118, 0.2);
    max-width: 280px;
    z-index: 20;
    border: 1px solid rgba(255, 255, 255, 0.8);
    will-change: transform;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta-visual-group:hover .cta-testimonial {
    transform: translate(-10px, -15px) scale(1.05);
}

.cta-testimonial p {
    font-size: 0.85rem;
    color: var(--slate-600);
    line-height: 1.5;
    font-style: italic;
    margin-bottom: 0.5rem;
}

.cta-testimonial span {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--primary);
    letter-spacing: 0.1em;
}

@media (max-width: 1024px) {
    .cta-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .cta-image-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }
    .cta-testimonial {
        right: 1rem;
    }
}

/* --- HEADER & NAVIGATION --- */

.nav-clinical {
    position: fixed;
    top: 0;
    left: 0 !important;
    width: 100vw !important;
    max-width: 100vw !important;
    z-index: 50; 
    background: white; 
    border-bottom: 1px solid rgba(0, 188, 212, 0.1);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 0;
    overflow: hidden !important;
}

/* Espaciado para páginas que NO son el inicio */
body.not-home main {
    width: 100% !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
    position: relative;
}

.nav-link {
    font-family: 'Manrope', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
    font-size: 11px;
    color: var(--slate-800);
    padding-bottom: 8px; /* Más espacio para el subrayado */
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px; /* Pequeño desfase hacia abajo */
    left: 0;
    width: 0;
    height: 2px;
    background-color: #00bcd4; 
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-link:hover::after, 
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover, 
.nav-link.active {
    color: var(--primary);
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 200;
    letter-spacing: -0.02em;
    color: var(--primary);
    transition: color 0.4s ease;
}

.nav-logo b {
    font-weight: 700;
}

/* --- SCROLLYTELLING --- */

#intro-scrolly {
    background-color: #000;
    position: relative;
    z-index: 100;
    width: 100% !important;
    max-width: 100vw !important;
    overflow: hidden !important;
}

.scrolly-window {
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

#scrolly-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(1.15) saturate(1.2) brightness(1.05);
    will-change: transform, filter;
}

.scrolly-overlay {
    position: absolute;
    inset: 0;
    /* Color Grading Cinematográfico: Centro claro, bordes con tinte clínico y vignette profundo */
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 104, 118, 0.15) 50%, rgba(0, 0, 0, 0.85) 100%);
    z-index: 105;
}

.scrolly-text-container {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 110;
}

.scrolly-step-text {
    position: absolute;
    text-align: center;
    color: white;
    width: 100%;
    max-width: 800px;
    padding: 0 2rem;
    opacity: 0;
    transform: translateY(30px);
}

.scrolly-heading {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 200;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.scrolly-label {
    font-family: 'Manrope', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 0.75rem;
    color: var(--primary-light);
    margin-bottom: 1rem;
    display: block;
}

/* --- FOOTER COMPONENTS --- */

.footer-clinical {
    position: relative;
    width: 100%;
    padding-top: 6rem;
    padding-bottom: 6rem;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.footer-title {
    font-family: 'Manrope', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 800;
    font-size: 10px;
    color: var(--primary);
    margin-bottom: 2rem;
    display: block;
    opacity: 0.6;
}

.footer-nav-link {
    font-family: 'Manrope', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
    font-size: 11px;
    color: var(--slate-800);
    opacity: 0.5;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-block;
    padding: 0.25rem 0;
}

.footer-nav-link:hover {
    color: var(--primary);
    opacity: 1;
    transform: translateX(8px);
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--slate-400);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary);
    color: white;
    opacity: 1;
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.footer-copy {
    font-family: 'Manrope', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-weight: 600;
    font-size: 9px;
    color: #cbd5e1;
    text-align: center;
}

/* --- HELPERS --- */
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

/* --- SECCIÓN CTA: NUEVA ERA --- */

.cta-clinical-atmosphere {
    position: relative;
    background: #ffffff;
    overflow: hidden;
    padding: 10rem 0;
}

/* Manchas de color dinámicas (Mesh) */
.mesh-blob {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 9999px;
    filter: blur(80px);
    opacity: 0.15;
    z-index: 1;
    pointer-events: none;
}

.mesh-1 { background: var(--primary); top: -200px; left: -100px; }
.mesh-2 { background: #10b981; bottom: -200px; right: -100px; }

.scanner-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 188, 212, 0.4), transparent);
    z-index: 2;
    pointer-events: none;
}

.holographic-text {
    background: linear-gradient(
        120deg, 
        #00bcd4 30%, 
        #ffffff 50%, 
        #00bcd4 70%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 4s linear infinite;
}

@keyframes shine {
    to { background-position: 200% center; }
}

.btn-magnetic {
    display: inline-block;
    transition: transform 0.2s cubic-bezier(0.33, 1, 0.68, 1);
}

.glass-floating {
    position: absolute;
    padding: 1.25rem 1.75rem;
    background: rgba(255, 255, 255, 0.08); /* Más opacidad para visibilidad */
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 188, 212, 0.25); /* Borde más nítido */
    border-radius: 1.25rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05), inset 0 0 20px rgba(0, 188, 212, 0.05);
    pointer-events: none;
    z-index: 5;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.float-icon {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 20px;
    height: 20px;
    background: #10b981; /* Verde esmeralda de tu imagen */
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    box-shadow: 0 4px 10px rgba(16, 185, 129, 0.3);
}

.glass-floating .label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.25em;
    color: #008ba3; /* Color más profundo para lectura */
    text-transform: uppercase;
}

.glass-floating .value {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: #474747;
}

.clinical-card {
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.clinical-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 188, 212, 0.1);
}

/* Efecto de brillo interactivo (Glow) */
.clinical-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(0, 188, 212, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.clinical-card:hover::after {
    opacity: 1;
}

.text-reveal-line {
    display: block;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.text-reveal-content {
    display: block;
    transform: translateY(100%);
    opacity: 0;
}

/* Ajuste para botón móvil sobre fondo claro */
.nav-clinical button.lg\:hidden {
    color: var(--slate-900);
    transition: color 0.4s ease;
}

/* 10. Footer Moderno */
.footer-clinical {
    @apply py-24 relative overflow-hidden border-t border-slate-100;
    background: linear-gradient(to bottom, #ffffff, #f1f5f9);
}

.footer-title {
    @apply text-[10px] font-black tracking-[0.2em] text-cyan-500 uppercase mb-6 block;
}

.footer-nav-link {
    @apply text-slate-500 font-light text-sm hover:text-cyan-500 transition-colors;
}

.footer-copy {
    @apply text-[10px] font-bold tracking-[0.2em] text-slate-400 uppercase text-center;
}

.social-link {
    @apply w-10 h-10 rounded-full bg-slate-100 flex items-center justify-center text-slate-400 hover:bg-cyan-500 hover:text-white transition-all;
}

/* Callout Estilo Lujo (Nosotros Style) */
.callout-glass {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(165, 243, 252, 0.6);
    border-radius: 1.25rem;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 10px 40px -10px rgba(0, 188, 212, 0.1);
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.callout-glass:hover {
    transform: scale(1.05) translateY(-5px);
    border-color: rgba(6, 182, 212, 0.4);
    box-shadow: 0 20px 50px -15px rgba(0, 188, 212, 0.2);
}

.callout-badge {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 24px;
    height: 24px;
    background: #10b981;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(16, 185, 129, 0.3);
    z-index: 10;
}

.callout-badge span {
    font-size: 16px;
    font-weight: bold;
}


/* Efecto de Revelado Circular (Portal Reveal) */
.reveal-portal-container {
    clip-path: circle(0% at 50% 50%);
    transition: none; /* Controlado por GSAP */
}

/* --- COMPONENTES REUTILIZABLES (CSS PURO PARA COMPATIBILIDAD) --- */

.section-label {
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.4em;
    color: #06b6d4; /* cyan-500 */
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
}

.section-title-premium {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    color: #0f172a; /* slate-900 */
    line-height: 1.1;
}

.equipment-frame {
    position: relative;
    z-index: 10;
    overflow: hidden;
    border-radius: 3rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    background-color: #f8fafc; /* slate-50 */
    aspect-ratio: 4 / 5;
    max-height: 500px;
}

.equipment-tag-pill {
    padding: 0.5rem 1rem;
    background-color: #f8fafc;
    border-radius: 9999px;
    border: 1px solid #f1f5f9;
    font-size: 10px;
    font-weight: 700;
    color: #64748b; /* slate-500 */
}

.equipment-description {
    color: #64748b;
    font-size: 1.125rem;
    font-weight: 300;
    line-height: 1.625;
    margin-bottom: 2rem;
}

/* --- COMPONENTES DEL HERO --- */
.hero-clinical-hub {
    position: relative;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #f8fafc;
    padding-bottom: 5rem;
}

.hero-badge-status {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    border: 1px solid #e2e8f0;
    background-color: #ffffff;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.hero-display-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 100;
    color: #1e293b;
    line-height: 1.25;
    margin-bottom: 2rem;
    letter-spacing: -0.025em;
}

/* --- COMPONENTES DE PESTAÑAS (TABS) --- */
.tab-nav-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
}

.tab-btn-luxury {
    padding: 1rem 2rem;
    border-radius: 9999px;
    border: 2px solid transparent;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.tab-btn-luxury.active {
    border-color: #06b6d4;
    background-color: #06b6d4;
    color: #ffffff;
}

.tab-btn-luxury.inactive {
    border-color: #e2e8f0;
    color: #64748b;
    background-color: #ffffff;
}

.tab-btn-luxury.inactive:hover {
    border-color: #a5f3fc;
}

/* --- COMPONENTES DE TARJETAS DE ESTUDIO --- */
.study-card-luxury {
    padding: 2.5rem;
    background-color: #ffffff;
    border-radius: 2.5rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.study-card-luxury:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 188, 212, 0.15);
    border-color: #cffafe;
    transform: translateY(-0.5rem);
}

.study-card-title {
    font-weight: 700;
    color: #1e293b;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.study-card-body {
    font-size: 0.75rem;
    color: #94a3b8;
    font-weight: 300;
    line-height: 1.625;
    margin-bottom: 1.5rem;
}

.study-card-link {
    font-size: 9px;
    font-weight: 700;
    color: #0891b2;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: color 0.2s;
}

/* --- COMPONENTES DE PILARES DE VALOR --- */
.clinical-pilar-card {
    padding: 3rem;
    background-color: #ffffff;
    border-radius: 3rem;
    border: 1px solid #f1f5f9;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.clinical-pilar-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.clinical-pilar-card-featured {
    padding: 3rem;
    background-color: #ffffff;
    border-radius: 3rem;
    border: 1px solid #cffafe;
    box-shadow: 0 30px 60px -15px rgba(0, 188, 212, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    transform: scale(1.05);
    z-index: 10;
}

.pilar-number {
    color: #0891b2;
    font-weight: 700;
    font-size: 0.75rem;
    display: block;
    margin-bottom: 1.5rem;
}

.pilar-title {
    font-size: 1.875rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.pilar-body {
    color: #64748b;
    font-size: 0.875rem;
    font-weight: 300;
    line-height: 1.625;
    margin-bottom: 2.5rem;
}


/* --- COMPONENTES DEL BOOKING JOURNEY (RESERVA) --- */

.selection-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background-color: #ffffff;
    border-radius: 2rem;
    border: 1px solid #f1f5f9;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.selection-card:hover {
    border-color: #cffafe;
    box-shadow: 0 20px 40px -15px rgba(0, 188, 212, 0.1);
    transform: scale(1.02);
}

.selection-card.selected {
    border-color: #06b6d4;
    background-color: #f0fdfa;
}

.summary-item {
    transition: all 0.5s ease;
}

.summary-item.completed {
    opacity: 1 !important;
}

.summary-item.completed p {
    color: #0891b2 !important;
}

/* Navegación del Stepper */
.step-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    color: #94a3b8;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 60px;
}

.step-nav-item.active {
    color: #0891b2;
}

.step-nav-item span:first-child {
    font-size: 1.5rem;
}

/* Transiciones de Pasos */
.booking-step {
    transition: all 0.5s ease;
    height: 100%;
}

.booking-step.hidden {
    display: none;
    pointer-events: none;
}

/* Scrollbar Personalizada */
.custom-scrollbar::-webkit-scrollbar {
    width: 6px;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: transparent;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #e2e8f0;
    border-radius: 10px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: #cbd5e1;
}


/* Capas de Profundidad */
.layer-depth-back {
    will-change: transform;
    filter: blur(80px);
}





.layer-depth-front {
    will-change: transform;
}

/* --- COMPONENTES DE ACCESOS DIRECTOS (HERO) --- */
.hero-shortcut-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background-color: #ffffff;
    border-radius: 1.25rem;
    border: 1px solid #f1f5f9;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.hero-shortcut-btn:hover {
    border-color: #22d3ee; /* cyan-400 */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.hero-shortcut-icon {
    color: #94a3b8; /* slate-400 */
    transition: color 0.3s;
}

.hero-shortcut-btn:hover .hero-shortcut-icon {
    color: #0891b2; /* cyan-600 */
}

.hero-shortcut-text {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #64748b; /* slate-500 */
    text-transform: uppercase;
    transition: color 0.3s;
}

.hero-shortcut-btn:hover .hero-shortcut-text {
    color: #0f172a; /* slate-900 */
}

/* --- BANNER DE SEGURIDAD (DARK MODE CLINICAL) --- */
.safety-banner-premium {
    background-color: #0f172a; /* slate-900 */
    border-radius: 4rem;
    padding: 5rem;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .safety-banner-premium {
        padding: 3rem 1.5rem;
        border-radius: 2.5rem;
    }
}

.safety-glow-effect {
    position: absolute;
    top: -6rem;
    right: -6rem;
    width: 24rem;
    height: 24rem;
    background-color: rgba(6, 182, 212, 0.2); /* cyan-500/20 */
    filter: blur(120px);
    border-radius: 9999px;
}

.safety-accent-line {
    width: 3rem;
    height: 1px;
    background-color: #22d3ee;
    display: block;
    margin-bottom: 2rem;
}

/* --- UTILIDADES DE LAYOUT --- */
.equipment-row-grid {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: 6rem;
    margin-bottom: 12rem;
}

@media (min-width: 1024px) {
    .equipment-row-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Categorías de Estudios (Circular Icons) */
.category-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 70px;
}

.cat-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.category-btn:hover .cat-circle {
    transform: translateY(-4px);
    border-color: #06b6d4;
    color: #06b6d4;
}

.selection-card.selected, .selection-card-mini.selected {
    background-color: #ecfeff !important;
    border-color: #0891b2 !important;
    transform: scale(1.02);
    box-shadow: 0 10px 15px -3px rgba(8, 145, 178, 0.1);
}

.selection-card-mini {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background-color: #ffffff;
    border-radius: 1.25rem;
    border: 1px solid #f1f5f9;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.selection-card-mini:hover {
    border-color: #22d3ee;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.category-btn.active .cat-circle {
    background-color: #0891b2;
    border-color: #0891b2;
    color: #ffffff;
    box-shadow: 0 10px 15px -3px rgba(8, 145, 178, 0.3);
}

.cat-label {
    font-size: 8px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #64748b;
    text-align: center;
    line-height: 1.2;
}

.category-btn.active .cat-label {
    color: #0891b2;
}





/* --- CAP�TULO 1: EQUIPAMIENTO CIN�TICO --- */
.equipment-showcase {
    background: radial-gradient(circle at top right, #f8fafc 0%, #ffffff 100%);
    overflow: hidden;
}

.kinetic-frame {
    position: relative;
    width: 100%;
    max-width: 600px;
    aspect-ratio: 4/5;
    background: #f1f5f9;
    border-radius: 3rem;
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
}

.equipment-main-img {
    width: 90%;
    height: auto;
    object-fit: contain;
    z-index: 2;
    filter: drop-shadow(0 20px 50px rgba(0,0,0,0.1));
}

.equipment-ghost-layer {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    z-index: 1;
    opacity: 0.1;
    filter: blur(20px) brightness(1.2);
    pointer-events: none;
    mix-blend-mode: multiply;
}

.tech-scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, transparent, #06b6d4, transparent);
    z-index: 3;
    opacity: 0;
    pointer-events: none;
}

.kinetic-frame:hover .tech-scan-line {
    opacity: 0.6;
    animation: scanVertical 3s infinite linear;
}

@keyframes scanVertical {
    0% { top: 0%; }
    100% { top: 100%; }
}

.tech-data-tag {
    position: absolute;
    padding: 0.75rem 1.25rem;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}


/* --- INTENSIFICACI�N KINETIC (Ajuste CAP 1) --- */
.equipment-ghost-layer {
    opacity: 0.4 !important; /* M�s visible */
    filter: blur(12px) brightness(1.2) saturate(1.8) !important; 
    mix-blend-mode: multiply !important;
}

.main-layer {
    filter: drop-shadow(0 30px 60px rgba(0, 104, 118, 0.15)) !important;
}


/* --- CAP�TULO 1: EFECTO ENSAMBLAJE (Estilo Automotive) --- */
.reveal-side-left {
    opacity: 0;
    transform: translateX(-100px);
    transition: none;
}

.reveal-side-right {
    opacity: 0;
    transform: translateX(100px);
    transition: none;
}

.reveal-mask {
    clip-path: inset(100% 0 0 0); /* Oculto desde abajo */
}

.tech-data-tag {
    opacity: 0;
    transform: scale(0.5);
}


/* --- CAP�TULO 1: REFINAMIENTO �PTICO --- */
.lens-focus-initial {
    filter: blur(15px) brightness(0.8);
    transform: scale(1.1) translateX(-100px); /* Para la izquierda */
}

.reveal-side-right.lens-focus-initial {
    transform: scale(1.1) translateX(100px); /* Para la derecha */
}

/* Efecto de Brillo (Gloss Sweep) */
.kinetic-frame::after {
    content: "";
    position: absolute;
    top: 0; left: -150%;
    width: 50%; height: 100%;
    background: linear-gradient(
        to right,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transform: skewX(-25deg);
    pointer-events: none;
    z-index: 10;
}

.kinetic-frame.gloss-active::after {
    left: 150%;
    transition: left 1s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Contenedor para el Tilt 3D */
.magnetic-wrap {
    perspective: 1000px;
    transition: transform 0.1s ease-out;
}


/* --- CAP�TULO 1: MINIMAL PREMIUM CATALOG --- */
.premium-reveal {
    opacity: 1;
    transform: translateY(0);
}

.premium-line-guide {
    position: absolute;
    left: -40px;
    top: 0;
    width: 2px;
    height: 0;
    background: #06b6d4; /* Cian */
    transition: height 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.equipment-item.is-visible .premium-line-guide {
    height: 100%;
}

.equipment-main-img {
    filter: none !important; /* Limpiamos desenfoques */
    box-shadow: 0 50px 100px -20px rgba(0,0,0,0.1); /* Sombra elegante y suave */
}


/* Variante para lnea gua derecha */
.premium-line-guide.line-right {
    left: auto;
    right: -40px; /* Separacin simtrica */
}


/* tem 4: Inmersin IA */
.equipment-item-full {
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.ia-bg-visual {
    position: absolute;
    right: 0;
    top: 0;
    width: 65vw;
    height: 100%;
    z-index: 0;
    clip-path: inset(0 0 0 100%); /* Estado inicial: cerrado */
    transition: clip-path 1.8s cubic-bezier(0.19, 1, 0.22, 1); will-change: clip-path;
}

.equipment-item-full.is-visible .ia-bg-visual {
    clip-path: inset(0 0 0 0); /* Estado final: abierto */
}

.ia-visual-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.2);
    transition: transform 10s linear;
}

.equipment-item-full.is-visible .ia-visual-img {
    transform: scale(1); /* Efecto de zoom lento */
}

.ia-gradient-mask {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 15%, rgba(255,255,255,0.9) 35%, rgba(255,255,255,0) 100%);
    z-index: 1;
}


/* Refinamiento Propuesta A: Studio Gallery */
.studio-gallery-container {
    background: #f8fafc; /* Slate-50 for distinct frame contrast */
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
    box-shadow: 0 50px 100px -20px rgba(0,0,0,0.03), 0 30px 60px -30px rgba(0,0,0,0.05);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.studio-gallery-container:hover {
    background: #ffffff;
    box-shadow: 0 70px 120px -20px rgba(0,0,0,0.06), 0 40px 80px -30px rgba(0,0,0,0.1);
}

.studio-backdrop-aura {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.12) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.studio-img-wrap {
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(255,255,255,0.5); /* Subtle inner matting */
    border-radius: 3rem;
}

.equipment-item:hover .studio-img-wrap {
    transform: scale(1.02); /* More subtle scale to preserve frame air */
}

.studio-tech-tag {
    position: absolute;
    bottom: 2.5rem;
    left: 2.5rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.85rem 1.75rem;
    border-radius: 1.25rem;
    border: 1px solid rgba(226, 232, 240, 0.6);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.25em;
    color: #475569;
    z-index: 10;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

/* CTA Styles for CRO Optimization */
.btn-editorial-cta {
    display: inline-block !important;
    padding: 1rem 2.5rem !important;
    background: transparent !important;
    border: 1px solid #0891b2 !important;
    color: #0891b2 !important;
    border-radius: 9999px !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    letter-spacing: 0.2em !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    margin-top: 1rem;
}

.btn-editorial-cta:hover {
    background: #0891b2 !important;
    color: #ffffff !important;
    box-shadow: 0 15px 30px rgba(8, 145, 178, 0.2) !important;
    transform: translateY(-3px) !important;
}

.btn-primary-cinematic {
    display: inline-flex !important;
    align-items: center !important;
    background: #0891b2 !important;
    color: #ffffff !important;
    padding: 1.25rem 3rem !important;
    border-radius: 1.5rem !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    box-shadow: 0 20px 40px rgba(8, 145, 178, 0.3) !important;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.btn-primary-cinematic:hover {
    background: #0e7490 !important;
    transform: scale(1.05) translateY(-5px) !important;
    box-shadow: 0 30px 60px rgba(8, 145, 178, 0.4) !important;
}

/* Mobile Optimizations for Proposal B */
@media (max-width: 768px) {
    .ia-bg-visual {
        width: 100vw !important;
        left: 0 !important;
        right: 0 !important;
        opacity: 0.6;
    }
    
    .ia-gradient-mask {
        background: linear-gradient(to bottom, 
            rgba(255,255,255,1) 0%, 
            rgba(255,255,255,0.9) 30%, 
            rgba(255,255,255,0.7) 100%
        ) !important;
    }

    .equipment-item-full .text-6xl {
        font-size: 3.5rem !important;
        line-height: 1.1 !important;
    }

    .equipment-item-full .text-xl {
        font-size: 1.1rem !important;
        line-height: 1.6 !important;
        color: #1e293b !important; /* Darker slate for better contrast */
    }

    .equipment-item-full .container {
        padding-top: 5rem !important;
        padding-bottom: 5rem !important;
    }
}
\n