/* Global CSS Variables & Theme Setup */
:root {
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Nunito', sans-serif;
    
    --bg-primary: #050508;
    --bg-secondary: #0c0d12;
    --bg-card: rgba(255, 255, 255, 0.02);
    --bg-input: rgba(255, 255, 255, 0.03);
    
    --text-primary: #ffffff;
    --text-secondary: #a0a4b8;
    --border-color: rgba(255, 255, 255, 0.08);
    
    --accent-blue: #00d2ff;
    --accent-purple: #9d4ede;
    --accent-orange: #f77f00;
    --accent-green: #06d6a0;
    --color-error: #e63946;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: text !important;
    -webkit-user-select: text !important;
    -moz-user-select: text !important;
    -ms-user-select: text !important;
}

html {
    scroll-behavior: smooth;
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
}

body {
    overflow-x: hidden;
    user-select: text !important;
    -webkit-user-select: text !important;
}

/* Base Headings & Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

p {
    line-height: 1.6;
    color: var(--text-secondary);
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

/* Button UI Components */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    outline: none;
}

/* Transparent Animated Glowing Border Buttons */
.btn-primary-glowing, .btn-nav-cta, .btn-mobile-cta, .btn-trigger-survey, .btn-erp-outline {
    background: rgba(12, 13, 18, 0.5) !important;
    border: 2px solid transparent !important;
    background-image: linear-gradient(rgba(12, 13, 18, 0.85), rgba(12, 13, 18, 0.85)), linear-gradient(135deg, #00d2ff 0%, #9d4ede 35%, #06d6a0 70%, #f77f00 100%) !important;
    background-origin: border-box !important;
    background-clip: padding-box, border-box !important;
    box-shadow: 0 0 15px rgba(0, 210, 255, 0.25);
    color: #ffffff !important;
    transition: all 0.4s ease;
}
.btn-primary-glowing:hover, .btn-nav-cta:hover, .btn-mobile-cta:hover, .btn-trigger-survey:hover, .btn-erp-outline:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(157, 78, 221, 0.5);
    background-image: linear-gradient(rgba(20, 22, 35, 0.95), rgba(20, 22, 35, 0.95)), linear-gradient(135deg, #06d6a0 0%, #00d2ff 35%, #9d4ede 70%, #f77f00 100%) !important;
}

.btn-secondary-outline {
    background: transparent;
    border: 2px solid var(--border-color);
    color: var(--text-primary);
}
.btn-secondary-outline:hover {
    border-color: var(--accent-blue);
    background: rgba(0, 210, 255, 0.05);
}

.btn-block {
    display: flex;
    width: 100%;
}

/* Badge System */
.badge {
    display: inline-block;
    padding: 4px 10px;
    font-size: 0.68rem;
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 0.1em;
    border-radius: 4px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.bg-bricht, .bg-bricht-tech { background: rgba(0, 210, 255, 0.15); color: var(--accent-blue); }
 .bg-bricht-creative { background: rgba(157, 78, 221, 0.15); color: var(--accent-purple); }
.bg-holding, .bg-bricht-ecosystem { background: rgba(247, 127, 0, 0.15); color: var(--accent-orange); }
.bg-bricht-mgmt { background: rgba(6, 214, 160, 0.15); color: var(--accent-green); }

/* Cinematic Splash Screen */
#opening-splash {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #020205;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.splash-phase {
    position: absolute;
    opacity: 0;
    transform: scale(0.95);
    visibility: hidden;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.splash-phase.active {
    opacity: 1;
    transform: scale(1);
    visibility: visible;
}

.logo-splash-bricht {
    font-family: 'Nunito', sans-serif !important;
    font-size: 5rem;
    font-weight: 900 !important;
    letter-spacing: 0.08em;
    background: linear-gradient(135deg, #00d2ff 0%, #9d4ede 35%, #06d6a0 70%, #00d2ff 100%);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: brichtSplashGlow 4s ease infinite;
    filter: drop-shadow(0 0 35px rgba(0, 210, 255, 0.45));
}

@keyframes brichtSplashGlow {
    0% { background-position: 0% 50%; filter: drop-shadow(0 0 35px rgba(0, 210, 255, 0.5)); }
    50% { background-position: 100% 50%; filter: drop-shadow(0 0 45px rgba(157, 78, 221, 0.6)); }
    100% { background-position: 0% 50%; filter: drop-shadow(0 0 35px rgba(0, 210, 255, 0.5)); }
}

.logo-splash-img {
    width: 200px;
    height: auto;
    filter: drop-shadow(0 0 25px rgba(157, 78, 221, 0.35));
    margin-bottom: 15px;
}

.logo-sub-splash {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5em;
    color: var(--text-secondary);
    margin-top: 10px;
    text-transform: uppercase;
}

.bricht-glow {
    color: #ffffff;
    filter: drop-shadow(0 0 10px rgba(157, 78, 221, 0.7));
}

.login-card-web {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: 20px;
    max-width: 480px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.splash-brand-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: 0.05em;
}

.splash-brand-sub {
    font-size: 0.75rem;
    letter-spacing: 0.4em;
    color: var(--accent-blue);
    margin-top: 5px;
}

.splash-brand-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple));
    margin: 20px 0;
    border-radius: 2px;
}

.splash-intro-text {
    font-size: 0.9rem;
    margin-bottom: 25px;
    line-height: 1.5;
}

.btn-splash-enter {
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-purple) 100%);
    border: none;
    color: #ffffff;
    padding: 14px 28px;
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 210, 255, 0.2);
}

.btn-splash-enter:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(157, 78, 221, 0.4);
}

#btn-skip-splash {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 0.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s;
}
#btn-skip-splash:hover {
    color: var(--text-primary);
}

/* Navbar Navigation */
.main-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    z-index: 1000;
    border-bottom: 1px solid transparent;
    transition: all 0.4s ease;
}

.main-navbar.scrolled {
    background: rgba(5, 5, 8, 0.85);
    backdrop-filter: blur(12px);
    border-bottom-color: var(--border-color);
}

.nav-container {
    max-width: 1200px;
    height: 100%;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
}

.font-bricht, .logo-bricht, .logo-splash-bricht, .splash-brand-title {
    font-family: 'Nunito', sans-serif !important;
    font-weight: 900 !important;
    letter-spacing: 0.04em;
}

.logo-bricht {
    color: #ffffff;
}

.logo-holding {
    color: var(--accent-blue);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    font-size: 0.9rem;
    font-weight: 600;
}

.nav-links a:hover {
    color: var(--accent-blue);
}

.nav-links a.active {
    color: var(--accent-blue);
}

.btn-nav-cta {
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-purple) 100%);
    padding: 8px 20px;
    border-radius: 20px;
    color: #ffffff !important;
}

.mobile-nav-toggle {
    display: none;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 1.4rem;
    cursor: pointer;
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #050508;
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
}

.btn-mobile-cta {
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-purple) 100%);
    padding: 12px 30px;
    border-radius: 30px;
    color: #ffffff !important;
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100vw;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

/* Hero Video Collage Background Grid */
.hero-video-collage {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.collage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    width: 100%;
    height: 100%;
    opacity: 0.28;
    filter: blur(6px) brightness(0.55);
    transform: scale(1.06);
}

.collage-grid video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-collage-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(5, 5, 8, 0.5) 0%, rgba(5, 5, 8, 0.92) 85%);
    backdrop-filter: blur(4px);
}

.hero-auras {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.aura {
    position: absolute;
    width: 45vw;
    height: 45vw;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.12;
}

.aura-blue {
    top: 10%;
    left: -10%;
    background-color: var(--accent-blue);
}

.aura-purple {
    bottom: 10%;
    right: -10%;
    background-color: var(--accent-purple);
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 840px;
    margin: 0 auto;
    text-align: center;
    padding: 0 24px;
}

.hero-tagline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 30px;
    font-size: 0.78rem;
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--accent-blue);
    margin-bottom: 24px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #00d2ff 25%, #9d4ede 50%, #06d6a0 75%, #ffffff 100%);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: heroTitleGlow 6s ease infinite;
    filter: drop-shadow(0 0 25px rgba(0, 210, 255, 0.3));
}

@keyframes heroTitleGlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 35px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.hero-ctas {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* Sections Global Layout */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px auto;
}

.section-tag {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    color: var(--accent-blue);
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

/* Consorcio / About Us Section */
.consorcio-section {
    background-color: var(--bg-secondary);
}

.consorcio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.consorcio-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 35px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.consorcio-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.consorcio-card.highlight-card {
    grid-column: span 2;
    border-color: rgba(6, 214, 160, 0.4);
    background: linear-gradient(135deg, rgba(6, 214, 160, 0.05) 0%, rgba(5, 5, 8, 0.4) 100%);
}

.card-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.4rem;
    margin-bottom: 24px;
}

.blue-glow { background: rgba(0, 210, 255, 0.1); color: var(--accent-blue); }
.purple-glow { background: rgba(157, 78, 221, 0.1); color: var(--accent-purple); }
.green-glow { background: rgba(6, 214, 160, 0.1); color: var(--accent-green); }
.orange-glow { background: rgba(247, 127, 0, 0.1); color: var(--accent-orange); }

.consorcio-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.consorcio-card p {
    font-size: 0.9rem;
}

.card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 0.65rem;
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-secondary);
}
.bg-green { color: var(--accent-green) !important; }

/* Netflix-style Carousels */
.netflix-row-container {
    margin-bottom: 45px;
    position: relative;
}

.row-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.color-cyan { color: var(--accent-blue); }
.color-purple { color: var(--accent-purple); }
.color-orange { color: var(--accent-orange); }

.netflix-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.netflix-carousel {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 10px 5px;
    width: 100%;
}

.netflix-carousel::-webkit-scrollbar {
    display: none;
}

.netflix-card {
    flex: 0 0 calc(33.33% - 11px);
    scroll-snap-align: start;
    background: transparent !important;
    border: none !important;
    border-radius: 12px;
    padding: 0 !important;
    min-height: 400px;
    perspective: 1000px;
    cursor: pointer;
}

.card-inner-flipper {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.netflix-card.flipped .card-inner-flipper {
    transform: rotateY(180deg);
}

.card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: border-color 0.3s;
}

.card-front {
    background: var(--bg-card);
    z-index: 2;
}

.netflix-card:hover .card-front {
    border-color: rgba(255,255,255,0.25);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.card-back {
    background: linear-gradient(135deg, #180914 0%, #0A0207 100%);
    transform: rotateY(180deg);
    z-index: 1;
    padding: 24px;
    border-color: rgba(0, 210, 255, 0.3);
    box-shadow: inset 0 0 20px rgba(0, 210, 255, 0.05);
}

.netflix-card.combo-card .card-front {
    border-color: rgba(247, 127, 0, 0.3);
    background: linear-gradient(135deg, rgba(247, 127, 0, 0.02) 0%, rgba(5, 5, 8, 0.4) 100%);
}

.netflix-card.elite-card .card-front {
    border-color: rgba(157, 78, 221, 0.3);
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.02) 0%, rgba(0, 210, 255, 0.02) 100%);
}

.card-inner-top h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    line-height: 1.3;
}

.card-desc {
    font-size: 0.82rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

.card-features-list {
    margin-bottom: 24px;
    font-size: 0.8rem;
    color: var(--text-secondary);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.card-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.4;
}

.card-features-list i {
    color: var(--accent-blue);
    font-size: 0.85rem;
    margin-top: 3px;
}

.card-inner-bottom {
    margin-top: auto;
    border-top: 1px solid var(--border-color);
    padding-top: 15px;
}

.netflix-pricing-block {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.price-val-box {
    display: flex;
    flex-direction: column;
}

.p-label {
    font-size: 0.65rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2px;
}

.p-val {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
}

.line-through {
    text-decoration: line-through;
    color: var(--text-secondary);
    opacity: 0.6;
}

.text-neon {
    color: var(--accent-blue);
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(5, 5, 8, 0.8);
    border: 1px solid var(--border-color);
    color: #ffffff;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    transition: all 0.3s;
}

.carousel-control:hover {
    background: var(--accent-blue);
    border-color: var(--accent-blue);
    color: #000000;
}

.carousel-control.prev { left: -20px; }
.carousel-control.next { right: -20px; }

.unit-pricing-trigger-container {
    text-align: center;
    margin-top: 35px;
}

/* Modals */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(2, 2, 5, 0.8);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 24px;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    width: 100%;
    max-width: 680px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 15px 50px rgba(0,0,0,0.6);
}

.modal-header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    font-size: 1.15rem;
}

.btn-close-modal {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 1.8rem;
    cursor: pointer;
    line-height: 1;
}

.modal-body {
    padding: 24px;
    overflow-x: auto;
}

.modal-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
}

.modal-table th, .modal-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.modal-table th {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-secondary);
}

.modal-table td strong {
    color: var(--accent-blue);
}

/* Portfolio Section */
.portafolio-section {
    background-color: var(--bg-secondary);
}

.portfolio-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.portfolio-item-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.portfolio-item-card:hover {
    border-color: rgba(255,255,255,0.15);
    transform: translateY(-3px);
}

.portfolio-comparative-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 180px;
    border-bottom: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.01);
    padding: 15px;
    gap: 10px;
}

.comparative-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    height: 100%;
    justify-content: center;
}

.comp-label {
    font-size: 0.62rem;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
    text-align: center;
}

.img-wrap-comp {
    width: 100%;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 8px;
    background: #ffffff; /* White background so both original and proposed logos show fully and clearly */
    border: 1px solid var(--border-color);
    padding: 8px; /* Safe space to prevent clipping */
}

.img-wrap-comp img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* Contain ensures full visibility */
}

.comparative-divider {
    font-size: 1rem;
    color: var(--accent-blue);
    opacity: 0.8;
    display: flex;
    align-items: center;
    height: 100%;
}

.portfolio-card-tag {
    display: inline-block;
    padding: 3px 8px;
    font-size: 0.62rem;
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 0.05em;
    border-radius: 4px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.portfolio-card-info {
    padding: 24px;
}

.portfolio-card-info h4 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.portfolio-desc-text {
    font-size: 0.82rem;
    line-height: 1.5;
}

/* Contact Section & Form */
.contacto-flex {
    display: flex;
    gap: 48px;
}

.contacto-info-column {
    flex: 1;
}

.contacto-info-column p {
    font-size: 1rem;
    margin-bottom: 35px;
}

.contacto-channels {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.channel-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.channel-item i {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(0, 210, 255, 0.1);
    color: var(--accent-blue);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.1rem;
}

.channel-item h5 {
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.channel-item p {
    font-size: 0.82rem;
    margin-bottom: 0;
}

.contacto-form-column {
    flex: 1.2;
}

.b2b-form {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.form-group label {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.form-group input, .form-group select {
    background-color: var(--bg-input);
    border: 1px solid var(--border-color);
    padding: 12px 16px;
    border-radius: 8px;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    transition: all 0.3s;
}

.form-group input:focus, .form-group select:focus {
    border-color: var(--accent-blue);
}

.form-success-msg {
    display: none;
    font-size: 0.85rem;
    color: var(--accent-green);
    text-align: center;
    line-height: 1.4;
}

/* Footer styles */
.corporate-footer {
    border-top: 1px solid var(--border-color);
    background-color: #020205;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 24px 30px 24px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-brand h4 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.footer-brand p {
    font-size: 0.8rem;
    max-width: 250px;
}

.footer-links-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 0.82rem;
}

.footer-links-group h5 {
    color: var(--text-secondary);
    font-size: 0.78rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.footer-links-group a:hover {
    color: var(--accent-blue);
}

.footer-links-group p {
    font-size: 0.82rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 25px;
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-secondary);
}

/* Floating widgets */
.whatsapp-floating {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s;
}

.whatsapp-floating:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

/* Media Queries (Responsive) */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .consorcio-grid {
        grid-template-columns: 1fr;
    }
    
    .consorcio-card.highlight-card {
        grid-column: span 1;
    }
    
    .netflix-card {
        flex: 0 0 calc(50% - 8px);
    }
    
    .portfolio-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contacto-flex {
        flex-direction: column;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-nav-toggle {
        display: block;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-ctas {
        flex-direction: column;
        gap: 12px;
    }
    
    .netflix-card {
        flex: 0 0 100%;
    }
    
    .portfolio-showcase-grid {
        grid-template-columns: 1fr;
    }
}

/* Multi-step Survey Wizard Styles */
.survey-step {
    display: none !important;
}
.survey-step.active {
    display: block !important;
    animation: fadeIn 0.4s ease-out;
}
.survey-step-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.step-num {
    font-size: 0.75rem;
    color: var(--accent-blue);
    background: rgba(0, 210, 255, 0.1);
    padding: 2px 8px;
    border-radius: 4px;
}
.survey-option-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.85rem;
}
.survey-option-card:hover {
    border-color: rgba(255,255,255,0.15);
}
.survey-option-card input[type="radio"] {
    accent-color: var(--accent-blue);
}
.survey-summary-box p {
    margin-bottom: 8px;
    color: var(--text-secondary);
}
.survey-summary-box p strong {
    color: var(--text-primary);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
}

/* Splash Ambient Glow & Dismiss Hint */
.splash-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60vw;
    height: 60vh;
    background: radial-gradient(circle, rgba(0, 210, 255, 0.12) 0%, rgba(157, 78, 221, 0.08) 50%, transparent 80%);
    filter: blur(80px);
    pointer-events: none;
    z-index: 1;
}

.splash-dismiss-hint {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 22px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    backdrop-filter: blur(12px);
    font-size: 0.82rem;
    color: var(--text-secondary);
    letter-spacing: 0.03em;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.splash-dismiss-hint:hover {
    background: rgba(0, 210, 255, 0.12);
    border-color: var(--accent-blue);
    color: #ffffff;
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.3);
}

/* Dynamic Video Portfolio Grid Styles */
.video-filter-bar {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 35px;
}

.video-filter-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 8px 18px;
    border-radius: 20px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-filter-btn:hover {
    color: var(--text-primary);
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-2px);
}

.video-filter-btn.active {
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-purple) 100%);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(157, 78, 221, 0.35);
}

.video-portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 20px;
}

.video-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.video-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 210, 255, 0.4);
    box-shadow: 0 12px 30px rgba(0, 210, 255, 0.15);
}

.video-thumb-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000000;
    overflow: hidden;
}

.video-hover-preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.video-card:hover .video-hover-preview {
    transform: scale(1.05);
}

.video-play-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 48px;
    height: 48px;
    background: rgba(0, 0, 0, 0.6);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.1rem;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
    z-index: 2;
}

.video-card:hover .video-play-badge {
    transform: translate(-50%, -50%) scale(1.1);
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-purple) 100%);
    border-color: transparent;
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.6);
}

.video-category-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 3;
    backdrop-filter: blur(8px);
}

.video-card-meta {
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.video-card-meta h4 {
    font-size: 0.98rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.video-client {
    font-size: 0.75rem;
    color: var(--accent-blue);
    font-weight: 600;
    margin-top: 4px;
}

.video-desc {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 8px;
    line-height: 1.45;
}

/* Fullscreen Cinema Player Modal */
.cinema-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(2, 2, 5, 0.94);
    backdrop-filter: blur(20px);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 24px;
}

.cinema-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cinema-modal-container {
    width: 100%;
    max-width: 1050px;
    background: #090b10;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(0, 210, 255, 0.15);
    display: flex;
    flex-direction: column;
    transform: scale(0.92);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.cinema-modal-overlay.active .cinema-modal-container {
    transform: scale(1);
}

.cinema-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid var(--border-color);
}

.cinema-info h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    margin-top: 4px;
}

.cinema-info p {
    font-size: 0.78rem;
    color: var(--text-secondary);
}

.btn-close-cinema {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border-color);
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-close-cinema:hover {
    background: rgba(230, 57, 70, 0.2);
    border-color: var(--color-error);
    color: var(--color-error);
    transform: rotate(90deg);
}

.cinema-player-wrapper {
    position: relative;
    width: 100%;
    height: 70vh;
    max-height: 750px;
    background: #020205;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

#cinema-video-player {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: 100%;
    object-fit: contain;
    outline: none;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.9);
}

.cinema-modal-footer {
    padding: 14px 24px;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: center;
}

.cinema-shortcuts {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.cinema-shortcuts kbd {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    padding: 2px 6px;
    font-family: monospace;
    color: var(--accent-blue);
}

/* ERP Launch Countdown Modal Styling */
.erp-countdown-card {
    max-width: 580px;
    background: rgba(10, 12, 22, 0.95) !important;
    border: 2px solid transparent !important;
    background-image: linear-gradient(rgba(10, 12, 22, 0.95), rgba(10, 12, 22, 0.95)), linear-gradient(135deg, #00d2ff, #9d4ede, #06d6a0) !important;
    background-origin: border-box !important;
    background-clip: padding-box, border-box !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(0, 210, 255, 0.3);
    border-radius: 20px;
}

.erp-modal-tag {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--accent-blue);
    letter-spacing: 0.08em;
}

.erp-modal-content {
    padding: 30px 24px;
    text-align: center;
}

.erp-badge-glow {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(0, 210, 255, 0.12);
    border: 1px solid rgba(0, 210, 255, 0.3);
    border-radius: 20px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.75rem;
    color: var(--accent-blue);
    letter-spacing: 0.1em;
    margin-bottom: 15px;
}

.erp-coming-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    background: linear-gradient(135deg, #00d2ff 0%, #9d4ede 50%, #06d6a0 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: brichtSplashGlow 4s ease infinite;
    margin-bottom: 8px;
}

.erp-coming-subtitle {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 25px;
}

.erp-countdown-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
}

.countdown-unit {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 210, 255, 0.2);
    border-radius: 12px;
    padding: 14px 18px;
    min-width: 85px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.count-val {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
}

.count-lbl {
    display: block;
    font-size: 0.65rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--accent-blue);
    letter-spacing: 0.1em;
    margin-top: 6px;
}

.countdown-separator {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-blue);
    margin-top: -12px;
}

.erp-launch-date {
    background: rgba(6, 214, 160, 0.08);
    border: 1px solid rgba(6, 214, 160, 0.25);
    padding: 12px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    color: #ffffff;
    display: inline-block;
    margin-bottom: 25px;
}

.erp-brand-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 20px;
}

.logo-bricht-erp {
    font-size: 2rem;
    filter: drop-shadow(0 0 15px rgba(0, 210, 255, 0.4));
}

.logo-sub-erp {
    font-size: 0.7rem;
    font-family: var(--font-heading);
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    margin-top: 4px;
}
