/* ==========================================================================
   ARCHETYPE 4: WEBNOVA INDIGO & ELECTRIC PURPLE NEON
   Studio: Floretum Vault Sound (floretumvaultx.click)
   Scoped Prefix: fvx-
   ========================================================================== */

:root {
    --fvx-bg: #0A0C16;
    --fvx-bg-secondary: #0F1225;
    --fvx-bg-card: #151833;
    --fvx-bg-card-hover: #1E234A;
    --fvx-border: rgba(139, 92, 246, 0.2);
    --fvx-border-strong: rgba(139, 92, 246, 0.45);
    --fvx-primary: #8B5CF6;
    --fvx-primary-light: #A855F7;
    --fvx-primary-glow: rgba(139, 92, 246, 0.35);
    --fvx-accent-cyan: #06B6D4;
    --fvx-text-main: #FFFFFF;
    --fvx-text-muted: #94A3B8;
    --fvx-text-dim: #64748B;
    --fvx-font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --fvx-font-head: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body.fvx-body {
    background-color: var(--fvx-bg);
    color: var(--fvx-text-main);
    font-family: var(--fvx-font-main);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
    position: relative;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.25s ease;
}

ul {
    list-style: none;
}

.fvx-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* HEADER */
.fvx-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 12, 22, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--fvx-border);
}

.fvx-header-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.fvx-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--fvx-font-head);
    font-weight: 700;
    font-size: 20px;
    letter-spacing: -0.5px;
    color: #FFFFFF;
}

.fvx-logo-spark {
    color: var(--fvx-primary-light);
    font-size: 22px;
    filter: drop-shadow(0 0 8px var(--fvx-primary));
}

.fvx-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.fvx-nav-link {
    color: var(--fvx-text-muted);
    font-size: 14px;
    font-weight: 500;
    position: relative;
    padding: 6px 0;
}

.fvx-nav-link:hover, .fvx-nav-link.active {
    color: #FFFFFF;
}

.fvx-nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--fvx-primary);
    border-radius: 2px;
    box-shadow: 0 0 8px var(--fvx-primary);
}

.fvx-btn-glow-nav {
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid var(--fvx-border-strong);
    color: #FFFFFF;
    padding: 10px 20px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.2);
}

.fvx-btn-glow-nav:hover {
    background: var(--fvx-primary);
    border-color: var(--fvx-primary);
    box-shadow: 0 0 25px rgba(139, 92, 246, 0.5);
    transform: translateY(-1px);
}

/* BUTTONS */
.fvx-btn-purple-glow {
    background: linear-gradient(135deg, #8B5CF6 0%, #6366F1 100%);
    color: #FFFFFF;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.4);
    transition: all 0.3s ease;
}

.fvx-btn-purple-glow:hover {
    box-shadow: 0 0 45px rgba(139, 92, 246, 0.7);
    transform: translateY(-2px);
    color: #FFFFFF;
}

.fvx-btn-glass-pill {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #FFFFFF;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.fvx-btn-glass-pill:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--fvx-primary);
    color: #FFFFFF;
    transform: translateY(-2px);
}

.w-100 {
    width: 100%;
}

/* HERO SECTION */
.fvx-hero {
    position: relative;
    padding: 90px 24px 70px;
    text-align: center;
    overflow: hidden;
}

.fvx-hero-glow-bg {
    position: absolute;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 550px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.25) 0%, rgba(99, 102, 241, 0.1) 45%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

.fvx-hero-container {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.fvx-hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(139, 92, 246, 0.12);
    border: 1px solid var(--fvx-border-strong);
    padding: 8px 18px;
    border-radius: 999px;
    margin-bottom: 28px;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.15);
}

.fvx-pill-sparkle {
    color: var(--fvx-primary-light);
    font-size: 14px;
}

.fvx-pill-text {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #E2E8F0;
}

.fvx-hero-title {
    font-family: var(--fvx-font-head);
    font-size: clamp(38px, 6vw, 68px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.fvx-title-line {
    color: #FFFFFF;
}

.fvx-title-gradient {
    background: linear-gradient(135deg, #FFFFFF 0%, #C4B5FD 50%, #8B5CF6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 25px rgba(139, 92, 246, 0.3));
}

.fvx-hero-subtitle {
    font-size: clamp(16px, 2vw, 19px);
    color: var(--fvx-text-muted);
    max-width: 760px;
    margin: 0 auto 36px;
    line-height: 1.6;
}

.fvx-hero-cta-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 70px;
    flex-wrap: wrap;
}

/* 3D CONSOLE SHOWCASE */
.fvx-console-showcase {
    position: relative;
    max-width: 960px;
    margin: 0 auto 80px;
    perspective: 1200px;
}

.fvx-console-card {
    background: var(--fvx-bg-secondary);
    border: 1px solid var(--fvx-border-strong);
    border-radius: 16px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(139, 92, 246, 0.15);
    overflow: hidden;
    text-align: left;
    transform: rotateX(8deg);
    transition: transform 0.5s ease;
}

.fvx-console-card:hover {
    transform: rotateX(2deg);
}

.fvx-console-bar {
    background: #151833;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(139, 92, 246, 0.15);
}

.fvx-console-dots {
    display: flex;
    gap: 6px;
}

.fvx-console-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #334155;
}

.fvx-console-dots span:nth-child(1) { background: #EF4444; }
.fvx-console-dots span:nth-child(2) { background: #F59E0B; }
.fvx-console-dots span:nth-child(3) { background: #10B981; }

.fvx-console-label {
    font-family: var(--fvx-font-head);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--fvx-text-muted);
}

.fvx-console-status {
    font-size: 11px;
    font-weight: 600;
    color: #10B981;
}

.fvx-console-screen {
    padding: 24px;
    background: #0D1021;
}

.fvx-screen-grid {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.fvx-screen-track {
    background: rgba(21, 24, 51, 0.6);
    border: 1px solid rgba(139, 92, 246, 0.15);
    border-radius: 8px;
    padding: 10px 16px;
}

.fvx-track-meta {
    font-family: var(--fvx-font-head);
    font-size: 11px;
    color: var(--fvx-text-muted);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.fvx-waveform-bar {
    height: 8px;
    background: #1E234A;
    border-radius: 4px;
    overflow: hidden;
}

.fvx-wave-fill {
    height: 100%;
    background: linear-gradient(90deg, #8B5CF6, #06B6D4);
    border-radius: 4px;
}

.w-85 { width: 85%; }
.w-92 { width: 92%; }
.w-78 { width: 78%; }
.w-96 { width: 96%; }

.fvx-console-meters {
    background: #11142B;
    padding: 16px 24px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    border-top: 1px solid rgba(139, 92, 246, 0.15);
}

.fvx-meter-col span {
    font-size: 11px;
    font-weight: 600;
    color: var(--fvx-text-dim);
    display: block;
    margin-bottom: 6px;
}

.fvx-vu-bar {
    height: 6px;
    background: #1E234A;
    border-radius: 3px;
    overflow: hidden;
}

.fvx-vu-level {
    width: 80%;
    height: 100%;
    background: #10B981;
}

.fvx-console-floor-glow {
    position: absolute;
    bottom: -40px;
    left: 10%;
    width: 80%;
    height: 60px;
    background: radial-gradient(ellipse, rgba(139, 92, 246, 0.45) 0%, rgba(99, 102, 241, 0.1) 60%, transparent 80%);
    filter: blur(35px);
    z-index: -1;
}

/* 4-TILE FEATURE CARD CONTAINER */
.fvx-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: left;
}

.fvx-feat-card {
    background: var(--fvx-bg-card);
    border: 1px solid var(--fvx-border);
    border-radius: 14px;
    padding: 24px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.fvx-feat-card:hover {
    border-color: var(--fvx-primary);
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(139, 92, 246, 0.2);
}

.fvx-feat-icon {
    font-size: 28px;
    margin-bottom: 12px;
}

.fvx-feat-val {
    font-family: var(--fvx-font-head);
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 4px;
}

.fvx-feat-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--fvx-primary-light);
    margin-bottom: 8px;
}

.fvx-feat-desc {
    font-size: 13px;
    color: var(--fvx-text-muted);
    line-height: 1.5;
}

/* SECTION STYLES */
.fvx-section {
    padding: 90px 0;
}

.fvx-tag-purple {
    display: inline-block;
    font-family: var(--fvx-font-head);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--fvx-primary-light);
    background: rgba(139, 92, 246, 0.12);
    border: 1px solid var(--fvx-border);
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.fvx-section-title {
    font-family: var(--fvx-font-head);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 18px;
}

.fvx-section-lead {
    font-size: 17px;
    color: var(--fvx-text-muted);
    line-height: 1.6;
    margin-bottom: 28px;
}

.fvx-section-subtitle {
    font-size: 16px;
    color: var(--fvx-text-muted);
    max-width: 650px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

/* SOLUTION CHECKLIST */
.fvx-solution-section {
    background: var(--fvx-bg-secondary);
    border-top: 1px solid rgba(139, 92, 246, 0.1);
    border-bottom: 1px solid rgba(139, 92, 246, 0.1);
}

.fvx-solution-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: center;
}

.fvx-checklist {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.fvx-check-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.fvx-check-badge {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--fvx-primary);
    color: #FFFFFF;
    font-size: 12px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
    box-shadow: 0 0 10px var(--fvx-primary-glow);
}

.fvx-check-txt {
    font-size: 15px;
    color: var(--fvx-text-muted);
    line-height: 1.5;
}

.fvx-check-txt strong {
    color: #FFFFFF;
}

.fvx-glow-box {
    background: var(--fvx-bg-card);
    border: 1px solid var(--fvx-border-strong);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(139, 92, 246, 0.15);
}

.fvx-glow-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--fvx-font-head);
    font-size: 11px;
    letter-spacing: 1px;
    color: var(--fvx-text-dim);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
}

.fvx-badge-live {
    background: rgba(16, 185, 129, 0.15);
    color: #10B981;
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 10px;
}

.fvx-stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 14px;
}

.fvx-stat-row:last-child {
    border-bottom: none;
}

.fvx-stat-row span {
    color: var(--fvx-text-muted);
}

.fvx-stat-row strong {
    color: #FFFFFF;
    font-family: var(--fvx-font-head);
    font-weight: 600;
}

/* 4-STEP WORKFLOW */
.fvx-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.fvx-step-card {
    background: var(--fvx-bg-card);
    border: 1px solid var(--fvx-border);
    border-radius: 14px;
    padding: 30px 24px;
    position: relative;
    transition: all 0.3s ease;
}

.fvx-step-card:hover {
    border-color: var(--fvx-primary-light);
    transform: translateY(-4px);
}

.fvx-step-num {
    font-family: var(--fvx-font-head);
    font-size: 28px;
    font-weight: 800;
    color: var(--fvx-primary-light);
    margin-bottom: 14px;
    opacity: 0.8;
}

.fvx-step-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #FFFFFF;
}

.fvx-step-card p {
    font-size: 14px;
    color: var(--fvx-text-muted);
    line-height: 1.6;
}

/* SERVICES PREVIEW */
.fvx-services-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.fvx-serv-card {
    background: var(--fvx-bg-card);
    border: 1px solid var(--fvx-border);
    border-radius: 14px;
    padding: 32px;
    transition: all 0.3s ease;
}

.fvx-serv-card:hover {
    border-color: var(--fvx-primary);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.fvx-serv-icon {
    font-size: 28px;
    color: var(--fvx-primary-light);
    margin-bottom: 16px;
}

.fvx-serv-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #FFFFFF;
}

.fvx-serv-card p {
    font-size: 14px;
    color: var(--fvx-text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.fvx-serv-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(139, 92, 246, 0.15);
    padding-top: 16px;
}

.fvx-serv-rate {
    font-family: var(--fvx-font-head);
    font-size: 18px;
    font-weight: 700;
    color: var(--fvx-primary-light);
}

.fvx-serv-link {
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 600;
}

.fvx-serv-link:hover {
    color: var(--fvx-primary-light);
}

/* CTA BANNER */
.fvx-cta-banner-section {
    padding: 60px 0 90px;
}

.fvx-cta-banner {
    background: linear-gradient(135deg, #151833 0%, #1F1944 50%, #2E1065 100%);
    border: 1px solid var(--fvx-border-strong);
    border-radius: 20px;
    padding: 60px 48px;
    position: relative;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), 0 0 50px rgba(139, 92, 246, 0.25);
}

.fvx-cta-glow-circle {
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.35) 0%, transparent 70%);
    filter: blur(50px);
    pointer-events: none;
}

.fvx-cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.fvx-cta-spark {
    font-family: var(--fvx-font-head);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--fvx-primary-light);
    margin-bottom: 16px;
}

.fvx-cta-title {
    font-family: var(--fvx-font-head);
    font-size: clamp(26px, 4vw, 38px);
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 16px;
    line-height: 1.2;
}

.fvx-cta-desc {
    font-size: 16px;
    color: #CBD5E1;
    margin-bottom: 32px;
    line-height: 1.6;
}

.fvx-cta-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* INNER PAGES */
.fvx-page-main {
    padding-bottom: 90px;
}

.fvx-page-hero {
    padding: 70px 0 50px;
    text-align: center;
    background: linear-gradient(180deg, rgba(15, 18, 37, 0.7) 0%, transparent 100%);
    border-bottom: 1px solid rgba(139, 92, 246, 0.1);
    margin-bottom: 40px;
}

.fvx-page-title {
    font-family: var(--fvx-font-head);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.2;
}

.fvx-page-lead {
    font-size: 18px;
    color: var(--fvx-text-muted);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ABOUT PAGE */
.fvx-about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    margin-bottom: 70px;
}

.fvx-about-text h2 {
    font-family: var(--fvx-font-head);
    font-size: 28px;
    margin-bottom: 20px;
}

.fvx-about-text p {
    color: var(--fvx-text-muted);
    margin-bottom: 16px;
    line-height: 1.7;
}

.fvx-about-card-stat {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.fvx-stat-box {
    background: var(--fvx-bg-card);
    border: 1px solid var(--fvx-border);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
}

.fvx-stat-num {
    display: block;
    font-family: var(--fvx-font-head);
    font-size: 32px;
    font-weight: 800;
    color: var(--fvx-primary-light);
    margin-bottom: 6px;
}

.fvx-stat-lbl {
    font-size: 12px;
    color: var(--fvx-text-muted);
    line-height: 1.4;
}

.fvx-team-section {
    margin-top: 50px;
}

.fvx-team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.fvx-team-card {
    background: var(--fvx-bg-card);
    border: 1px solid var(--fvx-border);
    border-radius: 14px;
    padding: 28px;
    text-align: center;
}

.fvx-team-avatar {
    font-size: 36px;
    margin-bottom: 16px;
}

.fvx-team-card h3 {
    font-size: 18px;
    margin-bottom: 4px;
}

.fvx-team-role {
    font-size: 13px;
    color: var(--fvx-primary-light);
    margin-bottom: 12px;
    font-weight: 600;
}

.fvx-team-card p {
    font-size: 13px;
    color: var(--fvx-text-muted);
    line-height: 1.5;
}

/* PRODUCTS PAGE (Filter Tabs & Cards) */
.fvx-filter-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.fvx-tab-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--fvx-text-muted);
    padding: 10px 20px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
}

.fvx-tab-btn:hover, .fvx-tab-btn.active {
    background: var(--fvx-primary);
    border-color: var(--fvx-primary);
    color: #FFFFFF;
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.35);
}

.fvx-prod-cards-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.fvx-product-item {
    background: var(--fvx-bg-card);
    border: 1px solid var(--fvx-border);
    border-radius: 16px;
    padding: 36px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.fvx-product-item:hover {
    border-color: var(--fvx-primary-light);
    transform: translateY(-3px);
}

.fvx-prod-head {
    margin-bottom: 16px;
}

.fvx-prod-tag {
    font-family: var(--fvx-font-head);
    font-size: 11px;
    font-weight: 700;
    color: var(--fvx-primary-light);
    letter-spacing: 1px;
    display: block;
    margin-bottom: 8px;
}

.fvx-prod-head h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.fvx-prod-price {
    font-family: var(--fvx-font-head);
    font-size: 22px;
    font-weight: 800;
    color: #FFFFFF;
}

.fvx-prod-desc {
    font-size: 14px;
    color: var(--fvx-text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
}

.fvx-prod-features {
    margin-bottom: 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fvx-prod-features li {
    font-size: 14px;
    color: #E2E8F0;
    position: relative;
    padding-left: 20px;
}

.fvx-prod-features li::before {
    content: '➔';
    position: absolute;
    left: 0;
    color: var(--fvx-primary-light);
    font-size: 12px;
}

/* CONTACT PAGE */
.fvx-contact-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 48px;
}

.fvx-contact-info-panel h2 {
    font-family: var(--fvx-font-head);
    font-size: 26px;
    margin-bottom: 12px;
}

.fvx-contact-sub {
    color: var(--fvx-text-muted);
    font-size: 15px;
    margin-bottom: 28px;
    line-height: 1.6;
}

.fvx-info-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 36px;
}

.fvx-info-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    font-size: 14px;
    color: var(--fvx-text-muted);
}

.fvx-info-row strong {
    color: #FFFFFF;
}

.fvx-info-row a {
    color: var(--fvx-primary-light);
}

.fvx-info-ico {
    font-size: 20px;
}

.fvx-map-card {
    background: #11142B;
    border: 1px solid var(--fvx-border);
    border-radius: 12px;
    padding: 24px;
}

.fvx-map-frame {
    height: 120px;
    background: #0A0C16;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.fvx-map-pulse {
    width: 14px;
    height: 14px;
    background: var(--fvx-primary);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--fvx-primary);
    animation: pulse 2s infinite;
}

.fvx-map-txt {
    font-family: var(--fvx-font-head);
    font-size: 11px;
    color: var(--fvx-text-muted);
    letter-spacing: 1px;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(139, 92, 246, 0.7); }
    70% { transform: scale(1.1); box-shadow: 0 0 0 10px rgba(139, 92, 246, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(139, 92, 246, 0); }
}

/* FORM */
.fvx-form-card {
    background: var(--fvx-bg-card);
    border: 1px solid var(--fvx-border);
    border-radius: 16px;
    padding: 36px;
}

.fvx-form-card h3 {
    font-family: var(--fvx-font-head);
    font-size: 22px;
    margin-bottom: 6px;
}

.fvx-form-sub {
    font-size: 14px;
    color: var(--fvx-text-muted);
    margin-bottom: 24px;
}

.fvx-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

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

.fvx-fg label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #E2E8F0;
}

.fvx-input, .fvx-select, .fvx-textarea {
    width: 100%;
    background: rgba(10, 12, 22, 0.7);
    border: 1px solid rgba(139, 92, 246, 0.25);
    border-radius: 8px;
    padding: 12px 16px;
    color: #FFFFFF;
    font-family: var(--fvx-font-main);
    font-size: 14px;
    outline: none;
    transition: border-color 0.25s ease;
}

.fvx-input:focus, .fvx-select:focus, .fvx-textarea:focus {
    border-color: var(--fvx-primary);
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.3);
}

.fvx-error-msg {
    display: none;
    color: #F87171;
    font-size: 11px;
    margin-top: 4px;
}

.fvx-fg.has-error .fvx-input,
.fvx-fg.has-error .fvx-select,
.fvx-fg.has-error .fvx-textarea {
    border-color: #EF4444;
}

.fvx-fg.has-error .fvx-error-msg,
.fvx-fg-privacy.has-error .fvx-error-msg {
    display: block;
}

.fvx-fg-privacy {
    font-size: 13px;
    color: var(--fvx-text-muted);
    line-height: 1.5;
}

.fvx-checkbox-label {
    display: flex;
    gap: 10px;
    cursor: pointer;
}

.fvx-checkbox-label input {
    margin-top: 3px;
}

.fvx-checkbox-label a {
    color: var(--fvx-primary-light);
    text-decoration: underline;
}

.fvx-success-banner {
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid #10B981;
    color: #A7F3D0;
    padding: 18px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.5;
    margin-top: 16px;
}

/* LEGAL PAGES STYLES */
.fvx-legal-page {
    padding: 60px 0 90px;
}

.fvx-legal-box {
    background: var(--fvx-bg-card);
    border: 1px solid var(--fvx-border);
    border-radius: 16px;
    padding: 48px;
    color: #E2E8F0;
}

.fvx-legal-box h1 {
    font-family: var(--fvx-font-head);
    font-size: 32px;
    margin-bottom: 8px;
    color: #FFFFFF;
}

.fvx-legal-meta {
    font-size: 13px;
    color: var(--fvx-text-dim);
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(139, 92, 246, 0.15);
}

.fvx-legal-content h2 {
    font-family: var(--fvx-font-head);
    font-size: 20px;
    margin: 28px 0 12px;
    color: var(--fvx-primary-light);
}

.fvx-legal-content p, .fvx-legal-content ul {
    font-size: 14px;
    color: var(--fvx-text-muted);
    line-height: 1.7;
    margin-bottom: 16px;
}

.fvx-legal-content ul {
    padding-left: 20px;
}

.fvx-legal-content li {
    list-style: disc;
    margin-bottom: 6px;
}

#consent-status-container {
    background: #0A0C16;
    border: 1px solid var(--fvx-border-strong);
    border-radius: 8px;
    padding: 16px;
    margin: 20px 0;
    font-family: var(--fvx-font-head);
    font-size: 13px;
}

/* FOOTER */
.fvx-footer {
    background: #07080F;
    border-top: 1px solid var(--fvx-border);
    padding: 70px 0 30px;
}

.fvx-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.fvx-footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 50px;
}

.fvx-footer-desc {
    font-size: 14px;
    color: var(--fvx-text-muted);
    margin: 16px 0 20px;
    line-height: 1.6;
}

.fvx-footer-coords {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 13px;
    color: var(--fvx-text-dim);
}

.fvx-footer-col h4 {
    font-family: var(--fvx-font-head);
    font-size: 15px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
}

.fvx-footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fvx-footer-col a {
    font-size: 14px;
    color: var(--fvx-text-muted);
}

.fvx-footer-col a:hover {
    color: var(--fvx-primary-light);
}

.fvx-piva-badge {
    font-size: 12px;
    color: var(--fvx-text-dim);
}

.fvx-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--fvx-text-dim);
    flex-wrap: wrap;
    gap: 16px;
}

.fvx-legal-badges {
    display: flex;
    gap: 12px;
}

.fvx-legal-tag {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
}

/* GDPR CONSENT BANNER */
.fvx-consent-banner {
    position: fixed;
    bottom: 24px;
    right: 24px;
    max-width: 440px;
    background: #11142B;
    border: 1px solid var(--fvx-border-strong);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(139, 92, 246, 0.2);
    z-index: 9999;
}

.fvx-consent-title {
    font-family: var(--fvx-font-head);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #FFFFFF;
}

.fvx-consent-text {
    font-size: 13px;
    color: var(--fvx-text-muted);
    line-height: 1.5;
    margin-bottom: 18px;
}

.fvx-consent-text a {
    color: var(--fvx-primary-light);
    text-decoration: underline;
}

.fvx-consent-actions {
    display: flex;
    gap: 10px;
}

.fvx-consent-btn-accept {
    flex: 1;
    background: var(--fvx-primary);
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    padding: 10px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
}

.fvx-consent-btn-reject {
    flex: 1;
    background: rgba(255, 255, 255, 0.08);
    color: #CBD5E1;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 10px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .fvx-solution-layout, .fvx-about-grid, .fvx-contact-layout {
        grid-template-columns: 1fr;
    }
    .fvx-features-grid, .fvx-steps-grid, .fvx-team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .fvx-footer-main {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .fvx-nav, .fvx-header-action {
        display: none;
    }
    .fvx-features-grid, .fvx-steps-grid, .fvx-team-grid, .fvx-prod-cards-wrap, .fvx-services-cards-grid {
        grid-template-columns: 1fr;
    }
    .fvx-console-meters {
        grid-template-columns: 1fr 1fr;
    }
    .fvx-footer-main {
        grid-template-columns: 1fr;
    }
    .fvx-form-row {
        grid-template-columns: 1fr;
    }
    .fvx-consent-banner {
        left: 16px;
        right: 16px;
        bottom: 16px;
    }
}

/* ============================================================
   SHARED LEGAL DOCUMENTS STYLING (.legal-main-container)
   ============================================================ */
.legal-main-container {
    max-width: 960px;
    margin: 60px auto 100px;
    padding: 0 24px;
}
.legal-doc-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding-bottom: 24px;
    margin-bottom: 36px;
}
.legal-doc-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #38BDF8;
    margin-bottom: 10px;
}
.legal-doc-title {
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 800;
    margin-bottom: 10px;
    color: #FFFFFF;
}
.legal-doc-subtitle {
    font-size: 14px;
    color: #94A3B8;
    line-height: 1.6;
}
.legal-section-block {
    margin-bottom: 36px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.legal-section-block h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 14px;
    color: #FFFFFF;
}
.legal-section-block p, .legal-section-block li {
    font-size: 14px;
    color: #94A3B8;
    line-height: 1.7;
    margin-bottom: 12px;
}
.legal-section-block ul {
    margin-left: 24px;
    list-style: disc;
}
.legal-entity-box, .legal-notice-box, .consent-status-box {
    background: rgba(255, 255, 255, 0.04);
    border-left: 4px solid #38BDF8;
    border-radius: 4px;
    padding: 18px 22px;
    margin: 18px 0;
}
.legal-table-responsive {
    overflow-x: auto;
    margin: 18px 0;
}
.legal-data-table {
    width: 100%;
    border-collapse: collapse;
}
.legal-data-table th, .legal-data-table td {
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
    text-align: left;
}
.legal-data-table th {
    background: rgba(255, 255, 255, 0.06);
    color: #FFFFFF;
    font-weight: 600;
}
.legal-data-table td {
    color: #94A3B8;
}
#consent-status-container {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 18px;
    margin: 18px 0;
}