:root {
    --bg-main: #fcfcfc;
    --white: #ffffff;
    --text-primary: #121212;
    --text-secondary: #5a5a5a;
    --accent: #2c2c2c;
    --accent-light: #f0f0f0;
    --border-color: #e5e5e5;
    --primary-btn: #121212;
    --primary-btn-hover: #333333;
    --nav-height: 80px;
    --font-heading: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Splash Screen */
#splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.8s ease-in-out, visibility 0.8s;
}

.splash-content {
    text-align: center;
    max-width: 600px;
    padding: 2rem;
}

.logo-container {
    width: 320px;
    height: 90px;
    margin: 0 auto 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.splash-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    animation: glow-pulse 2s infinite alternate;
}

@keyframes glow-pulse {
    0% {
        filter: drop-shadow(0 0 5px rgba(0,0,0,0.05));
        transform: scale(0.98);
    }
    100% {
        filter: drop-shadow(0 0 25px rgba(0,0,0,0.15));
        transform: scale(1.02);
    }
}

.splash-title {
    font-size: 2.5rem;
    font-weight: 500;
    letter-spacing: 2px;
    margin-top: 1rem;
    color: var(--text-primary);
    opacity: 0;
    animation: fade-in 1s forwards 0.5s;
}

.splash-subtitle {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-secondary);
    opacity: 0;
    animation: fade-in 1s forwards 0.8s;
}

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

/* Hidden Utility */
.hidden {
    display: none !important;
}

/* Fade Out Splash */
.fade-out {
    opacity: 0 !important;
    visibility: hidden !important;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background: rgba(252, 252, 252, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    display: flex;
    align-items: center;
}

.nav-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 1px;
    background-color: var(--text-primary);
    transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
    color: var(--text-primary);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.lang-switch {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
}

.lang-switch span.active {
    color: var(--text-primary);
    border-bottom: 1px solid var(--text-primary);
}

/* Main Container: Split screen */
.main-container {
    display: flex;
    min-height: 100vh;
    padding-top: var(--nav-height);
}

/* Left Hero Section */
.left-hero {
    width: 50%;
    padding: 4rem;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    border-right: 1px solid var(--border-color);
    position: relative;
}

.hero-frame-wrapper {
    position: sticky;
    top: calc(var(--nav-height) + 2rem);
    width: 100%;
    max-width: 500px;
    aspect-ratio: 4 / 5;
}

.hero-frame {
    width: 100%;
    height: 100%;
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    background: #ffffff;
    box-shadow: 0 20px 40px rgba(0,0,0,0.03);
    position: relative;
    overflow: hidden;
}

.hero-frame::before {
    /* Minimalist delicate frame line, referencing the 'Orange border' but elegant */
    content: '';
    position: absolute;
    top: 1rem;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    border: 1px solid #e0dfdc;
    pointer-events: none;
    z-index: 2;
}

.dynamic-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(1.05) saturate(0.9);
    transition: opacity 0.5s ease;
    z-index: 1;
}

.hero-floating-logo {
    position: absolute;
    bottom: 0;
    right: -2rem;
    transform: translateY(14.5%);
    width: 322px;
    height: auto;
    background: transparent;
    padding: 0;
    border: none;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    border-radius: 8px;
    overflow: hidden;
}

.hero-floating-logo img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/* Right Content Column */
.right-content {
    width: 50%;
    padding: 6rem 8rem 6rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.page-section {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    display: none;
}

.page-section.section-active {
    display: block;
    animation: slide-up-fade 0.7s forwards;
}

@keyframes slide-up-fade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-title {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 2rem;
    line-height: 1.1;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.section-title strong {
    font-weight: 600;
}

.section-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-weight: 300;
}

.text-sm {
    font-size: 0.95rem;
    line-height: 1.8;
}

.text-strong {
    font-weight: 500;
    color: var(--text-primary);
}

.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2.5rem; }

/* Buttons & Inputs */
.btn-text {
    display: inline-block;
    background: transparent;
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
    position: relative;
    font-family: inherit;
}

.btn-text::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 1px;
    background-color: var(--text-primary);
    transition: var(--transition);
}

.btn-text:hover {
    color: var(--text-primary);
    transform: translateY(-2px);
}

.btn-text:hover::after {
    width: 100%;
}

.btn-primary {
    display: inline-block;
    background: var(--primary-btn);
    color: var(--white);
    padding: 1rem 2.5rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    border-radius: 2px;
}

.btn-primary:hover {
    background: var(--primary-btn-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Services List */
.services-list {
    list-style: none;
    margin: 2rem 0;
    position: relative;
}

.services-list:has(.has-submenu:hover) > li:not(.has-submenu),
.services-list:has(.has-submenu:focus-within) > li:not(.has-submenu) {
    opacity: 0.15;
    filter: blur(1.5px);
    pointer-events: none;
}


.services-list > li {
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    transition: var(--transition);
    cursor: pointer;
}

.services-list > li::before {
    content: '→';
    margin-right: 15px;
    opacity: 0;
    transform: translateX(-10px);
    transition: var(--transition);
}

.services-list > li:hover {
    padding-left: 10px;
    color: var(--text-primary);
}

.services-list > li:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Submenu Overlay */
.has-submenu {
    position: relative;
    overflow: visible;
}

.submenu-overlay {
    position: absolute;
    top: 100%;
    left: 2rem;
    width: max-content;
    max-width: 450px;
    background: #ffffff;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 0.8rem 1.2rem;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: default;
    max-height: 80vh;
    overflow-y: auto;
}

.submenu-overlay > div {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
    align-items: start;
}

.submenu-grid-2 {
    grid-template-columns: repeat(2, 1fr) !important;
    width: 320px;
}

/* Add a pseudo element to bridge the gap between item and submenu */
.submenu-overlay::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 20px;
}

.has-submenu:hover .submenu-overlay, 
.has-submenu:focus-within .submenu-overlay {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Sub-Accordions in Overlay */
.sub-accordion {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.8rem;
}
.sub-accordion-title {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-primary);
    cursor: pointer;
    list-style: none;
    position: relative;
    padding-right: 1.5rem;
    outline: none;
}
.sub-accordion-title::-webkit-details-marker { display: none; }
.sub-accordion-title::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    color: var(--text-secondary);
}
details[open] > .sub-accordion-title::after { content: '−'; }
.sub-accordion-content {
    margin-top: 1rem;
}

/* Brand Categories (Nested) */
.brand-category {
    background: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    overflow: hidden;
    transition: var(--transition);
}
.brand-category:hover {
    border-color: #d0d0d0;
}
.brand-category-header {
    display: flex;
    align-items: center;
    padding: 0.3rem 0.6rem;
    cursor: pointer;
    list-style: none;
    outline: none;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-primary);
    background: #ffffff;
}
.brand-category-header::-webkit-details-marker { display: none; }

.monogram-icon {
    width: 28px;
    height: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 12px;
    color: var(--text-secondary);
    background: #f5f5f5;
    border-radius: 4px;
    padding: 4px;
}
.monogram-icon svg { width: 100%; height: 100%; }

.brand-category-header::after {
    content: '▼';
    font-size: 0.7rem;
    margin-left: auto;
    transition: transform 0.3s;
    color: var(--text-secondary);
}
details[open] > .brand-category-header::after { transform: rotate(180deg); }

.brand-list-wrapper {
    padding: 0.4rem 0.8rem;
    background: #fbfbfb;
    border-top: 1px solid var(--border-color);
}
.brand-list-lines {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.4rem 0.6rem;
    margin-bottom: 0.5rem;
    margin-top: 0.2rem;
}
.brand-list-lines li {
    display: inline-flex;
    align-items: center;
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 20px;
    padding: 0.25rem 0.8rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    box-shadow: 0 1px 2px rgba(0,0,0,0.02);
}
.brand-list-lines li::after,
.brand-list-lines li::before {
    display: none;
}
.brand-etc {
    font-size: 0.75rem;
    font-style: italic;
    color: #888;
    text-align: center;
    margin-top: 0.3rem;
}

/* Modal Overlay Styling */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: opacity 0.4s ease, visibility 0.4s;
}

.modal-overlay.hidden {
    opacity: 0;
    visibility: hidden;
}

.modal-close-btn {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 3rem;
    color: #ffffff;
    cursor: pointer;
    z-index: 2001;
    transition: transform 0.3s;
}

.modal-close-btn:hover {
    transform: scale(1.1);
}

.modal-content {
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
}

.modal-content .fluid-gallery {
    max-width: 100%;
    aspect-ratio: auto;
    height: 70vh;
}

.modal-content .fluid-gallery-nav {
    width: 45px;
    height: 45px;
    font-size: 1.5rem;
}
.modal-content .fluid-gallery-nav.prev { left: 15px; }
.modal-content .fluid-gallery-nav.next { right: 15px; }

.modal-content .fluid-gallery-dots { 
    position: relative;
    margin-top: 15px;
    left: auto;
    right: auto;
    bottom: auto;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0 10px;
    z-index: 10;
}
.modal-content .fluid-gallery-dot { width: 10px; height: 10px; background-color: rgba(255,255,255,0.4); }
.modal-content .fluid-gallery-dot.active { background-color: #ffffff; }

.gallery-trigger {
    cursor: pointer;
    transition: var(--transition);
}

.gallery-trigger:hover {
    background: #fdfdfd;
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.gallery-icon-hint {
    margin-left: auto;
    width: 20px;
    height: 20px;
    color: var(--text-secondary);
}

/* Gallery Switcher */
.gallery-switcher {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 360px;
    margin: 0 auto;
    padding-bottom: 0.5rem;
}

.gallery-switcher .switcher-title {
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 500;
}

.gallery-switcher .switcher-btn {
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.4rem 0.8rem;
    color: var(--text-secondary);
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-switcher .switcher-btn:hover {
    background: var(--text-primary);
    color: #ffffff;
    border-color: var(--text-primary);
}

/* Fluid Gallery */
.fluid-gallery {
    position: relative;
    width: 100%;
    margin: 0.25rem auto 1.5rem;
    max-width: 360px;
    aspect-ratio: 4 / 3;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.fluid-gallery-frame {
    width: 100%;
    height: 100%;
    border: 1px solid var(--border-color);
    padding: 0.8rem;
    background: #ffffff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    position: relative;
    overflow: hidden;
}

.fluid-gallery-frame::before {
    content: '';
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    right: 0.5rem;
    bottom: 0.5rem;
    border: 1px solid #e0dfdc;
    pointer-events: none;
    z-index: 2;
}

.fluid-gallery-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: #ffffff;
    filter: contrast(1.05) saturate(0.95);
    z-index: 1;
    transition: opacity 0.3s ease-in-out;
}

.fluid-gallery-logo {
    position: absolute;
    bottom: 0.5rem;
    right: 0.5rem;
    width: 100px;
    height: auto;
    background: rgba(255, 255, 255, 0.7);
    padding: 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    border-radius: 4px;
    overflow: hidden;
}

.fluid-gallery-logo img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.fluid-gallery-nav {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    width: 28px;
    height: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    z-index: 20;
    border-radius: 50%;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.fluid-gallery-nav:hover {
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transform: translateY(-50%) scale(1.05);
}

.fluid-gallery-nav.prev {
    left: -14px;
}

.fluid-gallery-nav.next {
    right: -14px;
}

.fluid-gallery-dots {
    display: flex;
    gap: 8px;
    margin-top: 18px;
    flex-wrap: wrap;
    justify-content: center;
}

.fluid-gallery-dot {
    width: 6px;
    height: 6px;
    background-color: var(--border-color);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.fluid-gallery-dot.active {
    background-color: var(--text-primary);
    transform: scale(1.4);
}

/* Equipment Grid */
.equipment-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.equipment-card {
    border: 1px solid var(--border-color);
    padding: 2rem;
    background: #ffffff;
    transition: var(--transition);
}

.equipment-card:hover {
    box-shadow: 0 15px 30px rgba(0,0,0,0.04);
    transform: translateY(-5px);
}

.equipment-card h3 {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.equipment-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 400px;
    margin-top: 2rem;
}

.input-field {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border-color);
    background: transparent;
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
    outline: none;
}

.input-field:focus {
    border-color: var(--text-primary);
}

/* FAQ Styling */
.faq-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
    max-width: 600px;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1.5rem;
}

.faq-question {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-primary);
    cursor: pointer;
    list-style: none;
    position: relative;
    padding-right: 2rem;
    outline: none;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--text-secondary);
    transition: var(--transition);
}

details[open] .faq-question::after {
    content: '−';
}

.faq-answer {
    margin-top: 1rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Floating Elements */
.cronoshare-float {
    position: fixed;
    bottom: 20px;
    left: 40px;
    z-index: 100;
    transition: var(--transition);
    transform: scale(0.75);
    transform-origin: bottom left;
}

.cronoshare-float:hover {
    transform: scale(0.75) translateY(-5px);
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    z-index: 100;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
}

.whatsapp-float svg {
    width: 35px;
    height: 35px;
}

/* Responsive & Mobile Menu */
.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger-btn span {
    width: 100%;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
    transform-origin: left center;
}

.hamburger-btn.open span:nth-child(1) {
    transform: rotate(45deg);
}
.hamburger-btn.open span:nth-child(2) {
    opacity: 0;
}
.hamburger-btn.open span:nth-child(3) {
    transform: rotate(-45deg);
}

.nav-links.mobile-active {
    display: flex !important;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    width: 100vw;
    height: calc(100vh - var(--nav-height));
    background: rgba(252, 252, 252, 0.98);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 4rem;
    gap: 2.5rem;
    z-index: 999;
}

.nav-links.mobile-active .nav-link {
    font-size: 1.2rem;
}

@media (max-width: 1024px) {
    .nav-container { padding: 0 2rem; }
    .nav-links { gap: 1.5rem; }
    .left-hero { padding: 2rem; }
    .right-content { padding: 4rem 2rem; }
}

@media (max-width: 768px) {
    .cronoshare-float {
        bottom: 20px;
        left: 20px;
        transform: scale(0.6);
    }
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }

    .nav-container { gap: 1rem; }
    .lang-switch { margin-left: auto; margin-right: 1.5rem; }
    .hamburger-btn { display: flex; }
    .nav-links { display: none; }
    
    .main-container { flex-direction: column; }
    .left-hero, .right-content { width: 100%; }
    .left-hero { border-right: none; border-bottom: 1px solid var(--border-color); padding: 3rem 1.5rem; }
    .hero-frame-wrapper { max-width: 100%; }
    
    .right-content { padding: 3rem 1.5rem; }
    .section-title { font-size: 2.2rem; }
    .section-subtitle { font-size: 1.2rem; }
    
    .equipment-grid { grid-template-columns: 1fr; }
    
    .submenu-overlay {
        position: static;
        width: 100%;
        max-width: 100%;
        box-shadow: none;
        border: none;
        padding: 1rem 0 0.5rem 0;
        transform: none;
        display: none;
    }
    .has-submenu:hover .submenu-overlay,
    .has-submenu:active .submenu-overlay {
        display: block;
    }
    
    .hero-floating-logo {
        width: 207px;
        height: auto;
        bottom: 0;
        right: -1rem;
        transform: translateY(14.5%);
        padding: 0;
        border-radius: 6px;
    }
}

/* Secret Cap and Window */
.secret-cap {
    position: fixed;
    top: 15px;
    right: 15px;
    width: 28px;
    height: auto;
    cursor: pointer;
    z-index: 2000;
    opacity: 0.8;
    transition: var(--transition);
}

.secret-cap:hover {
    opacity: 1;
    transform: scale(1.1);
}

.secret-window {
    background: var(--bg-main);
    border-radius: 8px;
    padding: 3rem 2rem;
    text-align: center;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    position: relative;
    max-width: 400px;
}

.secret-text-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.secret-date {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.secret-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: -0.5rem;
}

.secret-value {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.secret-logo {
    width: 200px;
    height: auto;
    margin: 1.5rem 0;
}

.secret-legal {
    font-size: 0.65rem;
    color: #999;
    margin-top: 1rem;
    font-style: italic;
}
