/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #070707;
    color: #e8e0d8;
    font-family: 'Outfit', 'Inter', 'Space Grotesk', sans-serif;
    font-weight: 200;
    overflow-x: hidden;
    min-height: 100vh;
}

/* ===== VISUALLY HIDDEN (für Accessibility) ===== */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* ===== AMBIENT SPOTLIGHT ===== */
.spotlight-ambient {
    position: fixed;
    top: -30%;
    left: -20%;
    width: 140%;
    height: 140%;
    background: radial-gradient(ellipse at 40% 30%, rgba(60, 55, 50, 0.08), transparent 60%);
    pointer-events: none;
    z-index: 0;
}

/* ===== HEADER ===== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.2rem 3rem;
    background: rgba(7, 7, 7, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.header-logo a {
    display: block;
    text-decoration: none;
}

.header-logo img {
    height: 60px;
    width: auto;
    display: block;
    filter: brightness(0.9);
    transition: filter 0.3s ease;
}

.header-logo img:hover {
    filter: brightness(1.2);
}

.header-nav {
    display: flex;
    gap: 2.5rem;
    font-size: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 300;
    font-family: 'Outfit', sans-serif;
}

.header-nav .nav-link {
    color: #666;
    cursor: pointer;
    transition: color 0.3s ease;
    background: none;
    border: none;
    padding: 0;
    font: inherit;
    letter-spacing: inherit;
}

.header-nav .nav-link:hover,
.header-nav .nav-link:focus {
    color: #aaa;
    outline: none;
}

.header-nav .nav-link:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.2);
    outline-offset: 4px;
}

/* ===== VIDEO HERO ===== */
.video-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    z-index: 1;
}

.hero-static-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 50% 40%, #1a1515, #070707);
    z-index: 1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, transparent 30%, rgba(0, 0, 0, 0.6) 100%);
    pointer-events: none;
    z-index: 2;
}

.video-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 3;
    width: 90%;
    max-width: 800px;
}

.video-tag {
    font-size: 0.7rem;
    letter-spacing: 8px;
    color: #888;
    font-weight: 300;
    margin-bottom: 1rem;
    border-left: 2px solid rgba(255, 255, 255, 0.1);
    padding-left: 16px;
    display: inline-block;
    font-family: 'Outfit', sans-serif;
}

.video-title {
    font-family: 'Space Grotesk', 'Outfit', sans-serif;
    font-size: clamp(3rem, 10vw, 7rem);
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1;
    text-shadow: 0 4px 60px rgba(0, 0, 0, 0.3);
}

.video-title span {
    font-weight: 300;
    color: #888;
}

.video-sub {
    font-size: 0.85rem;
    font-weight: 300;
    color: #999;
    letter-spacing: 4px;
    margin-top: 1rem;
    text-transform: uppercase;
    font-family: 'Outfit', sans-serif;
}

.scroll-down {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #555;
    font-size: 0.6rem;
    letter-spacing: 4px;
    animation: bounceDown 2s ease-in-out infinite;
    font-family: 'Outfit', sans-serif;
}

.scroll-down i {
    font-size: 1rem;
    color: #444;
}

@keyframes bounceDown {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== STAGE ===== */
.hero-stage {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    padding: 3rem 4rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    background: #070707;
}

/* ===== 2 SPALTEN - EXAKT 50/50 ===== */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    flex: 1;
}

/* ===== LINKS - 50% ===== */
.hero-left {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

.stage-tag {
    font-size: 0.7rem;
    letter-spacing: 6px;
    color: #777;
    font-weight: 300;
    border-left: 3px solid rgba(255, 255, 255, 0.3);
    padding-left: 16px;
    font-family: 'Outfit', sans-serif;
}

.hero-name {
    font-family: 'Space Grotesk', 'Outfit', sans-serif;
    font-size: clamp(3.5rem, 10vw, 7rem);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -0.04em;
    color: #fff;
    text-shadow: 0 4px 40px rgba(255, 255, 255, 0.03);
    margin: 0.2rem 0;
}

.hero-role {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    font-size: 0.85rem;
    font-weight: 400;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Outfit', sans-serif;
}

.hero-role span {
    background: rgba(255, 255, 255, 0.03);
    padding: 0.2rem 1.4rem;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.8rem;
    color: #666;
    letter-spacing: 1px;
    font-weight: 300;
    font-family: 'Outfit', sans-serif;
}

/* ===== EQUIPMENT WRAPPER ===== */
.equipment-wrapper {
    width: 100%;
    max-width: 100%;
    margin: 0.3rem 0;
}

/* ===== EQUIPMENT TAG (MINIMALISTISCH) ===== */
.equipment-tag {
    font-size: 0.6rem;
    letter-spacing: 6px;
    color: #555;
    font-weight: 300;
    margin-bottom: 0.4rem;
    font-family: 'Outfit', sans-serif;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-transform: uppercase;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.equipment-tag:hover {
    opacity: 1;
}

.equipment-tag i {
    color: #444;
    font-size: 0.7rem;
}

/* ===== TICKER ===== */
.equipment-ticker {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    padding: 0.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    background: rgba(255, 255, 255, 0.01);
    position: relative;
}

.ticker-track {
    display: flex;
    gap: 0;
    white-space: nowrap;
    animation: tickerScroll 10s linear infinite;
    width: max-content;
    will-change: transform;
}

.ticker-track-inner {
    display: flex;
    gap: 2.5rem;
    white-space: nowrap;
    padding-right: 2.5rem;
}

.ticker-track-inner span {
    display: inline-block;
    font-size: 0.8rem;
    color: #aaa;
    font-weight: 300;
    letter-spacing: 1px;
}

.ticker-track-inner span:nth-child(even) {
    color: #444;
    font-size: 0.4rem;
}

/* Ticker-Pause bei Hover für bessere Lesbarkeit */
.equipment-ticker:hover .ticker-track {
    animation-play-state: paused;
}

@keyframes tickerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== KONTAKT ===== */
.hero-contact {
    display: flex;
    gap: 2.5rem;
    font-size: 0.85rem;
    margin-top: 0.3rem;
    font-family: 'Outfit', sans-serif;
}

.hero-contact a {
    color: #aaa;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    padding-bottom: 3px;
    transition: 0.3s;
}

.hero-contact a:hover,
.hero-contact a:focus {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
    outline: none;
}

.hero-contact a:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.2);
    outline-offset: 4px;
}

.hero-contact i {
    margin-right: 10px;
    width: 18px;
    color: #666;
}

/* ===== RECHTS - 50% ===== */
.hero-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

.portrait-stage {
    position: relative;
    width: 100%;
    max-width: 520px;
    aspect-ratio: 4/5;
    overflow: hidden;
    background: #0f0f0f;
    margin-left: auto;
}

.portrait-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(0.9) contrast(1.15) brightness(0.85);
    transition: transform 0.8s ease, filter 0.8s ease;
}

.portrait-stage:hover .portrait-image,
.portrait-stage:focus-within .portrait-image {
    transform: scale(1.04);
    filter: grayscale(0.6) contrast(1.1) brightness(0.95);
}

.portrait-spotlight {
    position: absolute;
    top: -30%;
    left: -30%;
    width: 160%;
    height: 160%;
    background: radial-gradient(ellipse at 40% 30%, rgba(255, 255, 255, 0.06), transparent 60%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.portrait-stage:hover .portrait-spotlight,
.portrait-stage:focus-within .portrait-spotlight {
    opacity: 1;
}

.portrait-frame {
    position: absolute;
    top: 8px;
    left: 8px;
    width: calc(100% - 16px);
    height: calc(100% - 16px);
    border: 1px solid rgba(255, 255, 255, 0.03);
    pointer-events: none;
}

/* ===== DIVIDER ===== */
.stage-divider {
    width: 80%;
    max-width: 600px;
    height: 1px;
    margin: 2rem auto 0;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.06), transparent);
}

/* ===== SHOWROOM ===== */
.showroom-stage {
    position: relative;
    z-index: 1;
    padding: 4rem 2rem 6rem 2rem;
    background: #070707;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.showroom-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 0 2rem 2rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    margin-bottom: 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.showroom-header h2 {
    font-family: 'Space Grotesk', 'Outfit', sans-serif;
    font-size: 2.8rem;
    font-weight: 300;
    letter-spacing: 8px;
    color: #888;
}

.scroll-indicator {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.7rem;
    color: #444;
    letter-spacing: 4px;
    font-family: 'Outfit', sans-serif;
}

.scroll-indicator span:first-child,
.scroll-indicator span:last-child {
    font-size: 1.2rem;
    color: #555;
}

/* ===== GALLERY WRAPPER ===== */
.gallery-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

/* ===== GALLERY ARROWS ===== */
.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #555;
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 10;
    padding: 0 10px;
    transition: all 0.3s ease;
    opacity: 0.5;
    font-family: 'Outfit', sans-serif;
    line-height: 1;
}

.gallery-arrow:hover {
    color: #aaa;
    opacity: 1;
}

.gallery-arrow:focus {
    color: #aaa;
    opacity: 1;
    outline: none;
}

.gallery-arrow:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.2);
    outline-offset: 4px;
}

.gallery-arrow:disabled {
    opacity: 0.1;
    cursor: not-allowed;
    pointer-events: none;
}

.gallery-arrow-left {
    left: 0;
}

.gallery-arrow-right {
    right: 0;
}

.gallery-arrow i {
    display: block;
    text-shadow: 0 0 40px rgba(0, 0, 0, 0.8);
}

/* ===== GALLERY TRACK ===== */
.gallery-track {
    display: flex;
    gap: 2rem;
    padding: 1rem 0.5rem 2rem 0.5rem;
    scroll-behavior: smooth;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: grab;
}

.gallery-track::-webkit-scrollbar {
    display: none;
}

.gallery-track:active {
    cursor: grabbing;
}

/* ===== GALLERY CARDS ===== */
.gallery-card {
    flex: 0 0 380px;
    height: 440px;
    background: #0f0f0f;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.02);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
    user-select: none;
}

.gallery-card:hover,
.gallery-card:focus-within {
    transform: translateY(-12px);
    border-color: rgba(255, 255, 255, 0.06);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.gallery-card img,
.gallery-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(0.7) brightness(0.8);
    transition: filter 0.6s ease;
    pointer-events: none;
}

.gallery-card:hover img,
.gallery-card:hover video,
.gallery-card:focus-within img,
.gallery-card:focus-within video {
    filter: grayscale(0.2) brightness(0.95);
}

.gallery-card video {
    background: #000;
}

.card-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.2rem 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    font-size: 0.7rem;
    letter-spacing: 4px;
    color: #888;
    font-weight: 300;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s ease;
    font-family: 'Outfit', sans-serif;
    pointer-events: none;
}

.gallery-card:hover .card-caption,
.gallery-card:focus-within .card-caption {
    transform: translateY(0);
    opacity: 1;
}

/* ===== GALLERY INDICATORS ===== */
.gallery-indicators {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 0.5rem;
    padding: 0.5rem;
}

.gallery-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease;
    cursor: pointer;
    padding: 0;
}

.gallery-indicator:hover {
    background: rgba(255, 255, 255, 0.12);
}

.gallery-indicator.active {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.1);
    transform: scale(1.2);
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    position: relative;
    z-index: 1;
    padding: 6rem 4rem 4rem;
    background: #070707;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.contact-inner {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.contact-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    padding-bottom: 2rem;
    margin-bottom: 3rem;
}

.contact-title {
    font-family: 'Space Grotesk', 'Outfit', sans-serif;
    font-size: 2.8rem;
    font-weight: 300;
    letter-spacing: 8px;
    color: #888;
}

/* ===== CONTACT GRID - 50/50 ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* ===== LINKS - KONTAKTINFO (50%) ===== */
.contact-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    font-size: 1.1rem;
    color: #aaa;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
    transition: 0.3s;
}

.contact-item:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.06);
}

.contact-item i {
    width: 24px;
    color: #666;
    font-size: 1.2rem;
}

.contact-item a {
    color: #aaa;
    text-decoration: none;
    transition: 0.3s;
}

.contact-item a:hover,
.contact-item a:focus {
    color: #fff;
    outline: none;
}

.contact-item a:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.2);
    outline-offset: 4px;
}

/* ===== RECHTS - FORMULAR (50%) ===== */
.contact-right {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    width: 100%;
}

.form-input {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 6px;
    padding: 0.8rem 1.2rem;
    color: #e8e0d8;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    transition: 0.3s;
    width: 100%;
}

.form-input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
}

.form-input::placeholder {
    color: #666;
    letter-spacing: 2px;
    font-weight: 300;
}

.form-input:invalid:not(:placeholder-shown) {
    border-color: rgba(255, 100, 100, 0.3);
}

.form-submit {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 6px;
    padding: 0.8rem 2rem;
    color: #aaa;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 4px;
    cursor: pointer;
    transition: 0.3s;
    text-transform: uppercase;
    width: 25%;
    min-width: 120px;
}

.form-submit:hover,
.form-submit:focus {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.08);
    outline: none;
}

.form-submit:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.2);
    outline-offset: 4px;
}

/* ===== FOOTER ===== */
.stage-footer {
    position: relative;
    z-index: 1;
    padding: 2.5rem 4rem;
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    color: #444;
    letter-spacing: 2px;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    max-width: 1400px;
    margin: 0 auto;
    font-family: 'Outfit', sans-serif;
}

.stage-footer span:nth-child(2) {
    color: #555;
    font-size: 0.65rem;
}

/* ===== WHATSAPP ===== */
.whatsapp-trigger {
    position: fixed;
    bottom: 35px;
    right: 35px;
    width: 68px;
    height: 68px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    color: #aaa;
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s ease;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.3);
    padding: 0;
}

.whatsapp-trigger:hover,
.whatsapp-trigger:focus {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.1);
    outline: none;
}

.whatsapp-trigger:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.2);
    outline-offset: 4px;
}

.pulse-ring {
    position: absolute;
    top: -4px;
    left: -4px;
    width: calc(100% + 8px);
    height: calc(100% + 8px);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.04);
    animation: pulse 3s ease-out infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.9);
        opacity: 0.6;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

.whatsapp-menu {
    position: fixed;
    bottom: 120px;
    right: 35px;
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    padding: 20px 22px;
    min-width: 180px;
    z-index: 1000;
    display: none;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8);
}

.whatsapp-menu.aktiv {
    display: block;
}

.menu-inner {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
}

.menu-header {
    font-size: 0.6rem;
    letter-spacing: 6px;
    color: #555;
    text-transform: uppercase;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    margin-bottom: 4px;
    font-family: 'Outfit', sans-serif;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 16px;
    border-radius: 6px;
    color: #bbb;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
    border: 1px solid transparent;
    font-family: 'Outfit', sans-serif;
}

.menu-item i {
    width: 22px;
    font-size: 1rem;
    color: #666;
}

.menu-item:hover,
.menu-item:focus {
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.04);
    color: #fff;
    outline: none;
}

.menu-item:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.2);
    outline-offset: 2px;
}

.menu-item.whatsapp {
    color: #25D366;
}

.menu-item.whatsapp i {
    color: #25D366;
}

.menu-item.whatsapp:hover,
.menu-item.whatsapp:focus {
    background: rgba(37, 211, 102, 0.04);
    border-color: rgba(37, 211, 102, 0.1);
}

.menu-close {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 50%;
    color: #666;
    font-size: 0.7rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
    padding: 0;
}

.menu-close:hover,
.menu-close:focus {
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    outline: none;
}

.menu-close:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.2);
    outline-offset: 2px;
}

/* ===== SELECTION ===== */
::selection {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-stage {
        padding: 3rem 2rem 2rem;
    }
    
    .hero-grid {
        gap: 2rem;
    }

    .contact-grid {
        gap: 2rem;
    }
    
    .gallery-card {
        flex: 0 0 300px;
        height: 360px;
    }
    
    .gallery-wrapper {
        padding: 0 50px;
    }
    
    .gallery-arrow {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-right {
        justify-content: center;
        order: -1;
    }
    
    .portrait-stage {
        max-width: 350px;
        margin: 0 auto;
    }
    
    .hero-contact {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .main-header {
        padding: 1rem 1.5rem;
    }
    
    .header-logo img {
        height: 45px;
    }
    
    .header-nav {
        gap: 1.5rem;
        font-size: 0.8rem;
    }
    
    .showroom-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .showroom-header h2 {
        font-size: 2rem;
    }
    
    .gallery-card {
        flex: 0 0 280px;
        height: 340px;
    }
    
    .gallery-wrapper {
        padding: 0 40px;
    }
    
    .gallery-arrow {
        font-size: 1.8rem;
    }
    
    .gallery-arrow-left {
        left: -5px;
    }
    
    .gallery-arrow-right {
        right: -5px;
    }
    
    .contact-section {
        padding: 4rem 1.5rem 3rem;
    }
    
    .contact-title {
        font-size: 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stage-footer {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
        padding: 2rem;
        text-align: center;
    }
    
    .whatsapp-trigger {
        width: 56px;
        height: 56px;
        font-size: 2rem;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-menu {
        bottom: 90px;
        right: 20px;
        min-width: 160px;
        padding: 16px 18px;
    }
    
    .form-submit {
        width: 100%;
    }

    .equipment-tag {
        font-size: 0.5rem;
        letter-spacing: 4px;
        gap: 0.6rem;
    }
    
    .equipment-tag i {
        font-size: 0.6rem;
    }
    
    .ticker-track-inner span {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .hero-stage {
        padding: 2rem 1rem 1.5rem;
    }
    
    .hero-name {
        font-size: clamp(2.5rem, 15vw, 3.5rem);
    }
    
    .hero-role {
        font-size: 0.7rem;
    }
    
    .hero-role span {
        padding: 0.15rem 1rem;
    }
    
    .portrait-stage {
        max-width: 280px;
    }
    
    .gallery-card {
        flex: 0 0 220px;
        height: 280px;
    }
    
    .gallery-wrapper {
        padding: 0 30px;
    }
    
    .gallery-arrow {
        font-size: 1.4rem;
    }
    
    .gallery-arrow-left {
        left: -10px;
    }
    
    .gallery-arrow-right {
        right: -10px;
    }
    
    .showroom-header h2 {
        font-size: 1.6rem;
    }
    
    .contact-title {
        font-size: 1.6rem;
    }
    
    .contact-section {
        padding: 3rem 1rem 2rem;
    }

    .equipment-ticker {
        padding: 0.4rem 0;
    }
    
    .ticker-track-inner {
        gap: 1.5rem;
        padding-right: 1.5rem;
    }
    
    .ticker-track-inner span {
        font-size: 0.6rem;
    }
    
    .gallery-indicator {
        width: 6px;
        height: 6px;
    }
}