/**
 * Light Cyberpunk Cabinet Landing
 * Theme: Clean tech with neon accents
 * 26.01.2026
 */

/* === CSS VARIABLES === */
.cabinet-landing {
    --cab-bg: #f0f4f8;
    --cab-card: rgba(255, 255, 255, 0.85);
    --cab-text: #0a1628;
    --cab-text-muted: #5a6a7a;
    --cab-primary: #0066ff;
    --cab-secondary: #00d4aa;
    --cab-accent: #ff0099;
    --cab-neon: #00f3ff;
    --cab-neon-glow: 0 0 20px rgba(0, 243, 255, 0.5);
    --cab-border: rgba(0, 102, 255, 0.2);
    --cab-glass: rgba(255, 255, 255, 0.7);
    --cab-radius: 16px;
    --cab-font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --cab-font-mono: 'JetBrains Mono', 'Fira Code', monospace;
}

/* Dark Theme */
.cabinet-landing.dark-theme {
    --cab-bg: #0a1628;
    --cab-card: rgba(20, 35, 60, 0.85);
    --cab-text: #e8f0ff;
    --cab-text-muted: #8a9ab0;
    --cab-glass: rgba(20, 35, 60, 0.7);
    --cab-border: rgba(0, 243, 255, 0.3);
}

/* === BASE STYLES === */
.cabinet-landing {
    background: var(--cab-bg);
    color: var(--cab-text);
    font-family: var(--cab-font);
    line-height: 1.6;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

.cabinet-landing .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* === THEME TOGGLE === */
.theme-toggle {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 1000;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--cab-glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--cab-border);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: var(--cab-neon-glow);
}

.theme-toggle:hover {
    transform: scale(1.1);
}

.theme-toggle svg {
    width: 24px;
    height: 24px;
    color: var(--cab-primary);
}

.theme-toggle .icon-moon {
    display: none;
}

.dark-theme .theme-toggle .icon-sun {
    display: none;
}

.dark-theme .theme-toggle .icon-moon {
    display: block;
    color: var(--cab-neon);
}

/* === BACK LINK === */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--cab-text-muted);
    text-decoration: none;
    font-size: 14px;
    padding: 20px 0;
    transition: color 0.3s;
}

.back-link:hover {
    color: var(--cab-primary);
}

/* === HERO SECTION === */
.cab-hero {
    padding: 60px 0 80px;
    position: relative;
    overflow: hidden;
}

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

.cab-hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    font-family: var(--cab-font-mono);
    text-transform: uppercase;
    letter-spacing: -1px;
}

/* Glitch Effect */
.glitch-text {
    position: relative;
}

.glitch-text.glitch-active::before,
.glitch-text.glitch-active::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch-text.glitch-active::before {
    left: 2px;
    text-shadow: -2px 0 var(--cab-accent);
    clip: rect(24px, 550px, 90px, 0);
    animation: glitch-anim-1 0.3s infinite linear alternate-reverse;
}

.glitch-text.glitch-active::after {
    left: -2px;
    text-shadow: 2px 0 var(--cab-neon);
    clip: rect(85px, 550px, 140px, 0);
    animation: glitch-anim-2 0.3s infinite linear alternate-reverse;
}

@keyframes glitch-anim-1 {
    0% { clip: rect(20px, 9999px, 50px, 0); }
    50% { clip: rect(60px, 9999px, 100px, 0); }
    100% { clip: rect(10px, 9999px, 40px, 0); }
}

@keyframes glitch-anim-2 {
    0% { clip: rect(70px, 9999px, 120px, 0); }
    50% { clip: rect(30px, 9999px, 80px, 0); }
    100% { clip: rect(90px, 9999px, 140px, 0); }
}

.cab-hero-subtitle {
    font-size: 1.25rem;
    color: var(--cab-text-muted);
    margin-bottom: 30px;
}

.cab-app-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.cab-app-btn {
    display: inline-block;
    background: #000;
    padding: 10px 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.cab-app-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cab-sms-form {
    max-width: 400px;
}

.cab-sms-label {
    font-size: 14px;
    color: var(--cab-text-muted);
    margin-bottom: 10px;
}

.cab-sms-input-group {
    display: flex;
    gap: 10px;
}

.cab-input {
    flex: 1;
    padding: 14px 18px;
    border: 2px solid var(--cab-border);
    border-radius: 12px;
    background: var(--cab-glass);
    backdrop-filter: blur(10px);
    font-size: 16px;
    color: var(--cab-text);
    transition: all 0.3s ease;
}

.cab-input:focus {
    outline: none;
    border-color: var(--cab-primary);
    box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.1);
}

.dark-theme .cab-input {
    background: rgba(20, 35, 60, 0.6);
    color: #fff;
}

.cab-btn-primary {
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--cab-primary), var(--cab-secondary));
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cab-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.3);
}

.cab-btn-large {
    padding: 18px 40px;
    font-size: 18px;
}

/* Hero Visual */
.cab-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cab-qr-block {
    background: var(--cab-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--cab-border);
    border-radius: var(--cab-radius);
    padding: 30px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.cab-qr-img {
    border-radius: 12px;
    margin-bottom: 15px;
}

.cab-qr-label {
    font-size: 14px;
    color: var(--cab-text-muted);
    font-family: var(--cab-font-mono);
}

/* Hero Lines Background */
.cab-hero-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, transparent 98%, var(--cab-border) 100%),
        linear-gradient(0deg, transparent 98%, var(--cab-border) 100%);
    background-size: 80px 80px;
    pointer-events: none;
    opacity: 0.5;
}

/* === FEATURES SECTION === */
.cab-features {
    padding: 80px 0;
}

.cab-section-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    font-family: var(--cab-font-mono);
}

.cab-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.cab-feature-card {
    background: var(--cab-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--cab-border);
    border-radius: var(--cab-radius);
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.cab-feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--cab-neon);
    box-shadow: var(--cab-neon-glow);
}

.cab-feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cab-feature-icon svg {
    width: 48px;
    height: 48px;
    stroke: var(--cab-primary);
    filter: drop-shadow(0 0 8px var(--cab-primary));
    transition: all 0.3s ease;
}

.cab-feature-card:hover .cab-feature-icon svg {
    stroke: var(--cab-neon);
    filter: drop-shadow(0 0 15px var(--cab-neon));
}

.cab-feature-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--cab-text);
    text-decoration: none;
}

a.cab-feature-title:hover {
    color: var(--cab-primary);
}

/* === CALCULATOR SECTION === */
.cab-calculator {
    padding: 80px 0;
    background: linear-gradient(180deg, transparent, rgba(0, 102, 255, 0.03), transparent);
}

.cab-calc-card {
    background: var(--cab-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--cab-border);
    border-radius: var(--cab-radius);
    padding: 40px;
    max-width: 700px;
    margin: 0 auto;
}

.cab-calc-sliders {
    margin-bottom: 30px;
}

.cab-calc-row {
    display: grid;
    grid-template-columns: 180px 1fr 80px;
    gap: 20px;
    align-items: center;
    margin-bottom: 20px;
}

.cab-calc-row label {
    font-size: 14px;
    color: var(--cab-text-muted);
}

.cab-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: var(--cab-border);
    outline: none;
}

.cab-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--cab-primary);
    cursor: pointer;
    box-shadow: 0 0 15px var(--cab-primary);
    transition: all 0.3s ease;
}

.cab-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.cab-calc-value {
    font-family: var(--cab-font-mono);
    font-size: 14px;
    color: var(--cab-primary);
    text-align: right;
}

.cab-calc-result {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--cab-border);
}

.cab-calc-result-label {
    display: block;
    font-size: 14px;
    color: var(--cab-text-muted);
    margin-bottom: 10px;
}

.cab-calc-result-value {
    font-size: 4rem;
    font-weight: 800;
    font-family: var(--cab-font-mono);
    color: var(--cab-primary);
    text-shadow: 0 0 30px var(--cab-primary);
}

.cab-calc-result-unit {
    display: block;
    font-size: 1.25rem;
    color: var(--cab-text-muted);
    margin-top: 5px;
}

/* === GPON SECTION === */
.cab-gpon {
    padding: 80px 0;
}

.cab-gpon-card {
    background: var(--cab-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--cab-border);
    border-radius: var(--cab-radius);
    padding: 50px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

/* Battery */
.cab-battery {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-bottom: 20px;
    position: relative;
}

.cab-battery-body {
    width: 200px;
    height: 80px;
    border: 3px solid var(--cab-primary);
    border-radius: 10px;
    padding: 8px;
    position: relative;
    box-shadow: 0 0 20px var(--cab-primary);
}

.cab-battery-level {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--cab-secondary), var(--cab-neon));
    border-radius: 4px;
    transition: width 1.5s ease-out;
    box-shadow: 0 0 20px var(--cab-secondary);
    animation: battery-pulse 2s infinite;
}

@keyframes battery-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.cab-battery-tip {
    width: 10px;
    height: 30px;
    background: var(--cab-primary);
    border-radius: 0 4px 4px 0;
    box-shadow: 0 0 10px var(--cab-primary);
}

.cab-battery-text {
    position: absolute;
    font-size: 2rem;
    font-weight: 800;
    font-family: var(--cab-font-mono);
    color: var(--cab-text);
    text-shadow: 0 0 10px var(--cab-bg);
}

.cab-gpon-hours {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--cab-primary);
}

.cab-gpon-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.cab-gpon-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    border-bottom: 1px solid var(--cab-border);
}

.cab-gpon-list li:last-child {
    border-bottom: none;
}

.cab-gpon-list li::before {
    content: '▲';
    position: absolute;
    left: 0;
}

.cab-gpon-list a {
    color: var(--cab-primary);
    text-decoration: none;
}

.cab-gpon-list a:hover {
    text-decoration: underline;
}

/* === SOCIAL PROOF === */
.cab-social-proof {
    padding: 80px 0;
    background: linear-gradient(180deg, transparent, rgba(0, 212, 170, 0.05), transparent);
}

.cab-proof-card {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.cab-proof-counter {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.cab-counter-value {
    font-size: 4rem;
    font-weight: 800;
    font-family: var(--cab-font-mono);
    color: var(--cab-secondary);
    text-shadow: 0 0 30px var(--cab-secondary);
}

.cab-counter-plus {
    font-size: 2rem;
    color: var(--cab-secondary);
}

.cab-proof-label {
    font-size: 1.25rem;
    color: var(--cab-text-muted);
    margin: 10px 0 20px;
}

.cab-proof-stars {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.cab-proof-stars span {
    font-size: 1rem;
    color: var(--cab-text-muted);
    margin-left: 10px;
}

.cab-proof-link {
    display: inline-block;
    color: var(--cab-primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cab-proof-link:hover {
    color: var(--cab-secondary);
}

.cab-encrypted {
    font-size: 12px;
    color: var(--cab-text-muted);
    margin-top: 20px;
    font-family: var(--cab-font-mono);
}

/* === HELP SECTION === */
.cab-help {
    padding: 80px 0;
}

.cab-help-card {
    background: var(--cab-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--cab-border);
    border-radius: var(--cab-radius);
    padding: 50px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cab-help-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.cab-help-subtitle {
    color: var(--cab-text-muted);
    margin-bottom: 30px;
}

.cab-help-form {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.cab-help-or {
    color: var(--cab-text-muted);
    margin-bottom: 20px;
}

.cab-messengers {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.cab-messenger-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    color: #fff;
    transition: all 0.3s ease;
}

.cab-messenger-btn.cab-tg {
    background: linear-gradient(135deg, #2AABEE, #229ED9);
}

.cab-messenger-btn.cab-wa {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.cab-messenger-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* === FAQ SECTION === */
.cab-faq {
    padding: 80px 0;
    background: linear-gradient(180deg, transparent, rgba(0, 102, 255, 0.03), transparent);
}

.cab-faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.cab-faq-item {
    background: var(--cab-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--cab-border);
    border-radius: var(--cab-radius);
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.cab-faq-item:hover {
    border-color: var(--cab-primary);
}

.cab-faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    list-style: none;
}

.cab-faq-item summary::-webkit-details-marker {
    display: none;
}

.cab-faq-item summary h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    color: var(--cab-text);
}

.cab-faq-arrow {
    width: 24px;
    height: 24px;
    stroke: var(--cab-text-muted);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.cab-faq-item[open] .cab-faq-arrow {
    transform: rotate(180deg);
}

.cab-faq-answer {
    padding: 0 25px 20px;
    color: var(--cab-text-muted);
    line-height: 1.7;
}

.cab-faq-answer a {
    color: var(--cab-primary);
    text-decoration: none;
}

.cab-faq-answer a:hover {
    text-decoration: underline;
}

/* === FINAL CTA === */
.cab-cta {
    padding: 100px 0;
}

.cab-cta-card {
    background: linear-gradient(135deg, var(--cab-primary), var(--cab-secondary));
    border-radius: 24px;
    padding: 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cab-cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, transparent 98%, rgba(255,255,255,0.1) 100%),
        linear-gradient(0deg, transparent 98%, rgba(255,255,255,0.1) 100%);
    background-size: 40px 40px;
    pointer-events: none;
}

.cab-cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
}

.cab-cta-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.cab-cta-form {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.cab-cta-form .cab-input {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
}

.cab-cta-form .cab-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.cab-cta-form .cab-btn-primary {
    background: #fff;
    color: var(--cab-primary);
}

.cab-cta-form .cab-btn-primary:hover {
    background: #f0f4f8;
}

.cab-cta-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cab-cta-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.cab-cta-links a:hover {
    color: #fff;
}

/* === NAVIGATION === */
.cab-navigation {
    padding: 40px 0;
    border-top: 1px solid var(--cab-border);
}

.cab-navigation .container {
    display: flex;
    justify-content: space-between;
}

.cab-nav-link {
    color: var(--cab-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.cab-nav-link:hover {
    color: var(--cab-secondary);
}

/* === STICKY CTA === */
.cab-sticky-cta {
    position: fixed;
    bottom: -100px;
    left: 0;
    right: 0;
    padding: 15px 20px;
    background: var(--cab-glass);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--cab-border);
    z-index: 999;
    transition: bottom 0.3s ease;
    display: none;
}

.cab-sticky-cta.visible {
    bottom: 0;
}

.cab-sticky-btn {
    display: block;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    padding: 16px 30px;
    background: linear-gradient(135deg, var(--cab-primary), var(--cab-secondary));
    color: #fff;
    text-align: center;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
}

/* === MODAL === */
.cab-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cab-modal.active {
    opacity: 1;
    visibility: visible;
}

.cab-modal-content {
    background: var(--cab-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--cab-border);
    border-radius: 24px;
    padding: 50px;
    text-align: center;
    max-width: 400px;
    position: relative;
}

.cab-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--cab-text-muted);
    cursor: pointer;
}

.cab-modal-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--cab-secondary), var(--cab-neon));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #fff;
    margin: 0 auto 20px;
    box-shadow: 0 0 30px var(--cab-secondary);
}

.cab-modal h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.cab-modal p {
    color: var(--cab-text-muted);
}

/* === RESPONSIVE === */
@media (max-width: 991px) {
    .cab-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .cab-hero-visual {
        order: -1;
    }
    
    .cab-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cab-calc-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .cab-sticky-cta {
        display: block;
    }
    
    .theme-toggle {
        top: 80px;
        right: 10px;
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 600px) {
    .cab-features-grid {
        grid-template-columns: 1fr;
    }
    
    .cab-app-buttons {
        flex-direction: column;
    }
    
    .cab-sms-input-group {
        flex-direction: column;
    }
    
    .cab-help-form {
        flex-direction: column;
    }
    
    .cab-cta-form {
        flex-direction: column;
    }
    
    .cab-messengers {
        flex-direction: column;
    }
    
    .cab-cta-card {
        padding: 40px 25px;
    }
    
    .cab-cta-title {
        font-size: 1.75rem;
    }
}

/* === ORIGINAL CONTENT SECTION (SEO) === */
.cab-original-content {
    padding: 60px 0;
}

.cab-original-accordion {
    background: var(--cab-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--cab-border);
    border-radius: var(--cab-radius);
    overflow: hidden;
}

.cab-original-accordion summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 30px;
    cursor: pointer;
    list-style: none;
    background: linear-gradient(135deg, var(--cab-primary), var(--cab-secondary));
}

.cab-original-accordion summary::-webkit-details-marker {
    display: none;
}

.cab-original-accordion summary h2 {
    margin: 0;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
}

.cab-original-accordion summary::after {
    content: '▼';
    color: #fff;
    transition: transform 0.3s ease;
}

.cab-original-accordion[open] summary::after {
    transform: rotate(180deg);
}

.cab-original-text {
    padding: 30px;
    line-height: 1.8;
    color: var(--cab-text);
}

.cab-original-text p {
    margin-bottom: 15px;
}

.cab-original-text a {
    color: var(--cab-primary);
    text-decoration: none;
}

.cab-original-text a:hover {
    text-decoration: underline;
}

.cab-original-text strong {
    color: var(--cab-text);
}

/* === CUSTOMER/PROSPECT VISIBILITY === */
/* Hide by default, show based on body class */
.promo-gigabit { display: none; }
.promo-iphone { display: none; }

/* For prospects (new visitors) - show Gigabit */
body.wt-prospect .promo-gigabit { display: block; }
body.wt-prospect .promo-iphone { display: none !important; }

/* For customers - show iPhone/Rewards */
body.wt-customer .promo-gigabit { display: none !important; }
body.wt-westelecom-ip .promo-gigabit { display: none !important; }
body.wt-customer .promo-iphone { display: block; }
body.wt-westelecom-ip .promo-iphone { display: block; }

/* Default fallback if no class yet */
body:not(.wt-customer):not(.wt-prospect):not(.wt-westelecom-ip) .promo-gigabit { display: block; }

/* === PROMO BLOCK AFTER HERO === */
.cab-promo-hero {
    padding: 40px 0;
}

.cab-promo-card {
    background: var(--cab-card);
    backdrop-filter: blur(20px);
    border: 2px solid var(--cab-border);
    border-radius: var(--cab-radius);
    padding: 40px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.cab-promo-gigabit {
    border-color: var(--cab-neon);
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.2);
}

.cab-promo-rewards {
    border-color: #ff6b00;
    box-shadow: 0 0 30px rgba(255, 107, 0, 0.2);
}

.cab-promo-badge {
    display: inline-block;
    padding: 5px 15px;
    background: var(--cab-primary);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    font-family: var(--cab-font-mono);
    border-radius: 20px;
    margin-bottom: 15px;
}

.cab-promo-rewards .cab-promo-badge {
    background: linear-gradient(135deg, #ff6b00, #ff0066);
}

.cab-promo-title {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 10px;
    font-family: var(--cab-font-mono);
}

.cab-promo-desc {
    color: var(--cab-text-muted);
    margin-bottom: 20px;
}

.cab-promo-price {
    margin-bottom: 20px;
}

.cab-price-value {
    font-size: 4rem;
    font-weight: 800;
    color: var(--cab-neon);
    font-family: var(--cab-font-mono);
    text-shadow: 0 0 20px var(--cab-neon);
}

.cab-price-unit {
    font-size: 1.5rem;
    color: var(--cab-text-muted);
}

.cab-price-forever {
    display: block;
    font-size: 14px;
    color: var(--cab-secondary);
    font-weight: 700;
}

.cab-promo-prizes {
    font-size: 14px;
    color: var(--cab-text-muted);
    margin-bottom: 20px;
}

.cab-promo-btn {
    min-width: 200px;
}

/* === SYSTEM LOG SECTION === */
.cab-system-log {
    padding: 60px 0;
}

.cab-log-container {
    background: var(--cab-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--cab-border);
    border-radius: var(--cab-radius);
    overflow: hidden;
    font-family: var(--cab-font-mono);
}

.cab-log-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 25px;
    background: linear-gradient(135deg, var(--cab-primary), var(--cab-secondary));
    color: #fff;
}

.cab-log-title {
    font-size: 14px;
    font-weight: 700;
}

.cab-log-status {
    font-size: 12px;
    padding: 3px 10px;
    background: rgba(0, 255, 0, 0.2);
    border-radius: 10px;
    color: #0f0;
}

.cab-log-content {
    padding: 25px;
    background: linear-gradient(180deg, transparent, rgba(0, 102, 255, 0.02));
}

.cab-log-section {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px dashed var(--cab-border);
}

.cab-log-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.cab-log-header-line {
    font-size: 14px;
    color: var(--cab-primary);
    font-weight: 700;
    margin-bottom: 15px;
}

.cab-log-status-line {
    font-size: 14px;
    color: var(--cab-secondary);
    font-weight: 600;
}

.cab-log-text {
    font-size: 14px;
    color: var(--cab-text);
    margin: 8px 0;
}

.cab-log-text a {
    color: var(--cab-neon);
    text-decoration: none;
}

.cab-log-text a:hover {
    text-decoration: underline;
}

.cab-log-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cab-log-list li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--cab-text);
    transition: all 0.3s ease;
    cursor: default;
}

.cab-log-list li:hover {
    color: var(--cab-neon);
    text-shadow: 0 0 10px var(--cab-neon);
}

.cab-log-check {
    color: var(--cab-secondary);
    margin-right: 10px;
}

.cab-log-dots {
    color: var(--cab-text-muted);
    opacity: 0.5;
}

.cab-log-phones li {
    font-weight: 600;
}

/* === GPON GRID === */
.cab-gpon-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
}

.cab-gpon-promo {
    height: 100%;
}

.cab-spec-card {
    background: var(--cab-card);
    backdrop-filter: blur(20px);
    border: 2px solid var(--cab-neon);
    border-radius: var(--cab-radius);
    padding: 30px;
    height: 100%;
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.15);
}

.cab-spec-rewards {
    border-color: #ff6b00;
    box-shadow: 0 0 20px rgba(255, 107, 0, 0.15);
}

.cab-spec-header {
    font-size: 14px;
    font-weight: 700;
    font-family: var(--cab-font-mono);
    color: var(--cab-primary);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px dashed var(--cab-border);
}

.cab-spec-rewards .cab-spec-header {
    color: #ff6b00;
}

.cab-spec-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    font-family: var(--cab-font-mono);
    font-size: 14px;
}

.cab-spec-list li {
    padding: 10px 0;
    border-bottom: 1px dotted var(--cab-border);
    color: var(--cab-text);
}

.cab-spec-list li:last-child {
    border-bottom: none;
}

.cab-spec-check {
    color: var(--cab-secondary);
    margin-right: 8px;
}

.cab-spec-dots {
    color: var(--cab-text-muted);
    opacity: 0.3;
}

.cab-spec-list strong {
    color: var(--cab-neon);
}

.cab-spec-rewards .cab-spec-list strong {
    color: #ff6b00;
}

/* === STICKY CTA === */
.cab-sticky-cta {
    position: fixed;
    bottom: -100px;
    left: 0;
    right: 0;
    padding: 15px 20px;
    background: var(--cab-glass);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--cab-border);
    z-index: 999;
    transition: bottom 0.3s ease;
}

.cab-sticky-cta.visible {
    bottom: 0;
}

.cab-sticky-btn {
    display: block;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    padding: 16px 30px;
    background: linear-gradient(135deg, var(--cab-primary), var(--cab-secondary));
    color: #fff;
    text-align: center;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

.cab-sticky-rewards {
    background: linear-gradient(135deg, #ff6b00, #ff0066);
}

/* === MODAL IMPROVEMENTS === */
.cab-modal-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 20px 0;
}

.cab-modal-messengers {
    font-size: 14px;
    color: var(--cab-text-muted);
    margin-top: 15px;
}

.cab-modal-messengers a {
    color: var(--cab-primary);
    text-decoration: none;
}

.cab-modal-messengers a:hover {
    text-decoration: underline;
}

.cab-success-icon {
    background: linear-gradient(135deg, var(--cab-secondary), #00ff88) !important;
}

/* === RESPONSIVE === */
@media (max-width: 991px) {
    .cab-gpon-grid {
        grid-template-columns: 1fr;
    }
    
    .cab-sticky-cta {
        display: block;
    }
}

@media (max-width: 600px) {
    .cab-log-list li {
        font-size: 12px;
    }
    
    .cab-log-dots {
        display: none;
    }
    
    .cab-price-value {
        font-size: 3rem;
    }
}

/* === FIX: Modal Input - White Text === */
.cab-modal .cab-input,
.cab-modal input[type="tel"] {
    background: rgba(10, 22, 40, 0.9) !important;
    border: 2px solid var(--cab-neon) !important;
    color: #fff !important;
    font-size: 18px;
    padding: 16px 20px;
    border-radius: 12px;
    -webkit-text-fill-color: #fff !important;
    text-shadow: 0 0 10px var(--cab-neon);
}

.cab-modal .cab-input::placeholder,
.cab-modal input[type="tel"]::placeholder {
    color: rgba(255, 255, 255, 0.6) !important;
    -webkit-text-fill-color: rgba(255, 255, 255, 0.6) !important;
}

.cab-modal .cab-input:focus,
.cab-modal input[type="tel"]:focus {
    outline: none;
    border-color: var(--cab-secondary) !important;
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.4);
}

.cab-modal .cab-input:-webkit-autofill,
.cab-modal input[type="tel"]:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px rgba(10, 22, 40, 0.95) inset !important;
    -webkit-text-fill-color: #fff !important;
    caret-color: #fff !important;
}

/* === Modal Icon - SVG Style === */
.cab-modal-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cab-primary), var(--cab-secondary));
    box-shadow: 0 0 30px var(--cab-neon);
}

.cab-modal-icon svg {
    width: 30px;
    height: 30px;
    stroke: #fff;
    fill: none;
    stroke-width: 2;
    filter: drop-shadow(0 0 5px #fff);
}

.cab-success-icon {
    background: linear-gradient(135deg, #00c853, #00ff88) !important;
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.5) !important;
}

/* === CONTRACT FORM SECTION === */
.cab-contract {
    padding: 60px 0;
    background: linear-gradient(180deg, transparent, rgba(0, 102, 255, 0.03));
}

.cab-contract-card {
    background: var(--cab-card);
    backdrop-filter: blur(20px);
    border: 2px solid var(--cab-border);
    border-radius: var(--cab-radius);
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
}

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

.cab-contract-subtitle {
    color: var(--cab-text-muted);
    margin-top: 10px;
}

.cab-contract-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cab-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.cab-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cab-form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--cab-text);
}

.cab-form-full {
    grid-column: 1 / -1;
}

.cab-textarea {
    resize: vertical;
    min-height: 80px;
}

.cab-form-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 10px;
}

.cab-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 30px;
    background: transparent;
    border: 2px solid var(--cab-primary);
    color: var(--cab-primary);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cab-btn-secondary:hover {
    background: var(--cab-primary);
    color: #fff;
    box-shadow: 0 0 20px var(--cab-neon);
}

.cab-btn-secondary svg {
    flex-shrink: 0;
}

/* Phone links in System Log */
.cab-log-phones a {
    color: var(--cab-neon) !important;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cab-log-phones a:hover {
    text-shadow: 0 0 15px var(--cab-neon);
}

/* Telegram button inline */
.cab-tg-inline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #0088cc, #00aaff);
    color: #fff !important;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    margin-left: 10px;
}

.cab-tg-inline:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 136, 204, 0.4);
}

.cab-tg-inline svg {
    width: 18px;
    height: 18px;
}

@media (max-width: 600px) {
    .cab-form-row {
        grid-template-columns: 1fr;
    }
    
    .cab-form-actions {
        flex-direction: column;
    }
    
    .cab-btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* === SCANNING EFFECT === */
.cab-hero-visual {
    position: relative;
    overflow: hidden;
}

.cab-hero-visual::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--cab-neon) 20%, 
        var(--cab-secondary) 50%, 
        var(--cab-neon) 80%, 
        transparent 100%);
    box-shadow: 
        0 0 10px var(--cab-neon),
        0 0 20px var(--cab-neon),
        0 0 40px rgba(0, 243, 255, 0.5);
    animation: scanLine 3s ease-in-out infinite;
    z-index: 10;
    pointer-events: none;
}

@keyframes scanLine {
    0%, 100% {
        top: 10%;
        opacity: 0.8;
    }
    50% {
        top: 90%;
        opacity: 1;
    }
}

/* Scan glow trail effect */
.cab-hero-visual::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 30px;
    background: linear-gradient(180deg, 
        rgba(0, 243, 255, 0.15) 0%, 
        transparent 100%);
    animation: scanGlow 3s ease-in-out infinite;
    z-index: 9;
    pointer-events: none;
}

@keyframes scanGlow {
    0%, 100% {
        top: 10%;
        opacity: 0.6;
    }
    50% {
        top: 90%;
        opacity: 0.3;
    }
}

/* QR block enhancement for scan effect */
.cab-qr-block {
    position: relative;
    z-index: 5;
}

/* === CIRCUIT BOARD BACKGROUND === */
.cabinet-landing {
    position: relative;
    overflow: hidden;
}

.cabinet-landing::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
    background-image: 
        /* Vertical lines */
        linear-gradient(90deg, rgba(0, 243, 255, 0.03) 1px, transparent 1px),
        /* Horizontal lines */
        linear-gradient(0deg, rgba(0, 243, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    background-position: center center;
}

/* Light pulse overlay */
.cabinet-landing::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
    background: 
        /* Horizontal pulse */
        linear-gradient(90deg, 
            transparent 0%, 
            transparent 45%,
            rgba(0, 243, 255, 0.15) 50%,
            transparent 55%,
            transparent 100%
        ),
        /* Vertical pulse */
        linear-gradient(0deg, 
            transparent 0%, 
            transparent 45%,
            rgba(0, 200, 255, 0.1) 50%,
            transparent 55%,
            transparent 100%
        );
    background-size: 200% 100%, 100% 200%;
    animation: circuitPulse 8s ease-in-out infinite;
}

@keyframes circuitPulse {
    0%, 100% {
        background-position: -100% 0%, 0% -100%;
    }
    50% {
        background-position: 200% 0%, 0% 200%;
    }
}

/* Circuit nodes (dots at intersections) */
.cabinet-landing > .container {
    position: relative;
    z-index: 1;
}

/* Random circuit sparks */
@keyframes circuitSpark {
    0%, 90%, 100% {
        opacity: 0;
    }
    95% {
        opacity: 1;
    }
}

/* Dark theme adjustments */
.cabinet-landing.dark-theme::before {
    background-image: 
        linear-gradient(90deg, rgba(0, 243, 255, 0.05) 1px, transparent 1px),
        linear-gradient(0deg, rgba(0, 243, 255, 0.05) 1px, transparent 1px);
}

.cabinet-landing.dark-theme::after {
    background: 
        linear-gradient(90deg, 
            transparent 0%, 
            transparent 45%,
            rgba(0, 243, 255, 0.2) 50%,
            transparent 55%,
            transparent 100%
        ),
        linear-gradient(0deg, 
            transparent 0%, 
            transparent 45%,
            rgba(0, 200, 255, 0.15) 50%,
            transparent 55%,
            transparent 100%
        );
    background-size: 200% 100%, 100% 200%;
}

/* === LOGIN BUTTON IN HERO === */
.cab-login-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    margin-top: 20px;
    background: linear-gradient(135deg, var(--cab-primary), var(--cab-secondary));
    color: #fff !important;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
    position: relative;
    overflow: hidden;
}

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

.cab-login-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 243, 255, 0.4);
}

.cab-login-btn:hover::before {
    left: 100%;
}

.cab-login-btn svg {
    flex-shrink: 0;
    filter: drop-shadow(0 0 3px rgba(255,255,255,0.5));
}

@media (max-width: 600px) {
    .cab-login-btn {
        width: 100%;
        justify-content: center;
    }
}

/* === GLASSMORPHISM WITH MOUSE TRACKING === */
.cab-log-container,
.cab-spec-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 243, 255, 0.15);
    overflow: hidden;
}

.cab-log-container::before,
.cab-spec-card::before {
    content: '';
    position: absolute;
    top: var(--mouse-y, 50%);
    left: var(--mouse-x, 50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 243, 255, 0.15) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.cab-log-container:hover::before,
.cab-spec-card:hover::before {
    opacity: 1;
}

.cab-log-container > *,
.cab-spec-card > * {
    position: relative;
    z-index: 1;
}

/* Dark theme glass */
.cabinet-landing.dark-theme .cab-log-container,
.cabinet-landing.dark-theme .cab-spec-card {
    background: rgba(10, 22, 40, 0.6);
    border-color: rgba(0, 243, 255, 0.2);
}

/* === TYPEWRITER EFFECT === */
.cab-log-content.typewriter-ready .cab-log-section {
    opacity: 0;
    transform: translateY(10px);
}

.cab-log-content.typewriter-active .cab-log-section {
    animation: typewriterFadeIn 0.3s ease forwards;
}

.cab-log-content.typewriter-active .cab-log-section:nth-child(1) { animation-delay: 0s; }
.cab-log-content.typewriter-active .cab-log-section:nth-child(2) { animation-delay: 0.15s; }
.cab-log-content.typewriter-active .cab-log-section:nth-child(3) { animation-delay: 0.3s; }
.cab-log-content.typewriter-active .cab-log-section:nth-child(4) { animation-delay: 0.45s; }
.cab-log-content.typewriter-active .cab-log-section:nth-child(5) { animation-delay: 0.6s; }
.cab-log-content.typewriter-active .cab-log-section:nth-child(6) { animation-delay: 0.75s; }
.cab-log-content.typewriter-active .cab-log-section:nth-child(7) { animation-delay: 0.9s; }

@keyframes typewriterFadeIn {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Typewriter cursor blink for status lines */
.cab-log-content.typewriter-active .cab-log-status-line::after {
    content: '█';
    animation: cursorBlink 0.5s steps(1) infinite;
    margin-left: 5px;
    color: var(--cab-neon);
}

@keyframes cursorBlink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Remove cursor after animation completes */
.cab-log-content.typewriter-done .cab-log-status-line::after {
    display: none;
}

/* === NEON BREATHING BUTTONS === */
.cab-btn-primary,
.cab-promo-btn,
.cab-login-btn {
    animation: neonBreathing 3s ease-in-out infinite;
}

@keyframes neonBreathing {
    0%, 100% {
        box-shadow: 
            0 4px 15px rgba(0, 102, 255, 0.3),
            0 0 20px rgba(0, 243, 255, 0.1);
    }
    50% {
        box-shadow: 
            0 4px 25px rgba(0, 102, 255, 0.5),
            0 0 40px rgba(0, 243, 255, 0.3),
            0 0 60px rgba(0, 200, 255, 0.15);
    }
}

/* Stronger breathing for main CTAs */
.cab-btn-large {
    animation: neonBreathingStrong 2.5s ease-in-out infinite;
}

@keyframes neonBreathingStrong {
    0%, 100% {
        box-shadow: 
            0 5px 20px rgba(0, 102, 255, 0.4),
            0 0 30px rgba(0, 243, 255, 0.15);
    }
    50% {
        box-shadow: 
            0 8px 35px rgba(0, 102, 255, 0.6),
            0 0 50px rgba(0, 243, 255, 0.4),
            0 0 80px rgba(0, 200, 255, 0.2);
    }
}

/* Stop breathing on hover - focus effect instead */
.cab-btn-primary:hover,
.cab-promo-btn:hover,
.cab-login-btn:hover {
    animation: none;
    box-shadow: 
        0 8px 30px rgba(0, 243, 255, 0.5),
        0 0 50px rgba(0, 243, 255, 0.3);
}

/* === GLITCH EFFECT ON ICONS === */
.cab-log-check {
    display: inline-block;
    position: relative;
    transition: all 0.1s ease;
}

.cab-log-list li:hover .cab-log-check {
    animation: glitchIcon 0.3s ease;
}

@keyframes glitchIcon {
    0%, 100% {
        text-shadow: none;
        transform: translate(0);
    }
    20% {
        text-shadow: -2px 0 #ff0040, 2px 0 #00f3ff;
        transform: translate(-1px, 1px);
    }
    40% {
        text-shadow: 2px 0 #ff0040, -2px 0 #00f3ff;
        transform: translate(1px, -1px);
    }
    60% {
        text-shadow: -1px 0 #ff0040, 1px 0 #00f3ff;
        transform: translate(0, 1px);
    }
    80% {
        text-shadow: 1px 0 #ff0040, -1px 0 #00f3ff;
        transform: translate(-1px, 0);
    }
}

/* Glitch for spec check icons too */
.cab-spec-check {
    display: inline-block;
    position: relative;
}

.cab-spec-list li:hover .cab-spec-check {
    animation: glitchIcon 0.3s ease;
}

/* Glitch effect for Hero title on load (already exists, enhance it) */
.glitch-text.glitch-active {
    animation: glitchText 0.5s ease;
}

@keyframes glitchText {
    0%, 100% {
        text-shadow: none;
        transform: translate(0);
    }
    10% {
        text-shadow: -3px 0 #ff0040, 3px 0 #00f3ff;
        transform: translate(-2px, 0);
    }
    20% {
        text-shadow: 3px 0 #ff0040, -3px 0 #00f3ff;
        transform: translate(2px, 0);
    }
    30% {
        text-shadow: -2px 0 #ff0040, 2px 0 #00f3ff;
        transform: translate(-1px, 1px);
    }
    40% {
        text-shadow: 2px 0 #ff0040, -2px 0 #00f3ff;
        transform: translate(1px, -1px);
    }
    50% {
        text-shadow: -1px 0 #ff0040, 1px 0 #00f3ff;
        transform: translate(0);
    }
    60%, 100% {
        text-shadow: none;
        transform: translate(0);
    }
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    .cab-btn-primary,
    .cab-promo-btn,
    .cab-login-btn,
    .cab-btn-large {
        animation: none;
    }
    
    .cab-log-list li:hover .cab-log-check,
    .cab-spec-list li:hover .cab-spec-check {
        animation: none;
    }
}

/* ============================================== */
/* HERO HOLOGRAPHIC PORTAL EFFECT                 */
/* ============================================== */

.cab-hero {
    position: relative;
    min-height: 90vh;
    overflow: hidden;
    background: linear-gradient(135deg, var(--cab-bg) 0%, #0a1628 100%);
}

/* Circuit Board Background */
.cab-hero-circuit-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(0, 243, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 243, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: circuitPulse 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes circuitPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.cab-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 85vh;
    padding: 40px 0;
}

/* LEFT: Phone Wrapper with Portal */
.cab-hero-phone-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 500px;
}

/* Portal Rings */
.cab-portal {
    position: absolute;
    width: 380px;
    height: 380px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cab-portal-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid transparent;
    animation: portalRotate 10s linear infinite;
}

.cab-portal-ring-1 {
    width: 100%;
    height: 100%;
    border-color: rgba(0, 243, 255, 0.4);
    box-shadow: 
        0 0 20px rgba(0, 243, 255, 0.3),
        inset 0 0 20px rgba(0, 243, 255, 0.1);
    animation-duration: 15s;
}

.cab-portal-ring-2 {
    width: 85%;
    height: 85%;
    border-color: rgba(0, 255, 136, 0.3);
    box-shadow: 
        0 0 15px rgba(0, 255, 136, 0.3),
        inset 0 0 15px rgba(0, 255, 136, 0.1);
    animation-duration: 12s;
    animation-direction: reverse;
}

.cab-portal-ring-3 {
    width: 70%;
    height: 70%;
    border-color: rgba(0, 243, 255, 0.5);
    box-shadow: 
        0 0 25px rgba(0, 243, 255, 0.4),
        inset 0 0 25px rgba(0, 243, 255, 0.2);
    animation-duration: 8s;
}

@keyframes portalRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Hologram Phone */
.cab-hologram-phone {
    position: relative;
    z-index: 10;
    animation: phoneFloat 4s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(0, 243, 255, 0.5));
}

@keyframes phoneFloat {
    0%, 100% { transform: translateY(0) rotateY(0deg); }
    25% { transform: translateY(-10px) rotateY(2deg); }
    50% { transform: translateY(-5px) rotateY(0deg); }
    75% { transform: translateY(-15px) rotateY(-2deg); }
}

/* Phone Frame */
.cab-phone-frame {
    width: 240px;
    height: 480px;
    background: linear-gradient(145deg, #1a2744 0%, #0d1525 100%);
    border-radius: 36px;
    border: 3px solid rgba(0, 243, 255, 0.4);
    padding: 12px;
    position: relative;
    box-shadow: 
        0 0 40px rgba(0, 243, 255, 0.3),
        inset 0 0 30px rgba(0, 243, 255, 0.1);
}

.cab-phone-notch {
    width: 80px;
    height: 24px;
    background: #0d1525;
    border-radius: 0 0 16px 16px;
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}

.cab-phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #0f1a2e 0%, #0a1220 100%);
    border-radius: 24px;
    padding: 40px 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Demo Interface */
.cab-demo-header {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--cab-accent);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cab-demo-header svg {
    stroke: var(--cab-accent);
}

.cab-demo-balance {
    text-align: center;
    padding: 20px 0;
}

.cab-demo-label {
    display: block;
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.cab-demo-value {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 0 20px rgba(0, 243, 255, 0.5);
    animation: balanceGlow 2s ease-in-out infinite;
}

@keyframes balanceGlow {
    0%, 100% { text-shadow: 0 0 20px rgba(0, 243, 255, 0.5); }
    50% { text-shadow: 0 0 40px rgba(0, 243, 255, 0.8); }
}

.cab-demo-currency {
    font-size: 24px;
    color: var(--cab-accent);
    margin-left: 4px;
}

.cab-demo-speed {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cab-demo-speed-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.cab-demo-speed-fill {
    height: 100%;
    width: 95%;
    background: linear-gradient(90deg, var(--cab-accent) 0%, #00ff88 100%);
    border-radius: 4px;
    animation: speedPulse 1.5s ease-in-out infinite;
}

@keyframes speedPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.cab-demo-speed-text {
    color: #00ff88;
    font-size: 14px;
    font-weight: 600;
    text-align: right;
}

.cab-demo-buttons {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.cab-demo-btn {
    flex: 1;
    padding: 12px;
    background: rgba(0, 243, 255, 0.1);
    border: 1px solid rgba(0, 243, 255, 0.3);
    border-radius: 12px;
    color: var(--cab-accent);
    font-size: 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cab-demo-btn:hover {
    background: rgba(0, 243, 255, 0.2);
    border-color: var(--cab-accent);
}

/* Scan Line */
.cab-scan-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(0, 243, 255, 0.8) 50%,
        transparent 100%);
    z-index: 20;
    animation: scanMove 3s linear infinite;
    border-radius: 36px 36px 0 0;
}

@keyframes scanMove {
    0% { top: 0; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { top: calc(100% - 4px); opacity: 0; }
}

/* Data Particles */
.cab-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.cab-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--cab-accent);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--cab-accent);
    animation: particleMove 3s ease-in-out infinite;
}

.cab-particle:nth-child(1) { left: -60px; top: 20%; animation-delay: 0s; }
.cab-particle:nth-child(2) { left: -80px; top: 40%; animation-delay: 0.5s; }
.cab-particle:nth-child(3) { left: -70px; top: 60%; animation-delay: 1s; }
.cab-particle:nth-child(4) { right: -60px; top: 30%; animation-delay: 1.5s; animation-direction: reverse; }
.cab-particle:nth-child(5) { right: -80px; top: 70%; animation-delay: 2s; animation-direction: reverse; }

@keyframes particleMove {
    0% { transform: translateX(0) scale(0); opacity: 0; }
    50% { transform: translateX(40px) scale(1); opacity: 1; }
    100% { transform: translateX(80px) scale(0); opacity: 0; }
}

/* Phone Reflection */
.cab-phone-reflection {
    position: absolute;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%) scaleY(-0.3) scaleX(0.9);
    width: 240px;
    height: 480px;
    background: linear-gradient(to bottom, rgba(0, 243, 255, 0.15), transparent 60%);
    border-radius: 36px;
    filter: blur(10px);
    opacity: 0.5;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent);
}

/* RIGHT: Offer Cards */
.cab-hero-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.cab-hero-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 10px;
}

.cab-hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 500px;
}

/* Offer Card */
.cab-hero-offer {
    margin: 10px 0;
}

.cab-offer-card {
    background: rgba(13, 21, 37, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 243, 255, 0.3);
    border-radius: 20px;
    padding: 24px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.cab-offer-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--cab-accent), transparent);
}

.cab-offer-card:hover {
    border-color: var(--cab-accent);
    box-shadow: 0 0 40px rgba(0, 243, 255, 0.2);
    transform: translateY(-5px);
}

.cab-offer-badge {
    display: inline-block;
    background: rgba(0, 243, 255, 0.1);
    border: 1px solid rgba(0, 243, 255, 0.3);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    color: var(--cab-accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.cab-offer-content {
    margin-bottom: 20px;
}

.cab-offer-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 8px;
}

.cab-offer-value {
    font-size: 56px;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 0 30px rgba(0, 243, 255, 0.5);
    line-height: 1;
}

.cab-offer-unit {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
}

.cab-offer-forever {
    display: inline-block;
    background: linear-gradient(90deg, #ff6b6b, #ffd93d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.cab-offer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cab-offer-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
}

.cab-check {
    color: #00ff88;
    font-weight: bold;
}

.cab-offer-btn {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, var(--cab-accent) 0%, #0099cc 100%);
    border: none;
    border-radius: 12px;
    color: #0a1628;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    display: block;
}

.cab-offer-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 40px rgba(0, 243, 255, 0.4);
}

/* iPhone Offer Card */
.cab-offer-iphone {
    border-color: rgba(255, 215, 0, 0.3);
}

.cab-offer-iphone::before {
    background: linear-gradient(90deg, transparent, #ffd700, transparent);
}

.cab-offer-iphone:hover {
    border-color: #ffd700;
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.2);
}

.cab-offer-iphone .cab-offer-badge {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.3);
    color: #ffd700;
}

.cab-offer-iphone-title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.cab-offer-prize {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.cab-prize-icon {
    font-size: 40px;
}

.cab-prize-name {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, #fff 0%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cab-offer-more-prizes {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin-bottom: 12px;
}

.cab-offer-condition {
    color: rgba(255, 215, 0, 0.8);
    font-size: 14px;
    font-style: italic;
}

.cab-offer-iphone .cab-offer-btn {
    background: linear-gradient(135deg, #ffd700 0%, #ff9500 100%);
}

/* Hero Actions */
.cab-hero-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 10px;
}

.cab-app-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .cab-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        min-height: auto;
    }
    
    .cab-hero-phone-wrapper {
        height: 400px;
        order: -1;
    }
    
    .cab-portal {
        width: 300px;
        height: 300px;
    }
    
    .cab-phone-frame {
        width: 200px;
        height: 400px;
    }
    
    .cab-demo-value {
        font-size: 36px;
    }
    
    .cab-offer-value {
        font-size: 42px;
    }
}

@media (max-width: 576px) {
    .cab-hero-phone-wrapper {
        height: 350px;
    }
    
    .cab-portal {
        width: 260px;
        height: 260px;
    }
    
    .cab-phone-frame {
        width: 180px;
        height: 360px;
    }
    
    .cab-app-buttons {
        flex-direction: column;
    }
    
    .cab-app-btn img {
        width: 100%;
        max-width: 180px;
        height: auto;
    }
}

/* ============================================== */

/* ============================================== */
/* BREATHING BUTTON EFFECT                        */
/* ============================================== */

.breathing-btn {
    animation: breathingGlow 2s ease-in-out infinite;
}

@keyframes breathingGlow {
    0%, 100% {
        box-shadow: 
            0 0 5px rgba(0, 243, 255, 0.4),
            0 0 15px rgba(0, 243, 255, 0.2);
    }
    50% {
        box-shadow: 
            0 0 15px rgba(0, 243, 255, 0.6),
            0 0 30px rgba(0, 243, 255, 0.4),
            0 0 45px rgba(0, 243, 255, 0.2);
    }
}

/* iPhone offer btn breathing with gold */
.cab-offer-iphone .breathing-btn {
    animation: breathingGlowGold 2s ease-in-out infinite;
}

@keyframes breathingGlowGold {
    0%, 100% {
        box-shadow: 
            0 0 5px rgba(255, 215, 0, 0.4),
            0 0 15px rgba(255, 215, 0, 0.2);
    }
    50% {
        box-shadow: 
            0 0 15px rgba(255, 215, 0, 0.6),
            0 0 30px rgba(255, 215, 0, 0.4),
            0 0 45px rgba(255, 215, 0, 0.2);
    }
}

/* ============================================== */
/* SVG ICONS: Neon Glow Effect                    */
/* ============================================== */

.cab-prize-icon svg {
    stroke: #ffd700;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.6));
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% {
        filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.6));
    }
    50% {
        filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.9));
    }
}

.cab-check svg {
    stroke: #00ff88;
    filter: drop-shadow(0 0 4px rgba(0, 255, 136, 0.6));
    vertical-align: middle;
}

.cab-offer-list li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cab-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
}

.cab-stars-svg {
    display: inline-flex;
    gap: 2px;
}

.cab-stars-svg svg {
    filter: drop-shadow(0 0 4px rgba(255, 215, 0, 0.8));
}

/* ============================================== */
/* CONDITIONAL DISPLAY: Hero Offers               */
/* ВРЕМЕННО: Всем показываем iPhone розыгрыш      */
/* TODO: Вернуть логику после фикса кеширования   */
/* ============================================== */

/* TEMP: Show iPhone to everyone */
.cab-hero-offer.promo-gigabit {
    display: none !important;
}

.cab-hero-offer.promo-iphone {
    display: block !important;
}
