/* ============================================
   Scales Landing Page — Sky Blue Theme
   ============================================ */

/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&family=Roboto:wght@300;400;500;700&display=swap');

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #d5d9de;
    color: #1a1a1a;
    overflow-x: hidden;
    line-height: 1.6;
}

/* ===== Navigation ===== */
.landing-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #3d3529;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.landing-nav .logo {
    font-size: 22px;
    font-weight: 700;
    color: #e8c878;
    text-decoration: none;
    letter-spacing: 1px;
}

.landing-nav .logo span {
    color: #c4b89a;
    font-weight: 300;
}

.landing-nav .nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.landing-nav .nav-links a {
    color: #c4b89a;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.3s;
    letter-spacing: 0.5px;
}

.landing-nav .nav-links a:hover {
    color: #e8c878;
}

/* ===== Hero Section (Evening Sky) ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(
        180deg,
        #0d1321 0%,
        #1a1a3e 15%,
        #2d1b3e 30%,
        #5c2d45 50%,
        #a8553a 70%,
        #d4944a 85%,
        #e8c878 100%
    );
    overflow: hidden;
    padding: 100px 20px 60px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 15% 25%, rgba(180, 100, 60, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 85% 20%, rgba(120, 60, 100, 0.08) 0%, transparent 40%),
        radial-gradient(ellipse at 50% 75%, rgba(232, 200, 120, 0.1) 0%, transparent 40%),
        radial-gradient(ellipse at 30% 60%, rgba(200, 80, 50, 0.06) 0%, transparent 30%);
    animation: heroGlow 25s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes heroGlow {
    0% { transform: translate(0, 0) scale(1); opacity: 0.7; }
    33% { transform: translate(3%, -2%) scale(1.05); opacity: 1; }
    66% { transform: translate(-2%, 2%) scale(0.98); opacity: 0.8; }
    100% { transform: translate(1%, -1%) scale(1.02); opacity: 0.9; }
}

/* Sunset Clouds */
.hero-clouds {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.cloud {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
}

.cloud-1 {
    width: 500px;
    height: 100px;
    top: 10%;
    left: -10%;
    background: rgba(180, 100, 80, 0.12);
    animation: driftCloud 40s linear infinite;
}

.cloud-2 {
    width: 600px;
    height: 120px;
    top: 22%;
    right: -10%;
    background: rgba(200, 120, 60, 0.1);
    animation: driftCloud 50s linear infinite reverse;
}

.cloud-3 {
    width: 350px;
    height: 70px;
    top: 38%;
    left: 15%;
    background: rgba(232, 180, 100, 0.08);
    animation: driftCloud 35s linear infinite;
    animation-delay: -15s;
}

.cloud-4 {
    width: 450px;
    height: 90px;
    top: 55%;
    right: 5%;
    background: rgba(232, 200, 120, 0.1);
    animation: driftCloud 45s linear infinite;
    animation-delay: -8s;
}

@keyframes driftCloud {
    0% { transform: translateX(0); }
    50% { transform: translateX(80px); }
    100% { transform: translateX(0); }
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(255, 220, 150, 0.6);
    border-radius: 50%;
    opacity: 0.4;
    animation: float 10s infinite;
}

.particle:nth-child(1) { top: 15%; left: 8%; animation-delay: 0s; }
.particle:nth-child(2) { top: 55%; left: 85%; animation-delay: 2s; width: 3px; height: 3px; }
.particle:nth-child(3) { top: 25%; left: 45%; animation-delay: 4s; width: 2px; height: 2px; }
.particle:nth-child(4) { top: 65%; left: 15%; animation-delay: 1s; }
.particle:nth-child(5) { top: 8%; left: 65%; animation-delay: 3s; width: 3px; height: 3px; }
.particle:nth-child(6) { top: 75%; left: 55%; animation-delay: 5s; }
.particle:nth-child(7) { top: 35%; left: 92%; animation-delay: 2.5s; width: 2px; height: 2px; }
.particle:nth-child(8) { top: 45%; left: 3%; animation-delay: 4.5s; }

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.4; }
    50% { transform: translateY(-40px) scale(1.8); opacity: 0.8; }
}

/* ===== Flying Bees (emoji) ===== */
.bee {
    position: absolute;
    z-index: 3;
    pointer-events: none;
    font-size: 32px;
    line-height: 1;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

.bee-1 {
    top: 12%;
    left: 5%;
    font-size: 20px;
    animation-name: flyBee1;
    animation-duration: 20s;
}

.bee-2 {
    top: 35%;
    right: 10%;
    font-size: 16px;
    animation-name: flyBee2;
    animation-duration: 24s;
}

.bee-3 {
    top: 55%;
    left: 15%;
    font-size: 22px;
    animation-name: flyBee3;
    animation-duration: 28s;
}

@keyframes flyBee1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    10% { transform: translate(60px, -40px) rotate(5deg); }
    20% { transform: translate(120px, -20px) rotate(-3deg); }
    30% { transform: translate(180px, -60px) rotate(8deg); }
    40% { transform: translate(250px, -30px) rotate(-5deg); }
    50% { transform: translate(300px, -50px) rotate(10deg); }
    60% { transform: translate(250px, -70px) rotate(-8deg); }
    70% { transform: translate(180px, -40px) rotate(6deg); }
    80% { transform: translate(100px, -60px) rotate(-4deg); }
    90% { transform: translate(50px, -30px) rotate(3deg); }
}

@keyframes flyBee2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    15% { transform: translate(-80px, -50px) rotate(-8deg); }
    25% { transform: translate(-160px, -20px) rotate(5deg); }
    35% { transform: translate(-220px, -60px) rotate(-6deg); }
    45% { transform: translate(-280px, -30px) rotate(9deg); }
    55% { transform: translate(-220px, -70px) rotate(-10deg); }
    65% { transform: translate(-150px, -40px) rotate(7deg); }
    75% { transform: translate(-80px, -60px) rotate(-5deg); }
    85% { transform: translate(-30px, -30px) rotate(4deg); }
}

@keyframes flyBee3 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    12% { transform: translate(100px, -60px) rotate(6deg); }
    24% { transform: translate(200px, -30px) rotate(-4deg); }
    36% { transform: translate(280px, -70px) rotate(9deg); }
    48% { transform: translate(200px, -100px) rotate(-7deg); }
    60% { transform: translate(100px, -60px) rotate(5deg); }
    72% { transform: translate(-20px, -90px) rotate(-6deg); }
    84% { transform: translate(-80px, -50px) rotate(8deg); }
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 4;
    max-width: 900px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(232, 200, 120, 0.12);
    border: 1px solid rgba(232, 200, 120, 0.3);
    border-radius: 50px;
    font-size: 13px;
    color: #e8c878;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 30px;
    backdrop-filter: blur(4px);
}

.hero h1 {
    font-size: 52px;
    font-weight: 800;
    color: #f5e8c8;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 3px 30px rgba(0, 0, 0, 0.4);
}

.hero h1 .highlight {
    background: linear-gradient(135deg, #e8c878, #ff8c42);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 18px;
    color: #e8dcc8;
    max-width: 600px;
    margin: 0 auto 40px;
    font-weight: 400;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}

.hero-price {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
}

.hero-price .price-value {
    font-size: 48px;
    font-weight: 800;
    color: #e8c878;
    text-shadow: 0 2px 25px rgba(232, 200, 120, 0.3);
}

.hero-price .price-label {
    font-size: 16px;
    color: #d4c4a8;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, #e8c878, #d4944a);
    color: #1a1a2e;
    box-shadow: 0 4px 25px rgba(232, 200, 120, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(232, 200, 120, 0.45);
}

.btn-secondary {
    background: rgba(232, 200, 120, 0.08);
    color: #e8c878;
    border: 2px solid rgba(232, 200, 120, 0.35);
    backdrop-filter: blur(4px);
}

.btn-secondary:hover {
    background: rgba(232, 200, 120, 0.15);
    border-color: rgba(232, 200, 120, 0.6);
    transform: translateY(-3px);
}

/* ===== Section Common ===== */
.section {
    padding: 100px 20px;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.section-header h2 .highlight {
    background: linear-gradient(135deg, #c4881a, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 16px;
    color: #444444;
    max-width: 500px;
    margin: 0 auto;
    font-weight: 400;
}

/* ===== Features / Specs Section ===== */
.specs {
    background: linear-gradient(180deg, #e8f0f8 0%, #d5dde8 100%);
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.spec-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    padding: 35px 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.spec-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #4a90d9, #7bb3e0);
    opacity: 0;
    transition: opacity 0.3s;
}

.spec-card:hover {
    background: #ffffff;
    border-color: rgba(74, 144, 217, 0.25);
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
}

.spec-card:hover::before {
    opacity: 1;
}

.spec-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 52px;
    line-height: 1;
    color: #4a90d9;
    text-shadow: 0 0 30px rgba(74, 144, 217, 0.15);
}

.spec-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.spec-card p {
    font-size: 14px;
    color: #333333;
    line-height: 1.7;
}

/* ===== Package / Комплектация ===== */
.package-section {
    background: linear-gradient(180deg, #d5dde8 0%, #e8f0f8 100%);
}

.package-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.package-image {
    position: relative;
}

.package-image .device-frame {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.package-image .device-icon {
    font-size: 120px;
    line-height: 1;
    margin-bottom: 20px;
}

.package-image .device-name {
    font-size: 16px;
    color: #444444;
    font-weight: 500;
}

.package-list {
    list-style: none;
}

.package-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.package-list li:last-child {
    border-bottom: none;
}

.package-list .check {
    width: 24px;
    height: 24px;
    min-width: 24px;
    background: rgba(74, 144, 217, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4a90d9;
    font-size: 12px;
    font-weight: 700;
    margin-top: 2px;
}

.package-list .item-title {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 4px;
}

.package-list .item-desc {
    font-size: 13px;
    color: #444444;
    line-height: 1.5;
}

/* ===== Specs Table ===== */
.specs-table-wrap {
    max-width: 800px;
    margin: 50px auto 0;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table tr {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.specs-table tr:last-child {
    border-bottom: none;
}

.specs-table td {
    padding: 16px 20px;
    font-size: 14px;
}

.specs-table td:first-child {
    color: #444444;
    font-weight: 500;
    width: 40%;
}

.specs-table td:last-child {
    color: #1a1a1a;
    font-weight: 600;
}

/* ===== Real Data Section (unchanged — light background) ===== */
.real-data {
    background: #F6F6F1;
}

.real-data .section-header h2 {
    color: #1a1a2e;
}

.real-data .section-header p {
    color: #222222;
}

.real-data-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px;
    min-height: 200px;
}

/* ===== Instructions Section ===== */
.instructions {
    background: linear-gradient(180deg, #e8f0f8 0%, #d5dde8 100%);
}

.instructions-steps {
    max-width: 800px;
    margin: 0 auto;
}

.instruction-step {
    display: flex;
    gap: 25px;
    margin-bottom: 40px;
    position: relative;
}

.instruction-step:last-child {
    margin-bottom: 0;
}

.instruction-step::before {
    content: '';
    position: absolute;
    left: 22px;
    top: 55px;
    bottom: -40px;
    width: 2px;
    background: rgba(74, 144, 217, 0.2);
}

.instruction-step:last-child::before {
    display: none;
}

.step-number {
    width: 46px;
    height: 46px;
    min-width: 46px;
    background: linear-gradient(135deg, #4a90d9, #7bb3e0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
}

.step-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.step-content p {
    font-size: 14px;
    color: #333333;
    line-height: 1.7;
}

/* ===== Contact Section ===== */
.contact {
    background: linear-gradient(180deg, #d5dde8 0%, #e8f0f8 100%);
}

.contact-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 14px;
    color: #333333;
    margin-bottom: 30px;
    line-height: 1.7;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-method .icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: rgba(74, 144, 217, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #4a90d9;
}

.contact-method .label {
    font-size: 12px;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.contact-method .value {
    font-size: 15px;
    color: #1a1a1a;
    font-weight: 600;
}

.contact-form {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    color: #333333;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    background: #eef0f2;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    color: #1a1a1a;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #4a90d9;
    background: #ffffff;
    box-shadow: 0 0 20px rgba(74, 144, 217, 0.12);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #888888;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #4a90d9, #7bb3e0);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Montserrat', sans-serif;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(74, 144, 217, 0.35);
}

/* ===== Scroll Reveal Animations ===== */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* ===== Footer ===== */
.landing-footer {
    background: #c5c9ce;
    padding: 40px 20px;
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.landing-footer p {
    font-size: 13px;
    color: #444444;
    font-weight: 500;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero h1 { font-size: 42px; }
    .package-content { grid-template-columns: 1fr; gap: 40px; }
    .contact-container { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    .landing-nav { padding: 12px 20px; }
    .landing-nav .nav-links { gap: 15px; }
    .landing-nav .nav-links a { font-size: 12px; }
    
    .hero h1 { font-size: 32px; }
    .hero p { font-size: 16px; }
    .hero-price .price-value { font-size: 36px; }
    
    .section { padding: 60px 20px; }
    .section-header h2 { font-size: 28px; }
    
    .specs-grid { grid-template-columns: 1fr; }
    
    .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .landing-nav .nav-links { display: none; }
    
    .hero h1 { font-size: 26px; }
    .hero-price .price-value { font-size: 30px; }
    
    .btn { padding: 14px 28px; font-size: 13px; }
    
    .section-header h2 { font-size: 24px; }
    
    .spec-card { padding: 25px 20px; }
    .contact-form { padding: 25px 20px; }
}

/* ===== Auth Panel (Landing) ===== */
.landing-auth {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: auto;
}

.landing-auth-lng {
    display: flex;
    gap: 6px;
}

.landing-auth-lng a {
    color: #a89878;
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.landing-auth-lng a:hover {
    color: #e8c878;
    background: rgba(232, 200, 120, 0.1);
}

.landing-auth-user {
    display: flex;
    align-items: center;
    gap: 8px;
}

.landing-auth-btns {
    display: flex;
    align-items: center;
    gap: 6px;
}

.landing-auth-btns a {
    color: #c4b89a;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: color 0.3s;
}

.landing-auth-btns a:hover {
    color: #e8c878;
}

.landing-auth-enter a {
    color: #e8c878;
    font-weight: 700;
}

.landing-auth-enter a:hover {
    color: #d4944a;
}

.landing-auth-sep {
    display: inline-block;
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.12);
    margin: 0 4px;
}

.landing-auth-logged {
    display: flex;
    align-items: center;
    gap: 4px;
}

.landing-auth-logged a {
    color: #c4b89a;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    transition: color 0.3s;
}

.landing-auth-logged a:hover {
    color: #e8c878;
}

.landing-auth-exit {
    opacity: 0.5;
}

.landing-auth-exit:hover {
    opacity: 1;
}

.landing-auth-userinfo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.landing-auth-hi {
    color: #d4c4a8;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: color 0.3s;
}

.landing-auth-hi:hover {
    color: #e8c878;
}

.landing-auth-small {
    display: flex;
    align-items: center;
}

.landing-auth-small .auth-ico {
    color: #e8c878;
    font-size: 18px;
}

.landing-auth-full {
    display: flex;
    align-items: center;
    gap: 3px;
    color: #c4b89a;
    font-size: 13px;
    font-weight: 500;
}

/* ===== Auth Popup (Landing) ===== */
.landing-auth-popup-fade {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
}

.landing-auth-popup-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.landing-auth-form-block {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #ffffff;
    border: 1px solid rgba(74, 144, 217, 0.2);
    border-radius: 16px;
    padding: 35px;
    min-width: 340px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.landing-auth-form-block .form {
    margin: 0;
}

.landing-auth-form-block .form-title {
    color: #1a1a2e;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.landing-auth-form-block .field {
    margin-bottom: 16px;
}

.landing-auth-form-block .field input {
    width: 100%;
    padding: 12px 16px;
    background: #eef0f2;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    color: #1a1a1a;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    outline: none;
    transition: all 0.3s;
}

.landing-auth-form-block .field input:focus {
    border-color: #4a90d9;
    background: #ffffff;
    box-shadow: 0 0 20px rgba(74, 144, 217, 0.12);
}

.landing-auth-form-block .field input::placeholder {
    color: #888888;
}

.landing-auth-form-block .btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #4a90d9, #7bb3e0);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Montserrat', sans-serif;
}

.landing-auth-form-block .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(74, 144, 217, 0.35);
}

.landing-forgot-passw {
    text-align: center;
    margin: 10px 0;
}

.landing-forgot-passw a {
    color: #666666;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    transition: color 0.3s;
}

.landing-forgot-passw a:hover {
    color: #4a90d9;
}

/* ===== Auth Panel Responsive ===== */
@media (max-width: 1024px) {
    .landing-auth {
        gap: 10px;
    }
    
    .landing-auth-lng a {
        font-size: 10px;
        padding: 3px 6px;
    }
    
    .landing-auth-full {
        display: none;
    }
}

@media (max-width: 768px) {
    .landing-auth-lng {
        display: none;
    }
    
    .landing-auth-btns a {
        font-size: 12px;
    }
    
    .landing-auth-form-block {
        min-width: 300px;
        padding: 25px;
        margin: 0 15px;
    }
}

@media (max-width: 480px) {
    .landing-auth-userinfo .landing-auth-full {
        display: none;
    }
    
    .landing-auth-logged a {
        font-size: 11px;
    }
}
