/* =============================================
   FRONT PAGE — Elevator Experience
   Glass + gradient doors + Red (#EE1B24) accent
   ============================================= */

.front-page-body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    height: 100vh;
    background: #8a8887;
    font-family: "Montserrat", sans-serif;
}

/* =============================================
   SCENE
   ============================================= */
.elevator-scene {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: #8a8887;
}

/* =============================================
   FRAME
   ============================================= */
.elevator-frame {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 20;
    pointer-events: none;
}

.frame-top { display: none; }
.frame-bottom { display: none; }

.frame-left, .frame-right {
    position: absolute;
    top: 0;
    width: 30px; height: 100%;
    z-index: 25;
}

.frame-left {
    left: 0;
    background: linear-gradient(90deg, #8e8c8b, #959392 40%, #9e9c9a 70%, #a3a1a0);
    border-right: 1px solid rgba(0,0,0,0.06);
}

.frame-right {
    right: 0;
    background: linear-gradient(270deg, #8e8c8b, #959392 40%, #9e9c9a 70%, #a3a1a0);
    border-left: 1px solid rgba(0,0,0,0.06);
}

.ceiling-vent {
    position: absolute;
    top: 10px; left: 50%;
    transform: translateX(-50%);
    display: flex; gap: 6px;
}

.ceiling-vent span {
    width: 22px; height: 3px;
    background: #8a8887;
    border-radius: 1px;
    box-shadow: inset 0 1px 1px rgba(0,0,0,0.12), 0 1px 0 rgba(255,255,255,0.2);
}

.floor-threshold {
    position: absolute;
    top: 0; left: 25px; right: 25px;
    height: 4px;
    background: linear-gradient(90deg, #8e8c8b, #989695 5%, #9e9c9a 10%, #989695 50%, #9e9c9a 90%, #989695 95%, #8e8c8b);
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
}

/* =============================================
   FLOOR INDICATOR — glass
   ============================================= */
.elevator-indicator {
    position: absolute;
    top: 12px; left: 50%;
    transform: translateX(-50%);
    z-index: 30;
}

.indicator-frame {
    background: rgba(15,15,15,0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 6px;
    padding: 8px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.06);
}

.indicator-number {
    font-family: 'Courier New', monospace;
    font-size: 32px;
    font-weight: 700;
    color: #EE1B24;
    text-shadow: 0 0 6px rgba(238,27,36,0.9), 0 0 15px rgba(238,27,36,0.4), 0 0 30px rgba(238,27,36,0.2);
    line-height: 1;
    min-width: 30px;
    text-align: center;
    transition: opacity 0.06s ease;
}

.indicator-arrow { animation: arrowBlink 0.5s ease-in-out infinite; }

@keyframes arrowBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.15; }
}

.front-page-body.doors-opened .indicator-arrow { animation: none; opacity: 0.5; }
.front-page-body.navigating .indicator-arrow { animation: arrowBlink 0.5s ease-in-out infinite !important; opacity: 1 !important; }

/* =============================================
   NAV PANEL (right) — glass buttons
   ============================================= */
.elevator-nav-panel {
    position: absolute;
    right: 2px; top: 50%;
    transform: translateY(-50%);
    z-index: 35;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.front-page-body.doors-opened .elevator-nav-panel {
    opacity: 1;
    pointer-events: auto !important;
    z-index: 9999;
}

.panel-btn {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: rgba(20,20,20,0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1.5px solid rgba(255,255,255,0.12);
    color: #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow:
        0 2px 8px rgba(0,0,0,0.3),
        inset 0 1px 0 rgba(255,255,255,0.08);
}

.panel-btn:hover {
    color: #EE1B24;
    background: rgba(238,27,36,0.15);
    border-color: rgba(238,27,36,0.4);
    box-shadow: 0 0 12px rgba(238,27,36,0.25), 0 2px 8px rgba(0,0,0,0.3);
}

.panel-btn:active { transform: scale(0.92); }

.panel-display {
    width: 32px; height: 28px;
    background: rgba(10,10,10,0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1.5px solid rgba(255,255,255,0.06);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 2px 5px rgba(0,0,0,0.3), 0 1px 0 rgba(255,255,255,0.04);
}

.panel-display span {
    font-family: 'Courier New', monospace;
    font-size: 15px;
    font-weight: 700;
    color: #EE1B24;
    text-shadow: 0 0 6px rgba(238,27,36,0.8), 0 0 12px rgba(238,27,36,0.3);
    transition: opacity 0.1s ease;
}

.panel-btn-go {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: rgba(238,27,36,0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1.5px solid rgba(238,27,36,0.35);
    color: #EE1B24;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-top: 3px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.25), 0 0 8px rgba(238,27,36,0.1);
}

.panel-btn-go:hover {
    background: rgba(238,27,36,0.3);
    border-color: rgba(238,27,36,0.6);
    box-shadow: 0 0 18px rgba(238,27,36,0.4), 0 2px 8px rgba(0,0,0,0.25);
    color: #fff;
}

.panel-btn-go:active { transform: scale(0.9); }

/* Floor plate (left) — glass badge */
.elevator-floor-plate {
    position: absolute;
    left: 2px; top: 50%;
    transform: translateY(-50%);
    z-index: 35;
    background: rgba(15,15,15,0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1.5px solid rgba(255,255,255,0.1);
    border-radius: 5px;
    padding: 6px 10px;
    box-shadow:
        0 3px 10px rgba(0,0,0,0.3),
        inset 0 1px 0 rgba(255,255,255,0.06);
}

.elevator-floor-plate span {
    font-family: 'Courier New', monospace;
    font-size: 16px;
    font-weight: 700;
    color: #EE1B24;
    text-shadow: 0 0 6px rgba(238,27,36,0.7), 0 0 14px rgba(238,27,36,0.3);
}

/* =============================================
   DOORS — Gradient brushed steel with color shift
   ============================================= */
.elevator-door {
    position: absolute;
    top: 0;
    width: 50%; height: 100%;
    z-index: 15;
    overflow: hidden;
}

.elevator-door-left {
    left: 30px; width: calc(50% - 30px);
    transition: transform 2.2s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.elevator-door-right {
    right: 30px; width: calc(50% - 30px);
    transition: transform 2.2s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.elevator-door-left.open { transform: translateX(calc(-100% + 10px)); }
.elevator-door-right.open { transform: translateX(calc(100% - 10px)); }

.door-panel { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

.door-steel {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background:
        linear-gradient(180deg,
            rgba(160,140,120,0.12) 0%,
            rgba(140,135,130,0.06) 25%,
            transparent 50%,
            rgba(120,130,145,0.06) 75%,
            rgba(100,115,135,0.12) 100%
        ),
        linear-gradient(92deg,
            #908e8d 0%, #959392 6%, #9e9c9a 12%, #a3a1a0 20%, #a8a6a5 28%,
            #a3a1a0 36%, #9f9d9c 44%, #a3a1a0 52%, #a8a6a5 60%,
            #a3a1a0 68%, #9f9d9c 76%, #989695 84%, #929090 92%, #908e8d 100%
        );
}

.door-steel::before {
    content: '';
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: repeating-linear-gradient(90deg, transparent 0px, rgba(255,255,255,0.03) 1px, transparent 2px, transparent 4px);
}

.door-reflection {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background:
        linear-gradient(168deg, transparent 0%, transparent 20%, rgba(255,255,255,0.07) 30%, rgba(255,255,255,0.14) 40%, rgba(255,255,255,0.07) 50%, transparent 60%),
        radial-gradient(ellipse at 30% 20%, rgba(200,180,150,0.06) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 80%, rgba(150,170,200,0.06) 0%, transparent 60%);
    pointer-events: none;
}

/* Horizontal grooves — warm-to-cool color shift */
.door-groove {
    position: absolute; left: 5%; right: 5%; height: 1px;
    z-index: 2;
}

.door-groove::before {
    content: '';
    position: absolute; top: 0; left: 0; width: 100%; height: 1px;
    background: linear-gradient(90deg,
        transparent,
        rgba(140,120,100,0.12) 10%,
        rgba(80,80,80,0.15) 50%,
        rgba(100,115,140,0.12) 90%,
        transparent);
}

.door-groove::after {
    content: '';
    position: absolute; top: 1px; left: 0; width: 100%; height: 1px;
    background: linear-gradient(90deg,
        transparent,
        rgba(255,240,220,0.12) 10%,
        rgba(255,255,255,0.2) 50%,
        rgba(220,230,255,0.12) 90%,
        transparent);
}

.door-groove-1 { top: 25%; }
.door-groove-2 { top: 50%; }
.door-groove-3 { top: 75%; }

/* Center seam */
.door-seam { position: absolute; top: 0; width: 3px; height: 100%; z-index: 3; }

.door-seam-right {
    right: 0;
    background: linear-gradient(180deg,
        rgba(140,120,100,0.06),
        rgba(0,0,0,0.14) 20%,
        rgba(0,0,0,0.18) 50%,
        rgba(0,0,0,0.14) 80%,
        rgba(100,115,140,0.06));
    box-shadow: 1px 0 0 rgba(255,250,240,0.1);
}

.door-seam-left {
    left: 0;
    background: linear-gradient(180deg,
        rgba(140,120,100,0.06),
        rgba(0,0,0,0.14) 20%,
        rgba(0,0,0,0.18) 50%,
        rgba(0,0,0,0.14) 80%,
        rgba(100,115,140,0.06));
    box-shadow: -1px 0 0 rgba(240,245,255,0.1);
}

/* =============================================
   PROGRESS BAR
   ============================================= */
.elevator-progress {
    position: absolute;
    bottom: 50px; left: 50%;
    transform: translateX(-50%);
    width: 140px; height: 2px;
    background: rgba(0,0,0,0.08);
    z-index: 30;
    border-radius: 1px;
    overflow: hidden;
    transition: opacity 0.5s ease;
}

.front-page-body.doors-opened .elevator-progress { opacity: 0; }
.front-page-body.navigating .elevator-progress { opacity: 1 !important; }

.elevator-progress-bar {
    height: 100%; width: 0%;
    background: linear-gradient(90deg, #EE1B24, #FF5555, #EE1B24);
    border-radius: 1px;
    transition: width 0.25s linear;
    box-shadow: 0 0 6px rgba(238,27,36,0.35);
}

/* =============================================
   CABIN SHAKE
   ============================================= */
@keyframes cabinShake {
    0%, 100% { transform: translateY(0); }
    15% { transform: translateY(-0.4px); }
    35% { transform: translateY(0.3px); }
    55% { transform: translateY(-0.3px); }
    75% { transform: translateY(0.25px); }
}

.elevator-scene.riding { animation: cabinShake 0.45s ease-in-out infinite; }

/* =============================================
   LANDING — Content behind doors
   ============================================= */
.landing-content {
    position: absolute;
    top: 0; left: 30px; right: 30px; bottom: 0;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #8a8887;
    overflow: hidden;
}

.landing-video-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; overflow: hidden;
}

.landing-video-bg video { width: 100%; height: 100%; object-fit: cover; }

.landing-video-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
}

/* Background image */
.landing-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; overflow: hidden;
}

.landing-bg-img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 50%;
}

.landing-bg-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.45);
}

.landing-lang-switcher {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 15px;
}

.landing-inner {
    position: relative; z-index: 2;
    text-align: center;
    padding-top: 60px;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 1s ease 0.5s, transform 1s ease 0.5s;
}

.front-page-body.doors-opened .landing-inner { opacity: 1; transform: translateY(0); }

.front-page-body.navigating .landing-inner {
    opacity: 0 !important;
    transform: translateY(-10px) !important;
    transition: opacity 0.4s ease, transform 0.4s ease !important;
}

/* Logo */
.landing-logo {
    margin-bottom: 25px;
    position: relative;
}

/* Subtle glow behind logo */
.landing-logo-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -55%);
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(238,27,36,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.landing-logo-img {
    height: 75px; width: auto;
    margin: 0 auto; display: block;
    position: relative;
    filter: drop-shadow(0 2px 12px rgba(0,0,0,0.3));
}

.landing-logo-line {
    width: 80px; height: 1px;
    background: linear-gradient(90deg, transparent, #EE1B24 30%, #EE1B24 70%, transparent);
    margin: 16px auto;
    box-shadow: 0 0 8px rgba(238,27,36,0.3);
}

.landing-logo-brand {
    display: block;
    font-family: "Montserrat", sans-serif;
    font-size: 28px;
    font-weight: 200;
    letter-spacing: 14px;
    color: rgba(255,255,255,0.9);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.brand-accent {
    font-weight: 700;
    color: #EE1B24;
    text-shadow: 0 0 15px rgba(238,27,36,0.3);
}


/* =============================================
   NAVIGATION — GLASS ELEVATOR BUTTONS
   ============================================= */
.landing-nav { display: flex; flex-direction: column; gap: 14px; margin-bottom: 45px; align-items: center; }

/* --- Glass capsule button --- */
.elevator-btn {
    display: flex; align-items: center; gap: 0;
    text-decoration: none;
    opacity: 0; transform: translateY(10px);
    transition: opacity 0.5s ease, transform 0.5s ease, background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    position: relative;
    background: rgba(30,30,30,0.55);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 32px;
    padding: 5px;
    box-shadow:
        0 8px 32px rgba(0,0,0,0.2),
        inset 0 1px 0 rgba(255,255,255,0.12);
}

.front-page-body.doors-opened .elevator-btn { opacity: 1; transform: translateY(0); }
.front-page-body.doors-opened .elevator-btn[data-index="1"] { transition-delay: 0.7s; }
.front-page-body.doors-opened .elevator-btn[data-index="2"] { transition-delay: 0.85s; }
.front-page-body.doors-opened .elevator-btn[data-index="3"] { transition-delay: 1.0s; }
.front-page-body.doors-opened .elevator-btn[data-index="4"] { transition-delay: 1.15s; }

/* --- Circle button (glass) --- */
.elevator-btn-circle {
    position: relative;
    width: 50px; height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: 1.5px solid rgba(255,255,255,0.22);
    box-shadow:
        0 4px 12px rgba(0,0,0,0.2),
        inset 0 1px 2px rgba(255,255,255,0.15);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    z-index: 2;
    transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.15s ease;
}

/* Ring */
.elevator-btn-ring {
    display: none;
}

/* Number */
.elevator-btn-num {
    font-family: "Montserrat", sans-serif;
    font-size: 20px; font-weight: 800;
    color: #fff;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
    position: relative; z-index: 1;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

/* --- Label --- */
.elevator-btn-label {
    display: flex; align-items: center;
    padding: 0 28px 0 16px;
    height: 50px;
    font-family: "FiraGO", "Noto Sans Georgian", "Montserrat", sans-serif;
    font-size: 15px; font-weight: 600;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.9);
    text-transform: uppercase;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
    transition: color 0.3s ease, letter-spacing 0.3s ease;
    min-width: 170px;
    white-space: nowrap;
}

/* --- Hover --- */
.elevator-btn:hover {
    background: rgba(60,60,60,0.55);
    border-color: rgba(255,255,255,0.2);
    box-shadow:
        0 8px 32px rgba(0,0,0,0.18),
        inset 0 1px 0 rgba(255,255,255,0.15);
}

.elevator-btn:hover .elevator-btn-circle {
    background: rgba(238,27,36,0.25);
    border-color: rgba(238,27,36,0.45);
    box-shadow:
        0 0 20px rgba(238,27,36,0.4),
        0 4px 12px rgba(0,0,0,0.2),
        inset 0 1px 3px rgba(255,255,255,0.2);
}

.elevator-btn:hover .elevator-btn-circle::before {
    background: radial-gradient(circle, rgba(255,150,150,0.3) 0%, transparent 70%);
}

.elevator-btn:hover .elevator-btn-num {
    text-shadow: 0 0 12px rgba(255,255,255,0.6), 0 0 20px rgba(238,27,36,0.3);
}

.elevator-btn:hover .elevator-btn-label {
    color: #fff;
    letter-spacing: 5px;
}

/* --- Panel-selected --- */
.elevator-btn.panel-selected {
    background: rgba(60,60,60,0.55);
    border-color: rgba(255,255,255,0.18);
}

.elevator-btn.panel-selected .elevator-btn-circle {
    background: rgba(238,27,36,0.3);
    border-color: rgba(238,27,36,0.5);
    box-shadow:
        0 0 22px rgba(238,27,36,0.5),
        0 4px 12px rgba(0,0,0,0.2),
        inset 0 1px 3px rgba(255,255,255,0.15);
}

.elevator-btn.panel-selected .elevator-btn-num {
    text-shadow: 0 0 12px rgba(255,255,255,0.6), 0 0 20px rgba(238,27,36,0.3);
}

.elevator-btn.panel-selected .elevator-btn-label {
    color: #fff;
}

/* --- Active click (pressed) --- */
.elevator-btn.active-click {
    background: rgba(40,40,40,0.5) !important;
    box-shadow:
        0 2px 8px rgba(0,0,0,0.15),
        inset 0 2px 6px rgba(0,0,0,0.08) !important;
}

.elevator-btn.active-click .elevator-btn-circle {
    background: rgba(238,27,36,0.5) !important;
    border-color: rgba(238,27,36,0.7) !important;
    box-shadow:
        0 0 28px rgba(238,27,36,0.7),
        0 0 50px rgba(238,27,36,0.25),
        inset 0 0 6px rgba(255,255,255,0.3) !important;
    transform: scale(0.93);
}

.elevator-btn.active-click .elevator-btn-num {
    color: #fff !important;
    text-shadow: 0 0 15px rgba(255,255,255,0.9) !important;
}

/* =============================================
   PHONE BUTTON — glass
   ============================================= */
.landing-contact { opacity: 0; transition: opacity 1s ease 1.4s; }
.front-page-body.doors-opened .landing-contact { opacity: 1; }

.landing-phone-btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 13px 30px;
    background: rgba(30,30,30,0.55);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 28px;
    text-decoration: none;
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-size: 13px; font-weight: 600;
    letter-spacing: 2px;
    transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
    position: relative; overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12), inset 0 1px 0 rgba(255,255,255,0.1);
}

.landing-phone-btn::before {
    content: '';
    position: absolute; top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s ease;
}

.landing-phone-btn:hover {
    background: rgba(238,27,36,0.85);
    border-color: rgba(238,27,36,0.6);
    color: #fff;
    box-shadow: 0 4px 24px rgba(238,27,36,0.3), 0 2px 8px rgba(0,0,0,0.2);
}

.landing-phone-btn:hover::before { left: 100%; }
.phone-btn-icon { opacity: 0.8; transition: opacity 0.3s ease; }
.landing-phone-btn:hover .phone-btn-icon { opacity: 1; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 768px) {
    .frame-left, .frame-right { width: 20px; }
    .elevator-door-left { left: 20px; width: calc(50% - 20px); }
    .elevator-door-right { right: 20px; width: calc(50% - 20px); }
    .elevator-door { top: 0; height: 100%; }
    .landing-content { top: 0; left: 20px; right: 20px; bottom: 0; }
    .elevator-indicator { top: 8px; }
    .indicator-number { font-size: 24px; }
    .elevator-nav-panel, .elevator-floor-plate { display: none; }
    .landing-logo-img { height: 50px; }
    .landing-logo-tagline { font-size: 10px; letter-spacing: 4px; }
    .elevator-btn { padding: 4px; border-radius: 28px; }
    .elevator-btn-circle { width: 42px; height: 42px; }
    .elevator-btn-ring { inset: -2px; border-width: 1.5px; }
    .elevator-btn-num { font-size: 17px; }
    .elevator-btn-label { font-size: 13px; letter-spacing: 2px; padding: 0 22px 0 12px; height: 42px; min-width: 130px; }
    .landing-nav { gap: 10px; }
    .landing-inner { padding-top: 45px; }
}

@media (max-width: 480px) {
    .frame-left, .frame-right { width: 12px; }
    .elevator-door-left { left: 12px; width: calc(50% - 12px); }
    .elevator-door-right { right: 12px; width: calc(50% - 12px); }
    .elevator-door { top: 0; height: 100%; }
    .landing-content { top: 0; left: 12px; right: 12px; bottom: 0; }
    .landing-logo-img { height: 40px; }
    .elevator-btn { padding: 3px; border-radius: 24px; }
    .elevator-btn-circle { width: 36px; height: 36px; }
    .elevator-btn-ring { inset: -2px; border-width: 1.5px; }
    .elevator-btn-num { font-size: 14px; }
    .elevator-btn-label { font-size: 12px; letter-spacing: 2px; padding: 0 16px 0 10px; height: 36px; min-width: 110px; }
    .landing-nav { gap: 8px; }
    .landing-inner { padding-top: 35px; }
    .landing-phone-btn { padding: 12px 25px; font-size: 12px; }
}
