:root {
    --brand-kro: #CD6961;
    --brand-aqua: #9C3429;
    --bg-dark-footer: black; 
    --bg-body: #ffffff;
    --bg-light: #f9f9f9;
    --text-main: #2c1a1a;
    --text-muted: #665a5a;
    --shadow-soft: 0 10px 30px rgba(0,0,0,0.08);
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-body);
    color: var(--text-main);
    margin: 0; padding: 0; overflow-x: hidden;
}

#main-content { 
    opacity: 0; 
    transition: opacity 1s ease; 
}

h1, h2, h3, h4 { 
    margin: 0; 
    font-weight: 700; 
    color: var(--text-main); 
}

p { 
    color: var(--text-muted); 
    line-height: 1.6; 
    font-weight: 400; 
    margin-bottom: 20px; 
}

a { 
    text-decoration: none; 
    color: inherit; 
    transition: 0.3s; 
}

.container { 
    max-width: 1280px; 
    margin: 0 auto; 
    padding: 0 40px; 
    position: relative; 
}

header {
    padding: 30px 8%; 
    position: absolute; 
    width: 100%; 
    box-sizing: border-box; 
    z-index: 100;
    display: flex; 
    justify-content: space-between; 
    align-items: center;
}

header .nav-link {
    color: #ffffff !important;
    opacity: 0.9;
}
header .nav-link:hover {
    color: var(--brand-kro) !important;
    opacity: 1;
}

.logo img { 
    width: 160px; 
    display: block; 
}

.hero-video-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: center; 
    overflow: hidden;
    color: white;
    background-color: #3e0505 !important;
    box-sizing: border-box;
    padding-top: 120px; 
    padding-bottom: 50px;
}

.video-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 0;
    transition: opacity 0.5s ease; 
    opacity: 0; 
}

.video-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: radial-gradient(circle, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.6) 100%);
    z-index: 1;
}

.hero-content-center {
    position: relative;
    z-index: 10;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 90%; 
    max-width: 1400px;
}

.hero-tag {
    font-size: clamp(10px, 1.5vw, 16px);
    font-weight: 800;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2vh;
    display: block;
}

.hero-title-center {
    font-size: clamp(40px, 9vw, 120px);
    line-height: 0.9;
    font-weight: 900; 
    margin-bottom: 3vh;
    text-transform: uppercase;
    color: white;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
    white-space: nowrap;
}

.hero-desc-center {
    font-size: clamp(14px, 2vw, 22px);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 5vh;
    font-weight: 300;
    max-width: 80%;
    line-height: 1.5;
}

.btn-hero-center {
    display: inline-block;
    padding: 1em 2.5em; 
    font-size: clamp(12px, 1.2vw, 18px);
    background: white; 
    color: #9C3429; 
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px; 
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.btn-hero-center:hover {
    transform: translateY(-5px) scale(1.05);
    background: #9C3429; 
    color: white;
}

#canvas-container {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    z-index: 5; pointer-events: none;
}

.brands-carousel-section {
    padding: 120px 0 120px;
    text-align: center;
    position: relative;
}
        
.section-header { 
    font-size: 2rem; 
    margin-bottom: 40px; 
    color: var(--text-main); 
    text-transform: uppercase; 
    letter-spacing: 1px; 
}

.carousel-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    display: flex; align-items: center; justify-content: center;
}

.brand-track {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px;
    scrollbar-width: none;
    width: 100%;
}

.brand-track::-webkit-scrollbar { 
    display: none; 
}

.brand-satellite {
    min-width: 180px; 
    height: 180px;
    background: white;
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 3px solid transparent;
    position: relative;
}

.brand-satellite img {
    max-width: 80%; 
    max-height: 80px; 
    object-fit: contain;
    margin-bottom: 10px;
    filter: grayscale(100%); 
    opacity: 0.6; 
    transition: 0.3s;
}

.brand-label {
    font-size: 0.9rem; 
    font-weight: 700; 
    color: var(--text-muted);
    text-transform: uppercase; 
    letter-spacing: 1px;
}

.brand-satellite:hover { 
    transform: translateY(-5px); 
    box-shadow: 0 15px 35px rgba(156, 52, 41, 0.15); 
}

.brand-satellite:hover img { 
    filter: grayscale(0%); 
    opacity: 1; 
}

.brand-satellite.active {
    border-color: var(--brand-aqua);
    box-shadow: 0 15px 35px rgba(156, 52, 41, 0.2);
    transform: translateY(-5px);
}

.brand-satellite.active img { 
    filter: grayscale(0%); 
    opacity: 1; 
    transform: scale(1.1); 
}

.brand-satellite.active .brand-label { 
    color: var(--brand-aqua); 
}

.nav-arrow-brand {
    width: 45px; 
    height: 45px; 
    border-radius: 50%;
    background: var(--brand-kro); 
    color: white; 
    border: none;
    font-size: 1.2rem; 
    display: flex; 
    align-items: center; 
    justify-content: center;
    cursor: pointer; 
    box-shadow: 0 5px 15px rgba(156, 52, 41, 0.3);
    transition: 0.3s; 
    flex-shrink: 0; 
    z-index: 10;
}
        
.nav-arrow-brand:hover { 
    background: var(--brand-aqua); 
    transform: scale(1.1); 
}

.detail-panel {
    background-color: var(--bg-light);
    position: relative; 
    overflow: hidden;
    border-top: 1px solid #eee;
    min-height: 600px;
    display: flex; 
    align-items: center;
    padding-bottom: 12%;
}

.bg-watermark {
    position: absolute; 
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%);
    font-size: 18vw; 
    font-weight: 900; 
    color: rgba(156, 52, 41, 0.03);
    z-index: 0; 
    pointer-events: none; 
    user-select: none;
}

.detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px; 
    align-items: center;
    position: relative; 
    z-index: 1;
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 40px;
}

.col-left { 
    text-align: right; 
    padding-right: 20px; 
}

.detail-logo { 
    height: 70px; 
    margin-bottom: 20px; 
    display: inline-block; 
}

.detail-desc { 
    font-size: 1.3rem; 
    color: var(--text-muted); 
    margin-bottom: 30px; 
}

.cta-link {
    color: var(--brand-aqua); 
    font-weight: 700; 
    text-transform: uppercase;
    border-bottom: 2px solid var(--brand-aqua); 
    padding-bottom: 5px;
    font-size: 1.3rem; 
    letter-spacing: 1px; 
    cursor: pointer;
}

.cta-link:hover { 
    color: var(--brand-kro); 
    border-color: var(--brand-kro); 
}

.col-center {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center; 
    justify-content: center;
    padding-top: 60px; 
}

.center-glow {
    position: absolute; 
    width: 300px; 
    height: 300px; 
    top: 50%; 
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(156, 52, 41, 0.15) 0%, transparent 70%);
    z-index: -1;
}

.worker-img {
    max-height: 100%; 
    width: auto;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.2));
    z-index: 1;
    transform: translateY(20px); 
}

.col-right { 
    text-align: left; 
    padding-left: 20px;  
    padding-top: 15%;
}

.features-list {
    list-style: none; 
    padding: 0; 
}

.feature-item { 
    margin-bottom: 30px; 
    position: relative; 
}

.feature-label { 
    font-size: 1.3rem; 
    font-weight: 700; 
    color: var(--text-main); 
    margin-bottom: 5px; 
    display: block; 
}

.feature-text { 
    font-size: 1.3rem; 
    color: var(--text-muted); 
}

.feature-item::before {
    content: ''; 
    position: absolute; 
    left: -20px; 
    top: 10px;
    width: 10px; 
    height: 2px; 
    background: var(--brand-kro);
}

footer { 
    padding: 40px; 
    text-align: center; 
    color: var(--text-muted); 
    font-size: 0.9rem; 
    border-top: 1px solid #eee; 
    background: white; 
}

.gallery-section {
    position: relative;
    background-color: var(--brand-aqua);
    padding: 0 0 100px 0;
    color: white;
    text-align: center;
    margin-top: -2px;
}

.curve-top {
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.curve-top svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 100px;
}

.curve-top .shape-fill {
    fill: var(--brand-aqua);
}

.gallery-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
    padding-top: 40px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

.app-screenshot-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    transition: 0.3s;
    height: 250px;
}

.app-screenshot-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 30px 50px rgba(0,0,0,0.3);
}

.app-screenshot-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

footer {
    padding: 80px 0 40px;
    background-color: var(--bg-dark-footer);
    color: #999;
    text-align: center;
    border-top: none;
}

.footer-grid {
    display: flex;
    justify-content: center;
    gap: 100px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto 60px;
    text-align: left;
}

.footer-col {
    min-width: 200px;
}

.footer-col h4 {
    color: white;
    margin-bottom: 25px;
    font-size: 1.1rem;
    font-weight: 700;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    color: #999;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: var(--brand-kro);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #999;
    margin-bottom: 15px;
}

.contact-item svg {
    width: 20px;
    height: 20px;
    stroke: white;
    stroke-width: 2;
    fill: none;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

 #scrollTopBtn { 
    position: fixed; 
    bottom: 30px; 
    right: 30px; 
    width: 50px; 
    height: 50px; 
    background-color: white; 
    border: 2px solid var(--brand-aqua); 
    color: var(--brand-aqua); 
    border-radius: 50%; 
    cursor: pointer; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    z-index: 1000; 
    transition: all 0.3s ease; 
    opacity: 0; 
    visibility: hidden; 
    box-shadow: 0 4px 10px rgba(0,0,0,0.1); 
}

#scrollTopBtn svg { 
    width: 24px; 
    height: 24px; 
}

#scrollTopBtn.show { 
    opacity: 1; 
    visibility: visible; 
    transform: translateY(0); 
}

#scrollTopBtn:hover { 
    background-color: var(--brand-aqua); 
    color: white; 
    transform: translateY(-5px); 
    box-shadow: 0 8px 15px rgba(156, 52, 41, 0.3); 
}

.brands-wheel-section {
    position: relative;
    width: 100%;
    height: 900px; 
    background: radial-gradient(circle at 70% 50%, #2b0b0b 0%, #050505 80%);
    color: white;
    overflow: hidden;
    display: flex;
    align-items: center; 
    border-top: 1px solid rgba(156, 52, 41, 0.1);
}

.brands-wheel-section .section-header {
    color: white !important;
    font-weight: 800;
}

.brands-wheel-section .section-tag {
    color: var(--brand-kro);
    font-weight: 800;
    letter-spacing: 4px;
}

.brand-info-card h3 { 
    color: white !important;
}
.brand-info-card p { 
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 300;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 0.6;
}

.ambient-glow {
    position: absolute;
    top: 50%; right: -10%;
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(156, 52, 41, 0.15) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.brands-wheel-section input[type="radio"] { display: none; }

.wheel-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    position: relative; z-index: 5;
}

.info-side {
    margin-top: 11%;
    width: 40%;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-tag {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--brand-aqua);
    letter-spacing: 4px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.section-header {
    font-size: 4rem;
    margin: 0 0 50px 0;
    text-align: left;
    color: var(--text-main);
    line-height: 1;
    font-weight: 800;
}

.info-cards-container {
    position: relative;
    width: 100%;
    height: 400px; 
}

.brand-info-card {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    opacity: 0; visibility: hidden;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    transform: translateY(20px);
}

.brand-info-card h3 { 
    font-size: 2.2rem; 
    margin-bottom: 15px; 
    text-transform: uppercase; 
    font-weight: 800; 
}

.brand-info-card p { 
    font-size: 1.1rem; 
    color: #555; 
    margin-bottom: 30px; 
    max-width: 95%; 
    line-height: 1.6; 
}

.wheel-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: var(--brand-aqua); 
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    box-shadow: 0 10px 20px rgba(156, 52, 41, 0.3);
    transition: all 0.3s ease;
    margin-bottom: 40px;
    border: none;
}
.wheel-btn span { transition: 0.3s; }
.wheel-btn:hover {
    transform: translateY(-3px);
    background: var(--brand-kro); 
    box-shadow: 0 15px 30px rgba(156, 52, 41, 0.4);
}
.wheel-btn:hover span { transform: translateX(5px); }

.btn-aqua { background-color: #0090D4; }
.btn-antenna { background-color: #FF5200; }
.btn-securitas { background-color: red; }

.mini-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    width: 100%;
    max-width: 480px;
}

.gallery-thumb {
    height: 100px;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.gallery-thumb img {
    width: 100%; height: 100%; object-fit: cover; display: block;
}

.gallery-thumb:hover {
    transform: scale(1.05);
    border-color: var(--brand-kro);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.wheel-side {
    width: 55%;
    position: relative;
    height: 100%;
    display: block; 
}

.wheel-glow {
    position: absolute;
    top: 50%; left: 60%;
    transform: translate(-50%, -50%);
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(156, 52, 41, 0.08) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.wheel-center-hub, .wheel-circle {
    position: absolute;
    top: 50%; 
    left: 60%;
    transform: translate(-50%, -50%);
}

.wheel-center-hub {
    width: 200px; height: 200px;
    z-index: 5;
    display: flex; align-items: center; justify-content: center;
    background: #ffffff;
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.8);
    border: none;
    border-radius: 50%;
    pointer-events: none;
}

.center-logo {
    position: absolute;
    max-width: 70%; max-height: 70%;
    opacity: 0; transition: 0.3s; transform: scale(0.9);
}

.c-logo-locked { font-size: 3rem; opacity: 0; color: #eee; }

.wheel-circle {
    width: 500px; height: 500px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,0.08);
    list-style: none; padding: 0; margin: 0;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    z-index: 2;
    border-color: rgba(255, 255, 255, 0.1);
}

.wheel-item {
    position: absolute;
    top: 50%; left: 50%;
    width: 70px; height: 70px;
    margin-left: -35px; margin-top: -35px;
    transform: rotate(calc(var(--i) * 45deg)) translate(250px) rotate(calc(var(--i) * -45deg));
}

.wheel-item label { display: block; width: 100%; height: 100%; cursor: pointer; }

.icon-rotator {
    width: 70px; height: 70px;
    border-radius: 50%;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: flex; align-items: center; justify-content: center;
    border: 2px solid transparent;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.3s, box-shadow 0.3s;
}
.icon-rotator img { width: 55%; height: 55%; object-fit: contain; }

#w-opt-1:checked ~ .container .wheel-side .wheel-circle li[style*="--i:0"] .icon-rotator,
#w-opt-2:checked ~ .container .wheel-side .wheel-circle li[style*="--i:1"] .icon-rotator,
#w-opt-3:checked ~ .container .wheel-side .wheel-circle li[style*="--i:2"] .icon-rotator,
#w-opt-4:checked ~ .container .wheel-side .wheel-circle li[style*="--i:3"] .icon-rotator {
    border-color: var(--brand-aqua);
    transform: scale(1.2);
    box-shadow: 0 10px 25px rgba(156, 52, 41, 0.2);
}

.wheel-item label:hover .icon-rotator { transform: scale(1.1); box-shadow: 0 8px 20px rgba(0,0,0,0.15); }
.wheel-item.locked .icon-rotator { background: #f5f5f5; color: #ccc; font-size: 1.5rem; box-shadow: none; }

#w-opt-1:checked ~ .container .wheel-side .wheel-circle { transform: translate(-50%, -50%) rotate(180deg); }
#w-opt-2:checked ~ .container .wheel-side .wheel-circle { transform: translate(-50%, -50%) rotate(135deg); }
#w-opt-3:checked ~ .container .wheel-side .wheel-circle { transform: translate(-50%, -50%) rotate(90deg); }
#w-opt-4:checked ~ .container .wheel-side .wheel-circle { transform: translate(-50%, -50%) rotate(45deg); }
#w-opt-5:checked ~ .container .wheel-side .wheel-circle { transform: translate(-50%, -50%) rotate(0deg); }
#w-opt-6:checked ~ .container .wheel-side .wheel-circle { transform: translate(-50%, -50%) rotate(-45deg); }
#w-opt-7:checked ~ .container .wheel-side .wheel-circle { transform: translate(-50%, -50%) rotate(-90deg); }
#w-opt-8:checked ~ .container .wheel-side .wheel-circle { transform: translate(-50%, -50%) rotate(-135deg); }

#w-opt-1:checked ~ .container .wheel-side .icon-rotator { transform: rotate(-180deg); }
#w-opt-2:checked ~ .container .wheel-side .icon-rotator { transform: rotate(-135deg); }
#w-opt-3:checked ~ .container .wheel-side .icon-rotator { transform: rotate(-90deg); }
#w-opt-4:checked ~ .container .wheel-side .icon-rotator { transform: rotate(-45deg); }
#w-opt-5:checked ~ .container .wheel-side .icon-rotator { transform: rotate(0deg); }
#w-opt-6:checked ~ .container .wheel-side .icon-rotator { transform: rotate(45deg); }
#w-opt-7:checked ~ .container .wheel-side .icon-rotator { transform: rotate(90deg); }
#w-opt-8:checked ~ .container .wheel-side .icon-rotator { transform: rotate(135deg); }

#w-opt-1:checked ~ .container .wheel-side .wheel-circle li[style*="--i:0"] .icon-rotator { transform: rotate(-180deg) scale(1.2); }
#w-opt-2:checked ~ .container .wheel-side .wheel-circle li[style*="--i:1"] .icon-rotator { transform: rotate(-135deg) scale(1.2); }
#w-opt-3:checked ~ .container .wheel-side .wheel-circle li[style*="--i:2"] .icon-rotator { transform: rotate(-90deg) scale(1.2); }
#w-opt-4:checked ~ .container .wheel-side .wheel-circle li[style*="--i:3"] .icon-rotator { transform: rotate(-45deg) scale(1.2); }

#w-opt-1:checked ~ .container .info-side #info-1,
#w-opt-2:checked ~ .container .info-side #info-2,
#w-opt-3:checked ~ .container .info-side #info-3 {
    opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto;
}
#w-opt-4:checked ~ .container .info-side .locked-msg,
#w-opt-5:checked ~ .container .info-side .locked-msg,
#w-opt-6:checked ~ .container .info-side .locked-msg,
#w-opt-7:checked ~ .container .info-side .locked-msg,
#w-opt-8:checked ~ .container .info-side .locked-msg {
    opacity: 1; visibility: visible; transform: translateY(0);
}

#w-opt-1:checked ~ .container .wheel-side .c-logo-1,
#w-opt-2:checked ~ .container .wheel-side .c-logo-2,
#w-opt-3:checked ~ .container .wheel-side .c-logo-3 {
    opacity: 1; transform: scale(1);
}
#w-opt-4:checked ~ .container .wheel-side .c-logo-locked,
#w-opt-5:checked ~ .container .wheel-side .c-logo-locked,
#w-opt-6:checked ~ .container .wheel-side .c-logo-locked,
#w-opt-7:checked ~ .container .wheel-side .c-logo-locked,
#w-opt-8:checked ~ .container .wheel-side .c-logo-locked {
    opacity: 0.5;
    transform: scale(1);
}

.mini-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    width: 100%;
    max-width: 500px;
    margin-top: 25px;
}

.gallery-thumb {
    height: 90px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid rgba(0,0,0,0.05);
    background-color: white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.gallery-thumb:hover {
    transform: translateY(-3px);
    border-color: var(--brand-kro);
    box-shadow: 0 8px 20px rgba(156, 52, 41, 0.2);
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.banner-cta-section {
    position: relative;
    width: 100%;
    padding: 250px 0; 
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background-color: #111;
}

@keyframes breathingZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.15); }
}

.banner-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
    animation: breathingZoom 20s ease-in-out infinite alternate;
}

.banner-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: radial-gradient(circle, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.9) 100%);
    z-index: 1;
    backdrop-filter: blur(3px); 
}

.banner-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.banner-content h2 {
    font-size: 3rem;
    line-height: 1.2;
    color: white;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 0 4px 10px #000000; 
}

.highlight-gold {
    color: var(--brand-kro);
    font-weight: 900;
    text-shadow: 2px 2px 0px #000, 0 0 20px rgba(205, 105, 97, 0.5);
    text-transform: uppercase;
}

.banner-content p {
    font-size: 1.2rem;
    color: #f0f0f0;
    font-weight: 400;
    margin: 0 auto;
    max-width: 700px;
    text-shadow: 0 2px 5px #000000;
}

.value-prop-section {
    height: auto;
    padding: 85px 0 !important;
    background-color: var(--bg-body);
    overflow: hidden;
    position: relative;
}

.prop-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; 
    gap: 60px;
    align-items: center;
}

.visual-card-bg {
    width: 100%;
    height: 380px; 
    border-radius: 30px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background: radial-gradient(circle at 50% 50%, #3e1212 0%, #000000 100%) !important;
    background-image: none; 
    border: 1px solid rgba(156, 52, 41, 0.2) !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5) !important;
    transition: transform 0.4s ease;
    z-index: 1;
}

.prop-img {
    position: absolute;
    width: 200px !important; 
    max-height: 420px !important; 
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    transform-origin: center bottom;
    object-fit: cover;
    border: 3px solid #1a1a1a;
    background: #1a1a1a;
}

.card-left {
    z-index: 2;
    transform: translateX(-35px) translateY(15px) rotate(-8deg) scale(0.9);
    filter: brightness(0.6);
}

.card-right {
    z-index: 1;
    transform: translateX(35px) translateY(15px) rotate(8deg) scale(0.9);
    filter: brightness(0.6);
}

.card-center {
    z-index: 3;
    transform: translateY(5px) scale(1);
    filter: brightness(1);
    box-shadow: 0 25px 50px rgba(0,0,0,0.35);
}

.visual-card-bg:hover .card-left {
    transform: translateX(-50px) translateY(-5px) rotate(-12deg) scale(0.92);
    filter: brightness(0.8);
}
.visual-card-bg:hover .card-right {
    transform: translateX(50px) translateY(-5px) rotate(12deg) scale(0.92);
    filter: brightness(0.8);
}
.visual-card-bg:hover .card-center {
    transform: translateY(-20px) scale(1.05);
}

.prop-text {
    position: relative;
    z-index: 2;
    padding-left: 10px;
}

.prop-text h2 {
    font-size: 2.8rem; 
    line-height: 1.1;
    color: var(--text-main);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    font-weight: 800;
}

.prop-highlight {
    font-size: 1.1rem;
    color: var(--brand-aqua);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.5;
    border-left: 3px solid var(--brand-kro);
    padding-left: 15px;
}

.prop-desc {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
    line-height: 1.6;
}

.value-prop-section {
    padding: 140px 0;
    background-color: var(--bg-body);
    overflow: hidden;
    position: relative;
}

.prop-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.visual-card-bg {
    width: 100%;
    height: 550px;
    border-radius: 40px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--brand-aqua);
    background-image: 
        radial-gradient(rgba(255,255,255,0.1) 2px, transparent 2px),
        linear-gradient(135deg, var(--brand-kro) 0%, #7a2219 100%);
    background-size: 30px 30px, 100% 100%;
    box-shadow: 
    0 30px 60px rgba(156, 52, 41, 0.25),
    inset 0 0 0 1px rgba(255,255,255,0.1);
    transition: transform 0.4s ease;
    z-index: 1;
}

.prop-img {
    position: absolute;
    width: 250px;
    height: auto;
    max-height: 500px;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    transform-origin: center bottom;
    object-fit: cover;
    border: 4px solid #1a1a1a;
    background: #1a1a1a;
}

.card-left {
    z-index: 2;
    transform: translateX(-40px) translateY(20px) rotate(-10deg) scale(0.9);
    filter: brightness(0.6);
}

.card-right {
    z-index: 1;
    transform: translateX(40px) translateY(20px) rotate(10deg) scale(0.9);
    filter: brightness(0.6);
}

.card-center {
    z-index: 3;
    transform: translateY(0) scale(1);
    filter: brightness(1);
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.visual-card-bg:hover .card-left {
    transform: translateX(-60px) translateY(-10px) rotate(-15deg) scale(0.92);
    filter: brightness(0.8);
    box-shadow: -10px 20px 40px rgba(0,0,0,0.3);
}

.visual-card-bg:hover .card-right {
    transform: translateX(60px) translateY(-10px) rotate(15deg) scale(0.92);
    filter: brightness(0.8);
    box-shadow: 10px 20px 40px rgba(0,0,0,0.3);
}

.visual-card-bg:hover .card-center {
    transform: translateY(-30px) scale(1.05);
    box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}

.prop-text {
    position: relative;
    z-index: 2;
    padding-left: 20px;
}

.prop-text h2 {
    font-size: 3.5rem;
    line-height: 1.05;
    color: var(--text-main);
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.prop-highlight {
    font-size: 1.25rem;
    color: var(--brand-aqua);
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.4;
    border-left: 4px solid var(--brand-kro);
    padding-left: 20px;
}

.prop-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 400;
    line-height: 1.7;
}

.bento-section {
    padding: 60px 0; 
    background-color: #ffffff;
}

.bento-header {
    margin-bottom: 40px;
    text-align: left;
}

.bento-header h2 {
    color: var(--text-main);
    font-size: 2.8rem;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 15px;
    font-weight: 900 !important; 
    letter-spacing: -0.5px; 
}

.bento-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 220px; 
    gap: 20px;
}

.bento-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(156, 52, 41, 0.15); 
    cursor: default;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.card-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
    filter: brightness(0.95);
}

.card-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, 
        rgba(156, 52, 41, 0.2) 0%, 
        rgba(156, 52, 41, 0.8) 60%, 
        rgba(156, 52, 41, 1) 100%
    );
    z-index: 1;
    opacity: 0.9;
}

.bento-content {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    padding: 25px; 
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
}

.bento-card h3 {
    font-size: 1.4rem;
    color: white;
    margin-bottom: 8px;
    text-transform: uppercase;
    line-height: 1;
    font-weight: 800;
    text-shadow: 0 2px 5px rgba(0,0,0,0.3); 
}

.bento-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    line-height: 1.4;
    font-weight: 400;
    max-height: 0; 
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.bento-icon, .bento-number {
    position: absolute;
    top: 20px; left: 25px;
    font-size: 1.8rem; 
    color: white;
    opacity: 0.8;
}

.bento-number {
    font-weight: 900;
    font-size: 2.5rem;
    opacity: 0.5;
}

.span-large { grid-column: span 2; }
.span-tall { grid-row: span 2; }

.bento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(156, 52, 41, 0.2);
    border-color: var(--brand-kro);
}
.bento-card:hover .card-bg { transform: scale(1.1); }
.bento-card:hover .card-overlay {
    background: linear-gradient(to bottom, rgba(156, 52, 41, 0.1) 0%, rgba(120, 30, 20, 0.95) 100%);
}
.bento-card:hover p { max-height: 80px; opacity: 1; margin-top: 8px; }

.plans-section.light-theme {
    padding: 100px 0;
    position: relative;
    background-color: #f4f6f8;
    color: var(--text-main);
    overflow: visible; 
}

.plans-bg-pattern {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(#d1d5db 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.5;
}

.plans-compact-header { text-align: center; margin-bottom: 50px; position: relative; z-index: 2; }
.plans-compact-header h2 { font-size: 3rem; color: #1a1a1a; margin: 0; line-height: 1; }
.section-tag { color: var(--brand-aqua); font-size: 0.8rem; letter-spacing: 3px; font-weight: 800; display: block; margin-bottom: 10px; }

.plans-grid-compact {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
    position: relative; z-index: 2;
}

@keyframes meshFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.plan-card-dark {
    background-color: #111111;
    background-image: none;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    color: white;
    overflow: visible;
    transform: translateZ(0);
    will-change: transform;
    transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
    display: flex; 
    flex-direction: column;
    height: 100%;
}

.plan-card-dark::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

.plan-card-dark:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    border-color: var(--brand-kro);
}

.plan-card-dark.featured {
    background: linear-gradient(180deg, #9C3429 0%, #5e1b15 100%) !important;
    transform: scale(1.05); 
    z-index: 5;
    border: none !important;
    box-shadow: 0 25px 50px -10px rgba(156, 52, 41, 0.4) !important;
}

.plan-card-dark.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.card-header-dark, .card-body-dark {
    position: relative;
    z-index: 1;
    background: transparent;
}

.card-header-dark {
    padding: 30px 25px 20px; 
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    background-color: #161616;
    flex-shrink: 0; 
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.card-body-dark {
    padding: 25px;
    flex-grow: 1; 
    display: flex; 
    flex-direction: column; 
    background-color: transparent;
}

.card-header-dark h3 { font-size: 1.3rem; color: white; margin: 10px 0 5px; font-weight: 700; letter-spacing: 0.5px; }
.card-header-dark p { font-size: 0.85rem; color: rgba(255,255,255,0.7); margin: 0; }

.icon-circle {
    width: 45px; height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%; margin: 0 auto;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 0 15px rgba(255,255,255,0.1);
}

.card-body-dark ul { list-style: none; padding: 0; margin: 0 0 25px 0; text-align: left; }

.card-body-dark li {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 12px;
    display: flex; align-items: center; gap: 12px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.check-icon {
    color: var(--brand-kro);
    font-size: 1.2rem;
    filter: drop-shadow(0 0 5px rgba(205, 105, 97, 0.5));
}

.plan-card-dark.featured .check-icon { color: #fff; filter: drop-shadow(0 0 5px rgba(255,255,255,0.8)); }
.plan-card-dark.featured .card-header-dark p { color: rgba(255,255,255,0.9); }

.btn-dark-outline {
    width: 100%; padding: 12px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.4);
    color: white; border-radius: 8px; font-weight: 700;
    cursor: pointer; transition: 0.3s;
    backdrop-filter: blur(4px);
}
.btn-dark-outline:hover {
    background: white; color: black;
    box-shadow: 0 0 20px rgba(255,255,255,0.4);
}

.btn-dark-solid {
    width: 100%; padding: 14px;
    background: white; color: var(--brand-aqua);
    border: none; border-radius: 8px; font-weight: 800;
    cursor: pointer; transition: 0.3s;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}
.btn-dark-solid:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(255,255,255,0.6);
}

.badge-star {
    position: absolute; 
    top: 15px; 
    right: 15px;
    background: #111; 
    color: white;
    font-size: 0.75rem;
    font-weight: 800; 
    padding: 6px 14px;
    border-radius: 30px; 
    display: flex; 
    align-items: center; 
    gap: 6px;
    border: 1px solid rgba(255,255,255,0.3);
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transform: translateZ(0); 
    backface-visibility: hidden;
    z-index: 10;
}

.badge-star i {
    font-size: 0.9rem;
}

.badge-star {
    position: absolute; 
    top: 15px; 
    right: 15px;
    background: #111; 
    color: white;
    font-size: 0.75rem;
    font-weight: 800; 
    padding: 6px 14px;
    border-radius: 30px; 
    display: flex; 
    align-items: center; 
    gap: 6px;
    border: 1px solid rgba(255,255,255,0.3);
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transform: translateZ(0); 
    backface-visibility: hidden;
    z-index: 10;
}

.sector-cta-section {
    position: relative;
    padding: 80px 0; 
    overflow: hidden;
    color: white;
    background-color: #1a1a1a;
}

.sector-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-color: var(--brand-aqua); 
    background-blend-mode: multiply;
    opacity: 1;
    z-index: 0;
    animation: breathingZoom 25s ease-in-out infinite alternate;
}

.sector-cta-section::after {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}

.sector-content {
    position: relative; z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.sector-info {
    width: 60%;
}

.sector-tag {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-bottom: 10px;
    display: block;
}

.sector-info h2 {
    font-size: 2.8rem;
    line-height: 1.1;
    color: white;
    margin-bottom: 15px;
    font-weight: 700;
}

.sector-info p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.85);
    margin: 0;
    max-width: 90%;
    text-align: justify;
}

.sector-actions {
    width: 40%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-end;
}

.btn-modern {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 300px;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    font-size: 0.95rem;
    font-weight: 700;
    box-sizing: border-box;
}

.btn-modern.white {
    background: white;
    color: var(--brand-aqua);
    border: 1px solid white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.btn-modern.white:hover {
    transform: translateX(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.btn-modern.transparent {
    background: rgba(255,255,255,0.1);
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(5px);
}
.btn-modern.transparent:hover {
    background: rgba(255,255,255,0.2);
    border-color: white;
    transform: translateX(-5px);
}

.btn-icon { font-size: 1.2rem; }

.mini-gallery-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 15px !important;
    width: 100%;
    max-width: 450px;
    margin-top: 25px;
}

.gallery-thumb {
    width: 100%;
    height: 90px !important;
    border-radius: 12px;
    overflow: hidden !important;
    cursor: pointer;
    background-color: white;
    border: 2px solid rgba(0,0,0,0.1);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    position: relative;
}

.gallery-thumb:hover {
    transform: scale(1.05);
    border-color: #CD6961;
}

.gallery-thumb img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    margin: 0 !important;
    max-width: none !important;
}

.info-cards-container {
    height: auto !important;
    min-height: 500px;
}

.lightbox-overlay {
    display: none;
    position: fixed;
    z-index: 9999999 !important;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
}

.lightbox-overlay.show {
    display: flex !important;
}

.lightbox-content {
    max-width: 90%;
    max-height: 80vh;
    border: 2px solid white;
    box-shadow: 0 0 50px rgba(255,255,255,0.2);
    object-fit: contain;
}

.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 50px;
    color: white;
    padding: 20px;
    cursor: pointer;
    background: rgba(0,0,0,0.5);
    z-index: 10000000;
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 50px;
    cursor: pointer;
    z-index: 10000000;
}

.plans-bg-pattern {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(#d1d5db 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.5;
}

.plans-compact-header { 
    text-align: center; 
    margin-bottom: 60px; 
    position: relative; z-index: 2; 
}
.plans-compact-header h2 { 
    font-size: 3rem; 
    color: #1a1a1a; margin: 0; line-height: 1.1; 
}
.section-tag { 
    font-size: 0.8rem; letter-spacing: 2px; font-weight: 800; 
    display: block; margin-bottom: 10px; color: var(--brand-aqua);
}

.plans-grid-compact {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px; 
    max-width: 1100px;
    margin: 0 auto;
    align-items: stretch; 
    position: relative; z-index: 2;
}

.plan-card-dark {
    background: #111111;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    color: white;
    overflow: visible;
    transition: transform 0.3s ease;
    display: flex; 
    flex-direction: column;
    height: 100%; 
}

.plan-card-dark:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border-color: var(--brand-kro);
}

.card-header-dark {
    padding: 30px 25px 20px; 
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    background: rgba(30, 30, 30, 0.5); 
    flex-shrink: 0; 
}

.icon-circle {
    width: 44px; height: 44px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%; margin: 0 auto;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; color: var(--brand-aqua);
    border: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 15px;
}

.card-header-dark h3 { 
    font-size: 1.3rem; 
    color: white; 
    margin: 0 0 8px; 
    font-weight: 700; 
    line-height: 1.2;
}

.card-header-dark p { 
    font-size: 0.9rem; 
    color: rgba(255,255,255,0.7); 
    margin: 0; 
    line-height: 1.4;
    min-height: 40px;
}

.card-body-dark {
    padding: 25px;
    flex-grow: 1; 
    display: flex; 
    flex-direction: column; 
}

.card-body-dark p {
    margin-bottom: 15px !important;
    font-size: 0.75rem !important;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 700;
    color: rgba(255,255,255,0.5);
}

.card-body-dark ul { 
    list-style: none; padding: 0; margin: 0 0 25px 0; text-align: left; 
    margin-bottom: auto;
}

.card-body-dark li {
    font-size: 0.9rem; 
    color: #ddd;
    margin-bottom: 10px;
    display: flex; align-items: flex-start;
    gap: 12px;
    line-height: 1.4;
}

.check-icon { 
    color: var(--brand-kro); 
    font-size: 1.1rem; 
    min-width: 18px; 
    margin-top: 2px;
}

.plan-card-dark.featured {
    background: linear-gradient(145deg, #9C3429, #681812); 
    transform: scale(1.05); 
    z-index: 5;
    border: none;
    box-shadow: 0 25px 60px rgba(156, 52, 41, 0.25);
}
.plan-card-dark.featured:hover { transform: scale(1.05) translateY(-8px); }

.plan-card-dark.featured .icon-circle { background: white; color: var(--brand-aqua); border: none; }
.plan-card-dark.featured .check-icon { color: white !important; }
.plan-card-dark.featured .card-body-dark li { color: white !important; }
.plan-card-dark.featured .card-header-dark p { color: rgba(255,255,255,0.9); }

.badge-star {
    position: absolute; top: 12px; right: 12px;
    background: #111; color: white;
    font-size: 0.65rem; font-weight: 800; padding: 5px 12px;
    border-radius: 20px; display: flex; align-items: center; gap: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.2);
    z-index: 10;
    -webkit-font-smoothing: antialiased;
}

.btn-dark-outline {
    width: 100%; padding: 12px; 
    background: transparent; border: 1px solid rgba(255,255,255,0.3);
    color: white; border-radius: 8px; font-weight: 700; font-size: 0.85rem;
    cursor: pointer; transition: 0.2s;
    margin-top: 20px;
}
.btn-dark-outline:hover { background: white; color: black; }

.btn-dark-solid {
    width: 100%; padding: 12px;
    background: white; color: var(--brand-aqua);
    border: none; border-radius: 8px; font-weight: 800; font-size: 0.85rem;
    cursor: pointer; transition: 0.2s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    margin-top: 20px;
}
.btn-dark-solid:hover { transform: translateY(-2px); background: #f0f0f0; }

.floating-dock {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9000;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.whatsapp-btn, #scrollTopBtn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative; 
    bottom: auto; 
    right: auto;
}

.whatsapp-btn:hover, #scrollTopBtn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.whatsapp-btn {
    background-color: var(--brand-aqua); 
    color: white;
    border: none;
}

.whatsapp-btn svg {
    width: 30px;
    height: 30px;
}

.whatsapp-btn:hover {
    background-color: var(--brand-kro);
}

#scrollTopBtn {
    background-color: white;
    border: 2px solid var(--brand-aqua);
    color: var(--brand-aqua);
    display: none; 
    opacity: 0;
    animation: fadeInBtn 0.3s ease forwards;
}

#scrollTopBtn.show {
    display: flex;
    opacity: 1;
}

#scrollTopBtn svg {
    width: 24px;
    height: 24px;
}

#scrollTopBtn:hover {
    background-color: var(--brand-aqua);
    color: white;
}

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

.brand-info-card h3 {
    font-weight: 900 !important;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.txt-white {
    color: #ffffff;
}

.txt-kro-aqua {
    color: #005A8D;
}
.txt-aqua {
    color: #0090D4;
}

.txt-kro-antenna {
    color: #B33600;
}
.txt-antenna {
    color: #FF5200;
}

.txt-kro-sec {
    color: #990000;
}
.txt-sec {
    color: #FF0000;
}

#modulos {
    scroll-margin-top: -100px;
}

@media screen and (max-width: 479px) {
    .container { padding: 0 20px; }

    header {
        padding: 20px 25px !important; 
        
        justify-content: space-between !important;
    }

    .logo img {
        width: 110px !important;
        max-width: 110px !important;
    }

    .value-prop-section {
        padding: 50px 0;
        background-color: #fff;
    }

    .prop-grid {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .visual-card-bg {
        width: 100%;
        height: 300px;
        background: radial-gradient(circle at 50% 50%, #3e1212 0%, #000000 100%) !important;
        border: 1px solid rgba(156, 52, 41, 0.2);
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        border-radius: 20px;
        position: relative;
        margin-bottom: 40px;
        overflow: visible;
    }

    .prop-visual {
        width: 100% !important;
        display: block !important;
        padding: 0 10px;
        box-sizing: border-box;
    }

    .prop-img {
        width: 110px !important; 
        max-height: none !important;
        border: 2px solid #1a1a1a;
    }
    
    .card-left { 
        transform: translateX(-30px) translateY(10px) rotate(-6deg) scale(0.9); 
    }

    .card-right { 
        transform: translateX(30px) translateY(10px) rotate(6deg) scale(0.9); 
    }

    .card-center { 
        transform: translateY(0) scale(1); 
    }

    .visual-card-bg:hover .card-left { transform: translateX(-30px) rotate(-8deg) scale(0.9); }
    .visual-card-bg:hover .card-right { transform: translateX(30px) rotate(8deg) scale(0.9); }

    .prop-text {
        text-align: center;
        padding: 0 15px;
        position: relative;
        z-index: 10;
    }

    .prop-text h2 {
        font-size: 2rem;
        margin-top: 10px;
    }
    
    .prop-highlight {
        border-top: 3px solid var(--brand-kro);
        border-left: none;
        padding-top: 15px;
        padding-left: 0;
        font-size: 1rem;
    }

    .banner-cta-section {
        padding: 80px 0;
    }

    .banner-content {
        padding: 0 20px;
    }

    .banner-content h2 {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 15px;
    }

    .highlight-gold {
        display: inline-block;
    }

    .banner-content p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .banner-bg {
        background-attachment: scroll; 
        background-position: center;
    }

    .bento-section {
        padding: 40px 0;
    }

    .bento-header {
        margin-bottom: 30px;
        text-align: center;
    }

    .bento-header h2 {
        font-size: 2rem;
        line-height: 1.1;
    }

    .bento-header p {
        font-size: 1rem;
    }

    .bento-grid {
        display: grid;
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
        gap: 15px;
    }

    .span-large, .span-tall {
        grid-column: auto;
        grid-row: auto;
    }

    .bento-content {
        padding: 20px;
    }

    .bento-card h3 {
        font-size: 1.4rem;
    }

    .bento-card p {
        font-size: 0.85rem;
    }

    .brands-wheel-section {
        padding: 50px 0 80px !important;
        height: auto !important;
    }

    .brands-wheel-section .section-tag,
    .brands-wheel-section .section-header {
        text-align: center !important;
        width: 100%;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

    .wheel-layout {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .info-side {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 20px !important;
        box-sizing: border-box;
        margin: 0 auto !important;
        text-align: center !important;
        display: flex;
        flex-direction: column;
        align-items: center !important;
    }

    .info-cards-container {
        width: 100%;
    }

    .section-tag {
        font-size: 0.7rem;
        margin-bottom: 10px;
    }

    .section-header {
        font-size: 2.2rem !important;
        line-height: 1.1;
        margin-bottom: 30px;
    }

    .section-tag, .section-header {
        text-align: center !important;
        width: 100% !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .brand-info-card {
        width: 100% !important;
        display: none;
        flex-direction: column;
        align-items: center !important;
    }

    .brand-info-card h3 {
        display: flex !important;
        flex-wrap: wrap;
        justify-content: center !important;
        text-align: center !important;
        width: 100% !important;
        gap: 5px;
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .brand-info-card p {
        text-align: center !important;
        font-size: 0.95rem;
        line-height: 1.5;
        width: 100% !important;
        margin: 0 auto 30px auto !important;
        padding: 0 !important;
    }

    .wheel-btn {
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        margin: 0 auto 30px auto !important;
        padding: 14px 0;
    }

    .mini-gallery-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        margin: 20px auto 0 auto;
        width: 100%;
        max-width: 100%;
    }

    .gallery-thumb {
        height: 60px;
    }

    .brand-info-card {
        position: relative; display: none;
        opacity: 1 !important; visibility: visible !important;
        transform: none !important;
    }

    #w-opt-1:checked ~ .container .info-side #info-1,
    #w-opt-2:checked ~ .container .info-side #info-2,
    #w-opt-3:checked ~ .container .info-side #info-3 {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .wheel-side {
        width: 100%;
        height: 280px;
        position: relative;
        margin-top: 40px;
        transform: scale(0.55);
        transform-origin: top center;
        margin-bottom: -100px;
    }

    .wheel-center-hub, .wheel-circle {
        left: 50%;
        top: 0;
    }
    
    .wheel-item label {
        -webkit-tap-highlight-color: transparent;
    }

    .plans-section.light-theme {
        padding: 50px 0;
    }

    .plans-compact-header h2 {
        font-size: 3rem;
        padding: 0 10px;
    }

    .plans-grid-compact {
        display: flex !important; 
        flex-direction: column !important;
        align-items: center !important; 
        width: 100% !important;
        padding: 0 20px !important;
        box-sizing: border-box !important;
        gap: 30px;
    }

    .plan-card-dark {
        width: 100% !important;
        max-width: 360px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        transform: none !important; 
    }

    .plan-card-dark.featured {
        transform: none;
        margin: 0;
        box-shadow: 0 10px 30px rgba(156, 52, 41, 0.25);
    }

    .icon-circle {
        width: 40px; height: 40px; font-size: 1.1rem;
    }

    .card-header-dark h3 {
        font-size: 1.3rem;
    }
    
    .card-body-dark ul li {
        font-size: 0.9rem;
    }

    .sector-cta-section {
        padding: 60px 30px !important; 
        box-sizing: border-box;
    }

    .sector-content {
        flex-direction: column;
        gap: 30px;
    }

    .sector-info {
        width: 100% !important;
        text-align: center !important;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .sector-info h2 {
        text-align: center !important;
        width: 100%;
        margin-bottom: 20px;
    }

    .sector-info p {
        text-align: center;
        font-size: 0.95rem;
    }

    .sector-actions {
        width: 100%;
        align-items: stretch;
    }
    
    .btn-modern {
        max-width: 100%;
        justify-content: center;
    }

    footer {
        padding: 50px 0 20px;
    }

    .footer-grid {
        flex-direction: column;
        gap: 40px;
    }

    .footer-col {
        text-align: center;
        align-items: center;
        width: 100%;
    }

    .footer-col ul {
        padding-left: 0 !important;
        margin-left: 0 !important;
        width: 100%;
    }

    .contact-item {
        display: flex !important;
        justify-content: center !important;
        width: 100% !important;
    }
    
    .footer-bottom {
        font-size: 0.8rem;
    }

    .footer-bottom img {
        width: 160px !important; 
        height: auto;
        margin-top: 25px; 
        margin-bottom: 20px;
    }
}

@media (min-width: 480px ) and (max-width: 768px) {
    .container { 
        padding: 0 30px; 
    }
    
    .hero-3d-section {
        background-image: none !important;
        background: radial-gradient(circle at center, #2b0b0b 0%, #000000 100%) !important;
        height: auto !important;
        min-height: auto !important;
        padding: 130px 0 80px; 
        display: flex;
        align-items: center;
        justify-content: center;
    }
        
    #canvas-container {
        display: none !important;
    }

    .hero-3d-section .container {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 40px !important;
        padding-right: 40px !important;
        box-sizing: border-box !important;
        margin: 0 !important;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .hero-text-left {
        width: 100%;
        max-width: 600px; 
        margin: 0 auto;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-title-premium {
        font-size: 5.2rem;
        line-height: 1.1;
        text-align: center;
        margin-top: 20px;
        margin-bottom: 30px !important; 
        width: 100%;
    }
    
    .hero-desc-premium {
        font-size: 1.1rem;
        line-height: 1.6;
        text-align: center !important;
        width: auto;
        max-width: 100%; 
        margin: 0 auto 50px auto !important; 
        padding: 0;
    }

    .btn-hero-center {
        padding: 12px 30px !important; 
        font-size: 0.85rem !important;
        width: auto !important;
        max-width: 80%;
        margin-top: 10px;
    }

    .brand-tag {
        margin-bottom: 20px !important;
        display: block;
    }

    header {
        
    }

        .value-prop-section {
        padding: 60px 0;
    }

    .prop-grid {
        grid-template-columns: 1fr; 
        gap: 50px;
        text-align: center;
    }

    .visual-card-bg {
        max-width: 100%;
        height: 400px;
    }

    .prop-img {
        width: 160px;
    }

    .card-left { transform: translateX(-25px) rotate(-6deg) scale(0.9); }
    .card-right { transform: translateX(25px) rotate(6deg) scale(0.9); }

    .prop-text h2 {
        font-size: 2.5rem;
    }
    .prop-highlight {
        border-left: none;
        border-top: 3px solid var(--brand-kro);
        padding-top: 15px;
        padding-left: 0;
    }

    .banner-cta-section {
        padding: 100px 0;
    }

    .banner-content h2 {
        font-size: 2.2rem;
    }

    .banner-content p {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .banner-bg {
        background-position: center center;
    }

        .bento-section {
        padding: 50px 0;
    }

    .bento-header {
        text-align: center !important;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        margin-bottom: 40px;
    }

    .bento-header h2 {
        font-size: 2.2rem;
        width: 100%;
        margin-bottom: 10px;
    }

    .bento-header p {
        text-align: center !important;
        margin: 10px auto !important;
        max-width: 90%;
        font-size: 1.1rem;
    }

    .bento-grid {
        grid-template-columns: 1fr; 
        grid-auto-rows: 220px; 
        gap: 20px;
    }

    .span-large, .span-tall {
        grid-column: span 1;
        grid-row: span 1;
    }

    .brands-wheel-section {
        height: auto;
        padding: 60px 0;
    }

    .wheel-layout {
        flex-direction: column;
    }

    .info-side {
        width: 100%;
        padding: 0 20px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .section-header {
        font-size: 2.5rem;
    }

    .brand-info-card {
        position: relative; 
        display: none;
        opacity: 1 !important; visibility: visible !important;
        transform: none !important;
    }

    .brand-info-card p {
        margin: 0 auto 30px auto;
        max-width: 90%;
    }

    .brands-wheel-section .section-tag,
    .brands-wheel-section .section-header {
        text-align: center !important;
        width: 100%;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

    #w-opt-1:checked ~ .container .info-side #info-1,
    #w-opt-2:checked ~ .container .info-side #info-2,
    #w-opt-3:checked ~ .container .info-side #info-3 {
        display: block;
    }

    .mini-gallery-grid {
        margin: 25px auto 0 auto;
        justify-content: center;
    }

    .wheel-side {
        width: 100%;
        height: 400px;
        transform: scale(0.65);
        transform-origin: center top;
        margin-top: 20px;
        margin-bottom: -80px;
    }

    .wheel-center-hub, .wheel-circle {
        left: 50%; top: 30%;
    }

    .plans-section.light-theme {
        padding: 50px 0;
    }

    .plans-grid-compact {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 450px;
        margin: 0 auto;
    }

    .plan-card-dark.featured {
        transform: scale(1);
        margin: 0;
        border: 2px solid var(--brand-kro);
    }

    .card-header-dark h3 {
        font-size: 1.4rem;
    }

    .sector-cta-section {
        padding: 60px 0;
    }

    .sector-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .sector-info { width: 100%; }
    .sector-info h2 { font-size: 2.2rem; }
    .sector-info p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.85);
    margin-left: 3%;
    max-width: 90%;
    text-align: center;
}

    .sector-actions {
        width: 100%;
        align-items: center;
    }

    footer {
        padding: 60px 0 30px;
    }

    .footer-grid {
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }

    .footer-col {
        text-align: center;
        align-items: center;
        width: 100%;
    }

    .footer-col ul {
        padding-left: 0 !important;
        margin-left: 0 !important;
        text-align: center;
    }

    .footer-bottom img {
        width: 200px !important; 
        margin-top: 20px; 
    }

    .contact-item {
        display: flex !important;
        justify-content: center !important;
        width: 100% !important;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    
    .hero-title-center {
        font-size: 8.5rem !important; 
        line-height: 0.9;
        margin-bottom: 25px;
    }

    .hero-desc-center {
        font-size: 1.3rem !important;
        max-width: 80%;
        padding: 0;
    }

    .hero-tag {
        font-size: 1rem !important;
        margin-bottom: 15px;
    }

    .btn-hero-center {
        padding: 18px 50px;
        font-size: 1rem;
    }

    header {
        
    }

    .value-prop-section {
        padding: 80px 0;
    }

    .prop-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .visual-card-bg {
        max-width: 600px;
        margin: 0 auto;
        height: 450px;
    }

    .prop-text {
        padding-left: 0;
        max-width: 700px;
        margin: 0 auto;
    }
    .prop-text h2 {
        font-size: 3rem;
    }
    
    .prop-highlight {
        border-left: none;
        border-top: 4px solid var(--brand-kro);
        padding-top: 20px;
        padding-left: 0;
        display: inline-block;
    }

    .banner-cta-section {
        padding: 140px 0;
    }

    .banner-content {
        padding: 0 40px;
    }

    .banner-content h2 {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .banner-content p {
        font-size: 1.1rem;
        max-width: 80%;
        margin: 0 auto;
    }

    .bento-section {
        padding: 60px 0;
    }

    .bento-header {
        text-align: center !important;
        width: 100% !important;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 40px;
    }

    .bento-header h2 {
        text-align: center !important;
        width: 100%;
    }

    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 240px;
        gap: 20px;
    }

    .span-large {
        grid-column: span 2;
        order: 1;
    }

    .bento-card:not(.span-large):not(.span-tall) {
        order: 2;
    }

    .span-tall {
        grid-column: span 2;
        grid-row: span 1;
        order: 3;
        background-position: center top;
    }

    .brands-wheel-section {
        height: auto;
        padding: 80px 0 120px;
        display: block;
        overflow: hidden;
    }

    .wheel-layout {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: flex-start !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .info-side {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important; 
        margin: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }

    .section-header {
        font-size: 3rem;
        text-align: center;
    }

    .info-cards-container {
        position: relative;
        height: auto;
        min-height: 350px;
        margin-bottom: 20px;
    }

    .brand-info-card {
        width: 100% !important;
        display: none;
        flex-direction: column;
        align-items: center;
    }

    .brand-info-card p {
        text-align: center !important;
        margin: 0 auto 30px auto !important;
        max-width: 700px !important;
        width: 90% !important;
    }

    .wheel-btn {
        margin: 0 auto 30px auto !important;
        display: inline-flex !important;
    }

    .brand-info-card h3 {
        display: flex !important;
        justify-content: center !important;
        width: 100% !important;
        gap: 8px;
    }

    .brands-wheel-section .section-tag,
    .brands-wheel-section .section-header {
        text-align: center !important;
        width: 100% !important;
        display: block !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    .section-tag {
        margin-bottom: 15px;
    }

    #w-opt-1:checked ~ .container .info-side #info-1,
    #w-opt-2:checked ~ .container .info-side #info-2,
    #w-opt-3:checked ~ .container .info-side #info-3 {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .mini-gallery-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        margin: 0 auto;
        width: 100%;
        max-width: 500px;
        justify-content: center;
    }

    .wheel-side {
        width: 100%;
        height: 500px;
        position: relative;
        margin-top: 80px;
        margin-left: 0;
        left: 0;
        transform: scale(0.85);
        transform-origin: top center;
        z-index: 5;
    }

    .wheel-btn {
        margin: 0 auto 30px auto;
        display: inline-flex;
    }

    .wheel-center-hub, .wheel-circle {
        left: 50%;
        top: 50%; 
    }
    
    .wheel-circle, .wheel-center-hub {

    }
    
    .wheel-side {
        width: 100%;
        height: 500px;
        position: relative;
        margin-top: 40px;
        margin-left: 0 !important;
        left: 0 !important;
        transform: scale(0.85); 
        transform-origin: top center;
    }

        .plans-section.light-theme {
        padding: 60px 0;
    }

    .plans-compact-header h2 {
        font-size: 2.5rem;
    }

    .plans-grid-compact {
        display: grid;
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 600px;
        margin: 0 auto;
    }

    .plan-card-dark.featured {
        transform: scale(1.05);
        margin: 10px 0;
        z-index: 10;
        box-shadow: 0 20px 50px rgba(156, 52, 41, 0.3);
    }
    
    .card-header-dark {
        text-align: center;
    }
    .card-header-dark p {
        max-width: 80%;
        margin: 0 auto;
    }

    .sector-cta-section {
        padding: 80px 0;
    }

    .sector-content {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }

    .sector-info {
        width: 100%;
        margin: 0 auto;
    }

    .sector-info p {
        margin: 0 auto;
        text-align: center;
    }

    .sector-actions {
        width: 100%;
        align-items: center;
    }

    .contact-item {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        width: 100% !important;
        margin-bottom: 15px;
    }

    .footer-grid {
        justify-content: center;
        gap: 50px;
    }

    .footer-col {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-col ul {
        padding-left: 0 !important;
        margin-left: 0 !important;
        text-align: center;
    }

    .footer-bottom img {
        width: 200px !important; 
        margin-top: 20px; 
    }

    .contact-item a {
        display: inline-block;
    }
}

@media (min-width: 1025px) and (max-width: 1366px) {
    
    #canvas-container {
        display: none !important;
    }

    .hero-3d-section {
        background-image: none !important;
        background: radial-gradient(circle at center, #2b0b0b 0%, #000000 100%) !important;
        height: 100vh !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding-top: 80px !important;
    }

    .hero-3d-section .container {
        width: 100% !important;
        max-width: 1000px !important;
        margin: 0 auto !important;
        padding: 0 40px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }

    .hero-text-left {
        width: 100% !important;
        max-width: 800px !important;
        text-align: center !important;
        align-items: center !important;
    }

    .hero-title-premium {
        font-size: 4.8rem !important;
        text-align: center !important;
        margin-bottom: 25px !important;
    }

    .hero-desc-premium {
        font-size: 1.2rem !important;
        margin: 0 auto 40px auto !important;
        max-width: 650px !important;
    }

    .btn-hero-action {
        margin: 0 auto !important;
    }
    
    .wheel-side {
        transform: scale(0.8);
        transform-origin: center right;
        right: -50px;
    }

    .hero-btns {
        margin-bottom: 20px;
    }

    .brand-tag {
        font-size: 0.75rem !important;
        margin-bottom: 10px;
    }

    .btn-hero-action {
        padding: 12px 30px !important;
        font-size: 0.85rem !important;
    }

    .value-prop-section {
        padding: 100px 0;
    }

    .prop-grid {
        gap: 40px; 
        grid-template-columns: 1fr 1fr; 
    }

    .visual-card-bg {
        height: 480px;
    }
    .prop-img {
        width: 200px;
    }

    .card-left { transform: translateX(-30px) translateY(20px) rotate(-8deg) scale(0.9); }
    .card-right { transform: translateX(30px) translateY(20px) rotate(8deg) scale(0.9); }

    .prop-text h2 {
        font-size: 2.8rem;
    }
    .prop-highlight {
        font-size: 1.1rem;
    }

        .banner-cta-section {
        padding: 180px 0;
    }

    .banner-content h2 {
        font-size: 2.8rem;
    }

    .bento-grid {
        grid-auto-rows: 200px; 
        gap: 15px;
    }

    .span-tall {
        grid-row: span 2; 
    }

    .bento-card h3 {
        font-size: 1.3rem;
    }

    .brands-wheel-section {
        height: 750px !important;
        overflow: hidden !important; 
        padding-right: 20px !important;
    }


    .brands-wheel-section .section-tag,
    .brands-wheel-section .section-header {
        text-align: left !important;
        margin-left: 0;
    }

    .wheel-layout {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        position: relative;
    }

    .info-side {
        width: 45%; 
        padding-left: 50px;
        z-index: 5; 
        position: relative;
        pointer-events: none;
    }

    .wheel-side {
        width: 80%; 
        height: 100%;
        position: relative;
        z-index: 20; 
        transform: scale(0.9);
        transform-origin: center center;
        left: -20px; 
    }

    .mini-gallery-grid {
        margin: 25px 0 0 0;
        max-width: 400px;
    }

    .section-header {
        font-size: 3.2rem;
    }

    .wheel-center-hub, .wheel-circle {
        left: 50%; 
        top: 50%;
        margin: 0;
        transform: translate(-50%, -50%) !important; 
    }
    
    .wheel-circle {
        transform: translate(-50%, -50%) scale(0.85) !important;
        left: 65%;
    }

    .wheel-center-hub {
        transform: translate(-50%, -50%) scale(0.85);
        left: 65%;
    }

        .plans-section.light-theme {
        padding: 80px 0;
    }

    .plans-grid-compact {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        max-width: 100%;
        align-items: stretch;
    }

    .card-header-dark, .card-body-dark {
        padding: 20px 15px;
    }

    .card-header-dark h3 {
        font-size: 1.2rem;
    }

    .plan-card-dark.featured {
        transform: scale(1.03); 
    }

    .sector-cta-section {
        padding: 70px 0;
    }

    .sector-info h2 {
        font-size: 2.4rem;
    }

    .sector-content {
        gap: 40px;
    }

    .footer-grid {
        gap: 60px;
    }
}

@media (max-width: 1366px) {
    #canvas-container {
        display: none !important;
    }

    .hero-3d-section {
        background-image: none !important;
        background: radial-gradient(circle at center, #2b0b0b 0%, #000000 100%) !important;
        display: flex !important;
        justify-content: center !important;
        text-align: center !important;
    }

    .hero-3d-section .container {
        max-width: 900px !important;
        margin: 0 auto !important;
        padding: 0 30px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    .hero-text-left {
        width: 100% !important;
        max-width: 100% !important;
        text-align: center !important;
        align-items: center !important;
    }

    .hero-title-premium {
        font-size: clamp(3rem, 8vw, 4.5rem) !important;
        line-height: 1.1;
        margin-bottom: 20px !important;
    }

    .hero-desc-premium {
        font-size: 1.1rem !important;
        max-width: 600px !important;
        margin: 0 auto 40px auto !important;
    }

    .btn-hero-action {
        margin: 0 auto !important;
    }
}

    #w-opt-1:checked ~ .container .wheel-side .wheel-circle { transform: translate(-50%, -50%) rotate(180deg) !important; }
    #w-opt-2:checked ~ .container .wheel-side .wheel-circle { transform: translate(-50%, -50%) rotate(135deg) !important; }
    #w-opt-3:checked ~ .container .wheel-side .wheel-circle { transform: translate(-50%, -50%) rotate(90deg) !important; }
    #w-opt-4:checked ~ .container .wheel-side .wheel-circle { transform: translate(-50%, -50%) rotate(45deg) !important; }
    #w-opt-5:checked ~ .container .wheel-side .wheel-circle { transform: translate(-50%, -50%) rotate(0deg) !important; }
    #w-opt-6:checked ~ .container .wheel-side .wheel-circle { transform: translate(-50%, -50%) rotate(-45deg) !important; }
    #w-opt-7:checked ~ .container .wheel-side .wheel-circle { transform: translate(-50%, -50%) rotate(-90deg) !important; }
    #w-opt-8:checked ~ .container .wheel-side .wheel-circle { transform: translate(-50%, -50%) rotate(-135deg) !important; }

.reveal {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0) translateX(0);
}

.reveal-up {
    transform: translateY(50px);
}


.reveal-fade {

}


.reveal-left {
    transform: translateX(-50px);
}
.reveal-right {
    transform: translateX(50px);
}

.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }

#loader-wrapper {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: #050505; 
    z-index: 99999;
    overflow: hidden;
}

#canvas-loader {
    position: absolute; top: 0; left: 0; 
    width: 100%; height: 100%;
    z-index: 1;
    transition: opacity 0.5s ease; 
}

.loader-ui {
    position: absolute;
    bottom: 50px; left: 50px;
    z-index: 10;
    color: white;
    font-family: 'Outfit', sans-serif;
    display: flex;
    flex-direction: column;
}

.loader-status {
    display: flex; 
    align-items: center; 
    gap: 15px;
}

.status-line {
    width: 40px; 
    height: 1px;
    background: var(--brand-aqua);
    box-shadow: 0 0 10px var(--brand-aqua);
}

.status-text {
    font-size: 0.85rem; 
    letter-spacing: 4px; 
    font-weight: 600; 
    color: #ccc;
}

.status-number {
    font-size: 0.85rem; 
    font-weight: 700; 
    color: white; 
    min-width: 40px;
}

.logo-reveal-container {
    position: fixed;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10000; 
    pointer-events: none;
    width: 400px;
    max-width: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.final-logo {
    width: 100%;
    height: auto;
    opacity: 0;
    transform: scale(1.1);
}

.loader-hidden {
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease, visibility 1s;
}

.hero-entry {
    opacity: 0;
    transform: translateY(80px);
    transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero-entry.active {
    opacity: 1;
    transform: translateY(0);
}