/* VAT Visuals Custom Styling Sheet */

/* --- RESET & VARIABLES --- */
:root {
    --bg-void: #050508;
    --bg-card: rgba(10, 11, 16, 0.7);
    --bg-card-hover: rgba(16, 17, 26, 0.85);
    
    --neon-pink: #ff007a;
    --neon-pink-glow: rgba(255, 0, 122, 0.4);
    
    --neon-cyan: #00f0ff;
    --neon-cyan-glow: rgba(0, 240, 255, 0.4);
    
    --neon-purple: #8a2be2;
    --neon-purple-glow: rgba(138, 43, 226, 0.4);
    
    --text-main: #ffffff;
    --text-muted: #8f9cae;
    --border-glow: rgba(255, 255, 255, 0.08);
    
    --glass-blur: blur(12px);
    
    --font-display: 'Syne', 'Outfit', sans-serif;
    --font-body: 'Outfit', 'Noto Sans SC', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

html, body {
    width: 100%;
    overflow-x: hidden;
    background-color: var(--bg-void);
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: var(--bg-void);
}
::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--neon-cyan);
}

/* --- THREEJS BACKGROUND CANVAS --- */
#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -10;
    pointer-events: auto;
}

/* --- LOADER SCREEN --- */
#vj-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #030305;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.8s;
}

.loader-content {
    text-align: center;
    width: 80%;
    max-width: 320px;
}

.loader-logo {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: #fff;
    text-shadow: 0 0 10px var(--neon-pink-glow), 0 0 20px var(--neon-cyan-glow);
    margin-bottom: 0.5rem;
    animation: pulseLogo 2s infinite ease-in-out;
}

.loader-glitch {
    font-family: monospace;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: var(--neon-cyan);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 5px var(--neon-cyan-glow);
}

.loader-bar-container {
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.05);
    margin-bottom: 0.8rem;
    overflow: hidden;
    position: relative;
    border-radius: 1px;
}

.loader-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-cyan));
    box-shadow: 0 0 8px var(--neon-cyan);
    transition: width 0.3s ease-out;
}

.loader-status {
    font-family: monospace;
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
}

@keyframes pulseLogo {
    0%, 100% { transform: scale(1); filter: brightness(1); }
    50% { transform: scale(1.03); filter: brightness(1.2); }
}

/* --- HUD TOP HEADER --- */
.hud-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: linear-gradient(to bottom, rgba(5, 5, 8, 0.8) 0%, rgba(5, 5, 8, 0) 100%);
    backdrop-filter: blur(4px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.header-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-dot {
    width: 8px;
    height: 8px;
    background-color: var(--neon-pink);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--neon-pink);
}

.brand-text {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 0.1em;
}

.header-status {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 255, 255, 0.04);
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.status-indicator {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.status-indicator.live {
    background-color: var(--neon-cyan);
    box-shadow: 0 0 6px var(--neon-cyan);
    animation: indicatorBlink 1.5s infinite ease-in-out;
}

@keyframes indicatorBlink {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

.status-text {
    font-family: monospace;
    font-size: 0.65rem;
    font-weight: bold;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

.hud-btn-icon {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.1rem;
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.hud-btn-icon:hover {
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

/* --- GLASS CARD STYLING --- */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-glow);
    border-radius: 12px;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

/* --- MAIN CONTAINER LAYOUT --- */
.app-container {
    width: 100%;
    max-width: 480px; /* Locked to smartphone/vertical width */
    margin: 0 auto;
    min-height: 100vh;
    padding-bottom: 90px; /* Safe area for floating CTA bar */
    border-left: 1px solid rgba(255, 255, 255, 0.03);
    border-right: 1px solid rgba(255, 255, 255, 0.03);
    position: relative;
    background: rgba(5, 5, 8, 0.5); /* Semi transparent to show particles */
    z-index: 10;
}

/* Responsive expansion for desktop wide viewports */
@media (min-width: 768px) {
    .app-container {
        max-width: 768px; /* Standard tablet width for larger landscape displays */
    }
}

.hud-main {
    padding: 5.5rem 1.25rem 2rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

/* --- HERO SECTION --- */
.section-hero {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem 0 2rem 0;
}

.hero-bg-glow {
    position: absolute;
    top: -50px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, var(--neon-pink-glow) 0%, rgba(255,0,122,0) 70%);
    z-index: -1;
    pointer-events: none;
}

.hud-title-container {
    margin-bottom: 2rem;
}

.hud-tag {
    font-family: monospace;
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    color: var(--neon-cyan);
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 6px var(--neon-cyan-glow);
}

.hud-title {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.01em;
    text-transform: uppercase;
}

.neon-text {
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px var(--neon-pink-glow);
}

.hud-subtitle {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.8rem;
    letter-spacing: 0.05em;
}

/* --- CURVED 3D SCREEN VIEWPORT --- */
.curved-screen-viewport {
    width: 100%;
    perspective: 1200px;
    margin-bottom: 2.5rem;
}

.curved-screen-wrapper {
    width: 100%;
    transform-style: preserve-3d;
    transform: rotateX(8deg) rotateY(-5deg);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.curved-screen-bezel {
    width: 100%;
    background: #0f1015;
    border: 3px solid #1c1d24;
    border-radius: 8px;
    padding: 0.8rem 0.8rem 2rem 0.8rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8), 
                0 0 1px 1px rgba(255, 255, 255, 0.05) inset,
                0 0 15px var(--neon-pink-glow);
    position: relative;
    overflow: hidden;
}

/* Cybernetic bezel detail lines */
.curved-screen-bezel::before {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 10%;
    width: 80%;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
}

.bezel-label {
    font-family: monospace;
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    margin-bottom: 0.6rem;
    text-align: left;
    display: flex;
    justify-content: space-between;
}

.screen-glitch-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
    background-size: 100% 4px, 6px 100%;
    pointer-events: none;
    z-index: 2;
    opacity: 0.85;
}

#main-monitor-src {
    width: 100%;
    aspect-ratio: 9/16; /* Locked to video portrait */
    object-fit: cover;
    background-color: #000;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: block;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    transition: opacity 0.3s ease;
}

.screen-category-badge {
    position: absolute;
    bottom: 30px;
    left: 20px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
    border: 1px solid var(--neon-cyan);
    color: var(--neon-cyan);
    font-family: monospace;
    font-size: 0.65rem;
    padding: 0.3rem 0.6rem;
    border-radius: 2px;
    letter-spacing: 0.05em;
    z-index: 3;
    box-shadow: 0 0 8px rgba(0, 240, 255, 0.2);
}

.hero-scroll-prompt {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.7;
    margin-top: 1rem;
}

.scroll-dot {
    width: 4px;
    height: 4px;
    background: var(--text-main);
    border-radius: 50%;
    animation: scrollBlink 1.5s infinite ease-in-out;
}

.scroll-text {
    font-family: monospace;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    color: var(--text-muted);
}

@keyframes scrollBlink {
    0%, 100% { transform: translateY(0); opacity: 0.2; }
    50% { transform: translateY(6px); opacity: 1; }
}

/* --- SECTION HEADERS --- */
.section-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.header-num {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--neon-pink);
    border: 1px solid var(--neon-pink);
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    margin-top: -2px;
    box-shadow: 0 0 6px var(--neon-pink-glow);
}

.header-title-group {
    flex: 1;
}

.section-title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.section-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.2rem;
}

/* --- VJ LAUNCHPAD & FILTERS --- */
.scroll-x {
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.scroll-x::-webkit-scrollbar {
    display: none;
}

.category-tabs {
    display: flex;
    gap: 0.5rem;
    padding: 0.2rem 0;
    margin-bottom: 1.5rem;
}

.tab-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    padding: 0.45rem 1rem;
    font-size: 0.8rem;
    border-radius: 6px;
    cursor: pointer;
    font-family: var(--font-body);
    transition: all 0.3s ease;
}

.tab-btn.active, .tab-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-main);
    border-color: rgba(255, 255, 255, 0.2);
}

.tab-btn.active {
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.05);
    border-color: var(--neon-cyan);
    color: var(--neon-cyan);
}

/* VJ Grid Layout */
.launchpad-grid-container {
    width: 100%;
}

.launchpad-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 Columns grid */
    gap: 0.75rem;
}

.launchpad-pad {
    aspect-ratio: 1;
    background: rgba(18, 19, 26, 0.55);
    backdrop-filter: var(--glass-blur);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Pad glowing active states */
.launchpad-pad::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0));
    pointer-events: none;
    z-index: 1;
}

.launchpad-pad:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.launchpad-pad.active {
    background: rgba(0, 240, 255, 0.05);
    border-color: var(--neon-cyan);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.15), 0 0 4px var(--neon-cyan) inset;
}

.pad-thumb {
    width: 100%;
    height: 60%;
    border-radius: 4px;
    object-fit: cover;
    background: #000;
    opacity: 0.75;
    transition: opacity 0.3s ease;
}

.launchpad-pad.active .pad-thumb {
    opacity: 1;
}

.pad-index {
    font-family: monospace;
    font-size: 0.55rem;
    color: var(--text-muted);
}

.pad-title {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--text-main);
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 0.2rem;
}

.launchpad-pad.active .pad-title {
    color: var(--neon-cyan);
}

/* Neon color modifiers for pads */
.launchpad-pad.active[data-cat="promo"] {
    border-color: var(--neon-pink);
    box-shadow: 0 0 12px rgba(255, 0, 122, 0.15);
}
.launchpad-pad.active[data-cat="promo"] .pad-title { color: var(--neon-pink); }

.launchpad-pad.active[data-cat="intro"] {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 12px rgba(0, 240, 255, 0.15);
}
.launchpad-pad.active[data-cat="intro"] .pad-title { color: var(--neon-cyan); }

.launchpad-pad.active[data-cat="welcome"] {
    border-color: var(--neon-purple);
    box-shadow: 0 0 12px rgba(138, 43, 226, 0.15);
}
.launchpad-pad.active[data-cat="welcome"] .pad-title { color: var(--neon-purple); }

/* --- VALUES COMPARISON --- */
.compare-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.pain-card .card-glow-red {
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(255, 59, 48, 0.1) 0%, rgba(0,0,0,0) 70%);
}

.value-card .card-glow-neon {
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.12) 0%, rgba(0,0,0,0) 70%);
}

.highlight-card {
    border-color: rgba(0, 240, 255, 0.15);
    box-shadow: 0 5px 20px rgba(0, 240, 255, 0.05);
}

.card-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.text-red { color: #ff3b30; }
.text-neon { color: var(--neon-cyan); }

.compare-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.compare-list li {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    padding-bottom: 0.6rem;
}

.compare-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.list-label {
    font-size: 0.7rem;
    font-family: monospace;
    text-transform: uppercase;
    color: var(--text-muted);
}

.list-desc {
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 0.1rem;
}

/* --- PRICING TIERS --- */
.pricing-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.pricing-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.pricing-card.featured {
    border-color: var(--neon-pink);
    box-shadow: 0 8px 30px rgba(255, 0, 122, 0.12);
}

.badge-featured {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--neon-pink);
    color: #fff;
    font-family: monospace;
    font-size: 0.55rem;
    font-weight: bold;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    letter-spacing: 0.05em;
    box-shadow: 0 0 8px var(--neon-pink-glow);
}

.pricing-tag {
    font-family: monospace;
    font-size: 0.8rem;
    color: var(--neon-cyan);
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.pricing-price {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.pricing-price .unit {
    font-size: 0.85rem;
    font-weight: normal;
    color: var(--text-muted);
}

.pricing-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.pricing-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    width: 100%;
    margin-bottom: 1.5rem;
}

.pricing-features li {
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pricing-features li i {
    color: var(--neon-cyan);
    font-size: 0.75rem;
}

.pricing-card.featured .pricing-features li i {
    color: var(--neon-pink);
}

.pricing-btn {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-main);
    padding: 0.75rem;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.pricing-btn.highlight {
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-cyan));
    border: none;
    color: #fff;
    box-shadow: 0 0 15px var(--neon-pink-glow);
}

.pricing-btn.highlight:hover {
    filter: brightness(1.1);
    transform: scale(1.01);
}

.trial-banner {
    display: flex;
    gap: 1rem;
    align-items: center;
    border-color: rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.01);
}

.banner-icon {
    font-size: 1.25rem;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-text h4 {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.banner-text p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* --- POSTER GRID SHOWCASE --- */
.poster-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns for posters */
    gap: 0.75rem;
}

.poster-item {
    aspect-ratio: 3/4;
    background: #0f1015;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    overflow: hidden;
    cursor: pointer;
    position: relative;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.poster-item:hover {
    border-color: var(--neon-pink);
    transform: scale(1.02);
}

.poster-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.poster-item:hover img {
    transform: scale(1.05);
}

.poster-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0.75rem 0.5rem 0.75rem;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.poster-item:hover .poster-overlay {
    opacity: 1;
}

.poster-title {
    font-size: 0.65rem;
    font-weight: 600;
    color: #fff;
}

.poster-icon {
    font-size: 0.7rem;
    color: var(--neon-pink);
}

/* --- TRUST GRID --- */
.trust-grid {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.trust-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}

.trust-card i {
    font-size: 1.25rem;
    margin-bottom: 0.2rem;
}

.trust-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
}

.trust-card p {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* --- WORKFLOW STEPS --- */
.flow-steps {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    position: relative;
}

/* Steps Connector Line */
.flow-steps::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 20px;
    width: 1px;
    height: calc(100% - 40px);
    background: rgba(255, 255, 255, 0.05);
}

.flow-step {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding-left: 1.25rem;
}

.step-num {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: bold;
    color: var(--neon-cyan);
    background: rgba(0, 240, 255, 0.05);
    border: 1px solid rgba(0, 240, 255, 0.15);
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    flex-shrink: 0;
    z-index: 2;
    box-shadow: 0 0 8px rgba(0, 240, 255, 0.1);
}

.flow-step h5 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.15rem;
}

.flow-step p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* --- FOOTER --- */
.hud-footer {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding: 3rem 0 1rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    font-family: var(--font-display);
    font-weight: 800;
    letter-spacing: 0.2em;
    font-size: 1.1rem;
    text-shadow: 0 0 10px var(--neon-pink-glow);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.footer-contact .tel-number {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--neon-pink);
}

.footer-contact .address {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.footer-legal {
    font-size: 0.65rem;
    font-family: monospace;
    color: rgba(255, 255, 255, 0.15);
    margin-top: 1rem;
}

/* --- FLOATING CTA ACTION BAR --- */
.floating-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(5, 5, 8, 0.95) 0%, rgba(5, 5, 8, 0.8) 80%, rgba(5, 5, 8, 0) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1rem 1.25rem 1.5rem 1.25rem;
    z-index: 1000;
    display: flex;
    justify-content: center;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.cta-inner {
    width: 100%;
    max-width: 440px;
    display: flex;
    gap: 0.75rem;
}

.cta-btn {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    font-family: var(--font-body);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta-btn.primary {
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-cyan));
    color: #fff;
    border: none;
    box-shadow: 0 0 20px var(--neon-pink-glow);
}

.cta-btn.primary:hover {
    filter: brightness(1.1);
}

.cta-btn.secondary {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
}

.cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

/* --- LIGHTBOX MODAL --- */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background-color: rgba(3, 3, 5, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 25px;
    color: var(--text-muted);
    font-size: 2.5rem;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 10;
}

.lightbox-close:hover {
    color: #fff;
}

.lightbox-content-container {
    width: 90%;
    max-width: 480px;
    height: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8), 0 0 20px rgba(255, 0, 122, 0.2);
    animation: zoomIn 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes zoomIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

#lightbox-caption {
    margin-top: 1.25rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
}

/* --- CONTACT MODAL DIALOG --- */
.contact-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(3, 3, 5, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 99990;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
}

.contact-modal-content {
    width: 100%;
    max-width: 380px;
    text-align: center;
    animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.modal-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--text-main);
    text-transform: uppercase;
}

.modal-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.contact-info-block {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.info-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 6px;
    padding: 0.75rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.info-label {
    font-family: monospace;
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.info-value {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--neon-cyan);
}

.modal-actions {
    display: flex;
    gap: 0.5rem;
}

.modal-btn {
    flex: 1;
    padding: 0.75rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: bold;
    cursor: pointer;
    font-family: var(--font-body);
    transition: all 0.3s ease;
}

.modal-btn.primary {
    background: var(--neon-pink);
    color: #fff;
    border: none;
    box-shadow: 0 0 10px var(--neon-pink-glow);
}

.modal-btn.primary:hover {
    filter: brightness(1.1);
}

.modal-btn.secondary {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--text-muted);
}

.modal-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.08);
}

/* --- CUSTOM TOAST NOTIFICATION --- */
.toast-notification {
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: rgba(0, 240, 255, 0.9);
    color: #000;
    padding: 0.6rem 1.25rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    z-index: 100000;
    pointer-events: none;
    box-shadow: 0 5px 20px rgba(0, 240, 255, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toast-notification.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
