/* ==========================================================================
   Stile Vivia — by Digital Dept
   Created on: 2026-04-13
   Last update: 2026-04-14
   Author:     Digital Dept Srls (https://digitaldept.it)
   Website:    https://vivia.cloud
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --v-primary: #48BECE;
    --v-primary-dark: #36a3b3;
    --v-primary-light: #6dd5e5;
    --v-primary-10: rgba(72,190,206,0.1);
    --v-primary-20: rgba(72,190,206,0.2);
    --v-dark: #0d1117;
    --v-dark-soft: #161b22;
    --v-gray-900: #1a1a2e;
    --v-gray-600: #666;
    --v-gray-400: #999;
    --v-gray-200: #e6e8ed;
    --v-light: #f6f8fb;
    --v-white: #ffffff;
    --v-accent: #e9cb64;
    --v-gradient: linear-gradient(135deg, #48BECE 0%, #36a3b3 50%, #2d8a97 100%);
    --v-gradient-hero: linear-gradient(160deg, #0d1117 0%, #131a24 50%, #0f1923 100%);
    --v-radius: 16px;
    --v-radius-lg: 24px;
    --v-shadow: 0 8px 32px rgba(0,0,0,0.08);
    --v-shadow-lg: 0 24px 64px rgba(0,0,0,0.12);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--v-gray-900);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6, .font-display {
    font-family: 'Sora', sans-serif;
}

a { text-decoration: none; transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
img { max-width: 100%; height: auto; }

/* ===== NAVBAR ===== */
.v-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    padding: 20px 0;
    transition: all 0.4s ease;
}
.v-nav.scrolled {
    background: rgba(13,17,23,0.95);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.v-nav .nav-link {
    color: rgba(255,255,255,0.7);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 20px !important;
    border-radius: 100px;
    transition: all 0.3s ease;
    letter-spacing: -0.01em;
}
.v-nav .nav-link:hover,
.v-nav .nav-link.active {
    color: #fff;
    background: rgba(255,255,255,0.08);
}
.v-nav-light .nav-link { color: rgba(13,17,23,0.6); }
.v-nav-light .nav-link:hover, .v-nav-light .nav-link.active { color: var(--v-dark); background: rgba(0,0,0,0.04); }

.btn-v {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--v-primary);
    color: #fff;
    border: none;
    padding: 12px 32px;
    border-radius: 100px;
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    letter-spacing: -0.02em;
}
.btn-v:hover {
    background: var(--v-primary-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(72,190,206,0.35);
}
.btn-v-outline {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.25);
    padding: 11px 30px;
    border-radius: 100px;
    font-family: 'Sora', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}
.btn-v-outline:hover {
    border-color: var(--v-primary);
    color: var(--v-primary);
    background: rgba(72,190,206,0.05);
}
.btn-v-dark { background: var(--v-dark); }
.btn-v-dark:hover { background: var(--v-dark-soft); box-shadow: 0 12px 32px rgba(0,0,0,0.3); }
.btn-v-white { background: #fff; color: var(--v-dark); }
.btn-v-white:hover { color: var(--v-dark); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(255,255,255,0.2); }
.btn-v-outline-dark { color: var(--v-dark); border-color: var(--v-gray-200); }
.btn-v-outline-dark:hover { border-color: var(--v-primary); color: var(--v-primary); }
.btn-lg { padding: 16px 40px; font-size: 1.05rem; }

/* ===== HERO ===== */
.v-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--v-gradient-hero);
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}
.v-hero::before {
    content: '';
    position: absolute;
    top: 10%;
    right: -5%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(72,190,206,0.12) 0%, transparent 60%);
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
}
.v-hero::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: 10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(233,203,100,0.08) 0%, transparent 60%);
    border-radius: 50%;
    filter: blur(40px);
    pointer-events: none;
}
.v-hero-title {
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.05;
    color: #fff;
    letter-spacing: -0.04em;
    margin-bottom: 28px;
}
.v-hero-title .highlight {
    background: var(--v-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.v-hero-sub {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: -0.01em;
}
.v-hero-visual {
    position: relative;
    z-index: 2;
}
.v-hero-mockup {
    width: 100%;
    max-width: 600px;
    border-radius: 16px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.06);
}
.v-hero-stats {
    display: flex;
    gap: 48px;
    margin-top: 56px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.v-hero-stat h3 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--v-primary);
    letter-spacing: -0.03em;
    margin-bottom: 4px;
}
.v-hero-stat p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
}

/* ===== SECTIONS ===== */
.v-section { padding: 120px 0; }
.v-section-sm { padding: 80px 0; }
.v-bg-light { background: var(--v-light); }
.v-bg-dark { background: var(--v-dark); color: #fff; }
.v-bg-dark-soft { background: var(--v-dark-soft); color: #fff; }
.v-bg-white { background: var(--v-white); }

.v-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--v-primary-10);
    color: var(--v-primary);
    padding: 6px 16px;
    border-radius: 100px;
    font-family: 'Sora', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}
.v-heading {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 20px;
}
.v-heading-sm {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 16px;
}
.v-subtext {
    font-size: 1.4rem;
    color: var(--v-gray-600);
    line-height: 1.7;
    max-width: 560px;
    font-weight: 300;
}
.v-bg-dark .v-subtext { color: rgba(255,255,255,0.5); }

/* ===== FEATURE CARDS ===== */
.v-card {
    background: var(--v-white);
    border: 1px solid var(--v-gray-200);
    border-radius: var(--v-radius-lg);
    padding: 40px 32px;
    height: 100%;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}
.v-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--v-gradient);
    transform: scaleX(0);
    transition: transform 0.5s ease;
    transform-origin: left;
}
.v-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--v-shadow-lg);
    border-color: transparent;
}
.v-card:hover::after { transform: scaleX(1); }

.v-card-dark {
    background: var(--v-dark-soft);
    border-color: rgba(255,255,255,0.06);
}
.v-card-dark:hover {
    border-color: rgba(72,190,206,0.2);
    box-shadow: 0 24px 64px rgba(0,0,0,0.4);
}
.v-card-dark h4 { color: #fff; }
.v-card-dark p { color: rgba(255,255,255,0.5); }

.v-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 24px;
    background: var(--v-primary-10);
    color: var(--v-primary);
}
.v-card h4 {
    font-family: 'Sora', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}
.v-card p {
    color: var(--v-gray-600);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* ===== BENTO GRID ===== */
.v-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.v-bento-item {
    background: var(--v-dark-soft);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--v-radius-lg);
    padding: 40px;
    transition: all 0.4s ease;
    overflow: hidden;
    position: relative;
}
.v-bento-item:hover {
    border-color: rgba(72,190,206,0.2);
    transform: translateY(-4px);
}
.v-bento-item.span-2 { grid-column: span 2; }
.v-bento-item.span-row { grid-row: span 2; }
.v-bento-item h3 {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    font-size: 1.3rem;
    letter-spacing: -0.02em;
}
.v-bento-item p {
    color: rgba(255,255,255,0.5);
    font-size: 0.95rem;
    line-height: 1.6;
}
.v-bento-item .v-bento-tag {
    display: inline-block;
    background: rgba(72,190,206,0.15);
    color: var(--v-primary);
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}
.v-bento-visual {
    margin-top: 24px;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.04);
}
.v-bento-visual img {
    width: 100%;
    display: block;
    opacity: 0.85;
    transition: all 0.4s ease;
}
.v-bento-item:hover .v-bento-visual img { opacity: 1; transform: scale(1.02); }

@media (max-width: 991px) {
    .v-bento { grid-template-columns: 1fr; }
    .v-bento-item.span-2 { grid-column: span 1; }
}

/* ===== STEPS / PROCESS ===== */
.v-step {
    position: relative;
    padding-left: 80px;
    margin-bottom: 48px;
}
.v-step-num {
    position: absolute;
    left: 0;
    top: 0;
    width: 52px;
    height: 75px;
    border-radius: 14px;
    background: var(--v-primary-10);
    color: var(--v-primary);
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.v-step h4 {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}
.v-step p { color: var(--v-gray-600); line-height: 1.6; }

/* ===== TESTIMONIALS ===== */
.v-testimonial {
    background: var(--v-white);
    border: 1px solid var(--v-gray-200);
    border-radius: var(--v-radius-lg);
    padding: 36px;
    height: 100%;
    transition: all 0.4s ease;
}
.v-testimonial:hover {
    transform: translateY(-4px);
    box-shadow: var(--v-shadow);
}
.v-testimonial blockquote {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--v-gray-900);
    margin-bottom: 24px;
    font-weight: 400;
    font-style: normal;
}
.v-testimonial blockquote::before {
    content: '\201C';
    font-size: 3rem;
    color: var(--v-primary);
    font-family: Georgia, serif;
    line-height: 0;
    display: block;
    margin-bottom: 8px;
}
.v-avatar {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--v-gradient);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
}

/* ===== CTA ===== */
.v-cta {
    background: var(--v-gradient-hero);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.v-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(72,190,206,0.1) 0%, transparent 50%);
    border-radius: 50%;
}
.v-cta .v-heading { color: #fff; }

/* ===== FOOTER ===== */
.v-footer {
    background: var(--v-dark);
    padding: 80px 0 32px;
    color: rgba(255,255,255,0.5);
}
.v-footer h6 {
    color: #fff;
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
}
.v-footer a { color: rgba(255,255,255,0.4); display: block; padding: 5px 0; font-size: 0.95rem; }
.v-footer a:hover { color: var(--v-primary); }
.v-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 24px;
    margin-top: 60px;
    font-size: 0.85rem;
}

/* ===== PAGE HEADER (inner pages) ===== */
.v-page-header {
    padding: 160px 0 80px;
    background: var(--v-gradient-hero);
    position: relative;
    overflow: hidden;
}
.v-page-header::before {
    content: '';
    position: absolute;
    top: 20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(72,190,206,0.1) 0%, transparent 60%);
    border-radius: 50%;
    filter: blur(40px);
}
.v-page-header .v-heading { color: #fff; }
.v-page-header .v-subtext { color: rgba(255,255,255,0.5); }

/* ===== SOLUTION BLOCKS ===== */
.v-solution-block {
    padding: 80px 0;
    border-bottom: 1px solid var(--v-gray-200);
}
.v-solution-block:last-child { border-bottom: none; }
.v-solution-block .v-check-list li {
    padding: 8px 0;
    color: var(--v-gray-600);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
}
.v-solution-block .v-check-list li .ti {
    color: var(--v-primary);
    font-size: 1.4rem;
    margin-top: 2px;
    flex-shrink: 0;
}

/* ===== VALUES GRID ===== */
.v-value-card {
    text-align: center;
    padding: 40px 24px;
    border-radius: var(--v-radius-lg);
    border: 1px solid rgba(255,255,255,0.06);
    background: rgba(255,255,255,0.02);
    transition: all 0.4s ease;
    height: 100%;
}
.v-value-card:hover {
    border-color: rgba(72,190,206,0.2);
    background: rgba(72,190,206,0.03);
    transform: translateY(-4px);
}
.v-value-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px;
    background: var(--v-primary-10);
    color: var(--v-primary);
}
.v-value-card h5 { color: #fff; font-family: 'Sora', sans-serif; font-weight: 700; }
.v-value-card p { color: rgba(255,255,255,0.5); font-size: 0.9rem; line-height: 1.6; }

/* ===== COUNTERS ===== */
.v-counter h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--v-primary);
    line-height: 1;
}
.v-counter p { color: rgba(255,255,255,0.4); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 500; }

/* ===== CONTACT FORM ===== */
.v-form .form-control, .v-form .form-select {
    background: var(--v-light);
    border: 1.5px solid var(--v-gray-200);
    border-radius: 12px;
    padding: 14px 20px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}
.v-form .form-control:focus, .v-form .form-select:focus {
    border-color: var(--v-primary);
    box-shadow: 0 0 0 4px var(--v-primary-10);
    background: #fff;
}
.v-form label {
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: -0.01em;
    margin-bottom: 6px;
}

/* ===== MARQUEE ===== */
.v-marquee {
    overflow: hidden;
    white-space: nowrap;
    padding: 20px 0;
}
.v-marquee-inner {
    display: inline-flex;
    gap: 60px;
    animation: marquee 30s linear infinite;
}
.v-marquee-inner span {
    font-family: 'Sora', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: rgba(255,255,255,0.15);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .v-hero { padding: 100px 0 60px; min-height: auto; }
    .v-hero-stats { gap: 24px; flex-wrap: wrap; }
    .v-section { padding: 80px 0; }
    .v-hero-visual { margin-top: 40px; }
}
@media (max-width: 576px) {
    .v-hero-stats { gap: 20px; }
    .v-hero-stat h3 { font-size: 1.6rem; }
    .v-step { padding-left: 64px; }
}

/* ============ PRODUCT SHOWCASE ============ */
.v-showcase-section { padding-bottom: 4rem; }
.v-showcase {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 3rem 2rem;
}
.v-showcase-frame {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #1a1f29;
    border: 1px solid rgba(72,190,206,0.15);
    box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.04) inset;
}
.v-showcase-bar {
    display: flex;
    gap: 6px;
    padding: 12px 16px;
    background: rgba(255,255,255,0.03);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.v-showcase-bar span {
    width: 11px; height: 11px; border-radius: 50%;
    background: rgba(255,255,255,0.15);
}
.v-showcase-bar span:nth-child(1) { background: #ff5f57; }
.v-showcase-bar span:nth-child(2) { background: #ffbd2e; }
.v-showcase-bar span:nth-child(3) { background: #28c941; }
.v-showcase-img {
    width: 100%;
    display: block;
    filter: brightness(1.02);
}

.v-callout {
    position: absolute;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: rgba(13,17,23,0.92);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(72,190,206,0.35);
    border-radius: 12px;
    padding: 12px 16px;
    max-width: 240px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    z-index: 5;
}
.v-callout-dot {
    width: 10px; height: 10px;
    background: var(--v-primary);
    border-radius: 50%;
    margin-top: 6px;
    flex-shrink: 0;
    box-shadow: 0 0 0 4px rgba(72,190,206,0.2), 0 0 12px rgba(72,190,206,0.6);
    animation: vPulse 2s ease-in-out infinite;
}
@keyframes vPulse {
    0%,100% { box-shadow: 0 0 0 4px rgba(72,190,206,0.2), 0 0 12px rgba(72,190,206,0.6); }
    50% { box-shadow: 0 0 0 8px rgba(72,190,206,0.05), 0 0 18px rgba(72,190,206,0.8); }
}
.v-callout-body strong {
    display: block;
    color: #fff;
    font-family: 'Sora', sans-serif;
    font-size: 0.92rem;
    margin-bottom: 2px;
}
.v-callout-body p {
    color: rgba(255,255,255,0.65);
    font-size: 0.78rem;
    margin: 0;
    line-height: 1.4;
}
.v-callout-tl { top: 8%; left: -20px; }
.v-callout-tr { top: 18%; right: -20px; }
.v-callout-bl { bottom: 18%; left: -20px; }
.v-callout-br { bottom: 8%; right: -20px; }

@media (max-width: 991px) {
    .v-callout { display: none; }
    .v-showcase { padding: 1rem; }
}

/* ============ OUTCOMES ============ */
.v-bg-dark-soft {
    background: linear-gradient(180deg, #0d1117 0%, #131820 100%);
    color: #fff;
}
.v-outcome {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    height: 100%;
    transition: all 0.3s ease;
}
.v-outcome:hover {
    border-color: rgba(72,190,206,0.4);
    background: rgba(72,190,206,0.04);
    transform: translateY(-4px);
}
.v-outcome-num {
    font-family: 'Sora', sans-serif;
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1;
    color: var(--v-primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: baseline;
    gap: 2px;
}
.v-outcome-sign {
    font-size: 2rem;
    color: var(--v-primary);
    margin-right: 4px;
}
.v-outcome-unit {
    font-size: 1.4rem;
    color: rgba(255,255,255,0.5);
    margin-left: 4px;
    font-weight: 500;
}
.v-outcome h4 {
    color: #fff;
    font-family: 'Sora', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}
.v-outcome p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

/* ============ LOGO COLOR + RESPONSIVE ============ */
/* Single logo file (dark version) — inverted to white on dark backgrounds */
.v-nav .v-nav-logo,
footer .v-nav-logo {
    filter: brightness(0) invert(1);
    height: 75px;
    width: auto;
    max-width: 100%;
    transition: height 0.2s ease;
}
.v-nav.v-nav-light .v-nav-logo {
    filter: none;
}
footer .v-nav-logo { height: 48px; }

@media (max-width: 768px) {
    .v-nav .v-nav-logo { height: 44px; }
    footer .v-nav-logo { height: 40px; }
}
@media (max-width: 480px) {
    .v-nav .v-nav-logo { height: 40px; }
}

/* ============ MOBILE NAV TOGGLE ============ */
.v-nav-toggle {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    width: 42px;
    height: 42px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    padding: 0;
    transition: all 0.2s;
}
.v-nav-toggle:hover { border-color: var(--v-primary); }
.v-nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}
.v-nav-light .v-nav-toggle { border-color: rgba(0,0,0,0.15); }
.v-nav-light .v-nav-toggle span { background: #0d1117; }

body.v-menu-open .v-nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.v-menu-open .v-nav-toggle span:nth-child(2) { opacity: 0; }
body.v-menu-open .v-nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.v-mobile-menu {
    overflow-y: auto;
    position: fixed;
    inset: 0;
    background: rgba(13,17,23,0.96);
    backdrop-filter: blur(20px);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    padding-top: 80px;
}
body.v-menu-open .v-mobile-menu {
    opacity: 1;
    pointer-events: auto;
}
body.v-menu-open { overflow: hidden; }

.v-mobile-menu-inner {
    max-width: 480px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
}
.v-mobile-link {
    display: block;
    color: #fff;
    text-decoration: none;
    font-family: 'Sora', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0.65rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: color 0.2s, padding-left 0.2s;
}
.v-mobile-link:hover, .v-mobile-link.active {
    color: var(--v-primary);
    padding-left: 8px;
}

/* ============ HERO VISUAL — animated decorations ============ */
.v-hero-visual {
    position: relative;
    padding: 20px;
    min-height: 420px;
}
.v-hero-frame {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    background: #1a1f29;
    border: 1px solid rgba(72,190,206,0.15);
    box-shadow: 0 25px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.04) inset;
    animation: vFloat 6s ease-in-out infinite;
    z-index: 2;
}
.v-hero-mockup {
    width: 100%;
    display: block;
}

@keyframes vFloat {
    0%, 100% { transform: translateY(0) rotateX(0); }
    50% { transform: translateY(-10px) rotateX(0); }
}

/* Gradient orbs */
.v-hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
    z-index: 1;
    pointer-events: none;
}
.v-hero-orb-1 {
    width: 280px; height: 280px;
    background: radial-gradient(circle, var(--v-primary), transparent 70%);
    top: -40px; left: -60px;
    animation: vOrbPulse 8s ease-in-out infinite;
}
.v-hero-orb-2 {
    width: 240px; height: 240px;
    background: radial-gradient(circle, var(--v-accent), transparent 70%);
    bottom: -50px; right: -40px;
    animation: vOrbPulse 10s ease-in-out infinite reverse;
    opacity: 0.35;
}
@keyframes vOrbPulse {
    0%, 100% { transform: scale(1) translate(0,0); opacity: 0.45; }
    50% { transform: scale(1.15) translate(20px,-15px); opacity: 0.6; }
}

/* Dot grid background */
.v-hero-grid {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(72,190,206,0.15) 1px, transparent 1px);
    background-size: 22px 22px;
    mask-image: radial-gradient(ellipse at center, #000 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

/* Floating notification cards */
.v-float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(13,17,23,0.92);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 12px 18px 12px 14px;
    box-shadow: 0 14px 40px rgba(0,0,0,0.45);
    z-index: 3;
    min-width: 210px;
}
.v-float-card strong {
    display: block;
    font-family: 'Sora', sans-serif;
    color: #fff;
    font-size: 0.9rem;
    line-height: 1.2;
}
.v-float-card p {
    color: rgba(255,255,255,0.55);
    font-size: 0.75rem;
    margin: 2px 0 0;
    line-height: 1.3;
}
.v-float-icon {
    width: 38px; height: 38px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.v-float-card-1 {
    top: 12%;
    left: -40px;
    animation: vSlideIn1 0.8s 0.8s both, vFloatCard 5s 1.6s ease-in-out infinite;
}
.v-float-card-2 {
    bottom: 14%;
    right: -30px;
    animation: vSlideIn2 0.8s 1.2s both, vFloatCard 6s 2s ease-in-out infinite reverse;
}
@keyframes vSlideIn1 {
    from { opacity: 0; transform: translateX(-30px) translateY(-10px); }
    to { opacity: 1; transform: translateX(0) translateY(0); }
}
@keyframes vSlideIn2 {
    from { opacity: 0; transform: translateX(30px) translateY(10px); }
    to { opacity: 1; transform: translateX(0) translateY(0); }
}
@keyframes vFloatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Live badge */
.v-float-badge {
    position: absolute;
    top: -10px;
    right: 30px;
    background: #0d1117;
    border: 1px solid rgba(72,190,206,0.35);
    border-radius: 999px;
    padding: 6px 14px 6px 10px;
    color: #fff;
    font-family: 'Sora', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    z-index: 4;
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
    animation: vSlideIn2 0.6s 1.6s both;
}
.v-float-dot {
    width: 8px; height: 8px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(34,197,94,0.25);
    animation: vLiveDot 1.5s ease-in-out infinite;
}
@keyframes vLiveDot {
    0%, 100% { box-shadow: 0 0 0 3px rgba(34,197,94,0.25); }
    50% { box-shadow: 0 0 0 6px rgba(34,197,94,0.08); }
}

/* ============ HERO COLLAGE (mini floating widgets) ============ */
.v-hero-collage {
    position: relative;
    min-height: 520px;
    padding: 20px;
}
.v-hero-collage .v-hero-grid,
.v-hero-collage .v-hero-orb { z-index: 0; }

.v-hero-lines {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.6;
}

.v-mini {
    position: absolute;
    background: rgba(13,17,23,0.88);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 18px 50px rgba(0,0,0,0.5), 0 0 0 1px rgba(72,190,206,0.05) inset;
    z-index: 3;
    font-family: 'Inter', sans-serif;
    color: #fff;
}
.v-mini strong { font-family: 'Sora', sans-serif; color: #fff; font-size: 0.9rem; display: block; }
.v-mini p { color: rgba(255,255,255,0.55); font-size: 0.75rem; margin: 2px 0 0; line-height: 1.3; }

/* Calendar widget */
.v-mini-calendar {
    top: 5%;
    left: 0;
    width: 230px;
    animation: vMiniIn1 0.8s 0.4s both, vMiniFloat 6s 1.2s ease-in-out infinite;
}
.v-mini-head {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 12px;
}
.v-mini-chip {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 0.65rem; color: #22c55e; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.08em;
}
.v-mini-week, .v-mini-days {
    display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px;
    text-align: center;
}
.v-mini-week span { color: rgba(255,255,255,0.4); font-size: 0.65rem; font-weight: 600; padding: 4px 0; }
.v-mini-days span {
    font-size: 0.75rem; padding: 6px 0;
    color: rgba(255,255,255,0.7); border-radius: 6px; position: relative;
}
.v-mini-days span.has-dot::after {
    content: ''; position: absolute; bottom: 2px; left: 50%; transform: translateX(-50%);
    width: 4px; height: 4px; border-radius: 50%; background: var(--v-primary);
}
.v-mini-days span.full {
    background: var(--v-primary); color: #0d1117; font-weight: 700;
}

/* Price card */
.v-mini-price {
    top: 38%;
    right: -10px;
    width: 240px;
    animation: vMiniIn2 0.8s 0.6s both, vMiniFloat 7s 1.5s ease-in-out infinite reverse;
}
.v-mini-price-top { display: flex; gap: 10px; align-items: center; margin-bottom: 12px; }
.v-mini-avatar {
    width: 38px; height: 38px; border-radius: 50%;
    background: linear-gradient(135deg, var(--v-primary), var(--v-accent));
    display: inline-flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 0.78rem; color: #0d1117;
    flex-shrink: 0;
}
.v-mini-price-row {
    display: flex; justify-content: space-between; align-items: baseline;
    padding: 10px 0; border-top: 1px solid rgba(255,255,255,0.06);
}
.v-mini-price-row span { color: rgba(255,255,255,0.55); font-size: 0.8rem; }
.v-mini-price-row strong { font-size: 1.15rem; color: var(--v-primary); }
.v-mini-btn {
    background: var(--v-primary); color: #0d1117;
    padding: 8px; border-radius: 8px; text-align: center;
    font-weight: 600; font-size: 0.8rem; margin-top: 6px;
}

/* Notification */
.v-mini-notif {
    bottom: 26%;
    left: -10px;
    display: flex; align-items: center; gap: 10px;
    min-width: 200px;
    animation: vMiniIn1 0.8s 1s both, vMiniFloat 5s 1.8s ease-in-out infinite;
}

/* Revenue card */
.v-mini-revenue {
    bottom: 3%;
    right: 20px;
    width: 210px;
    animation: vMiniIn2 0.8s 1.2s both, vMiniFloat 6.5s 2s ease-in-out infinite reverse;
}
.v-mini-revenue-label {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 0.72rem; color: rgba(255,255,255,0.55);
    margin-bottom: 6px;
}
.v-mini-revenue-amt {
    font-family: 'Sora', sans-serif; font-size: 1.4rem; font-weight: 700;
    color: #fff; margin-bottom: 10px;
}
.v-mini-spark {
    display: flex; align-items: flex-end; gap: 4px; height: 32px;
}
.v-mini-spark span {
    flex: 1;
    background: linear-gradient(180deg, var(--v-primary), rgba(72,190,206,0.2));
    border-radius: 2px;
    min-height: 4px;
    animation: vSparkGrow 1.4s ease-out both;
    transform-origin: bottom;
}
.v-mini-spark span:nth-child(1) { animation-delay: 1.6s; }
.v-mini-spark span:nth-child(2) { animation-delay: 1.7s; }
.v-mini-spark span:nth-child(3) { animation-delay: 1.8s; }
.v-mini-spark span:nth-child(4) { animation-delay: 1.9s; }
.v-mini-spark span:nth-child(5) { animation-delay: 2.0s; }
.v-mini-spark span:nth-child(6) { animation-delay: 2.1s; }
.v-mini-spark span:nth-child(7) { animation-delay: 2.2s; background: linear-gradient(180deg, var(--v-accent), rgba(233,203,100,0.2)); }
@keyframes vSparkGrow {
    from { transform: scaleY(0); opacity: 0; }
    to { transform: scaleY(1); opacity: 1; }
}

@keyframes vMiniIn1 {
    from { opacity: 0; transform: translateX(-30px) translateY(-15px) scale(0.95); }
    to { opacity: 1; transform: translateX(0) translateY(0) scale(1); }
}
@keyframes vMiniIn2 {
    from { opacity: 0; transform: translateX(30px) translateY(15px) scale(0.95); }
    to { opacity: 1; transform: translateX(0) translateY(0) scale(1); }
}
@keyframes vMiniFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ============ SOLUZIONI — mini stages ============ */
.v-sol-stage {
    position: relative;
    background: linear-gradient(160deg, #0d1117 0%, #131a24 100%);
    border-radius: 20px;
    padding: 60px 40px;
    overflow: hidden;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 50px rgba(13,17,23,0.25);
}
.v-sol-stage .v-hero-grid,
.v-sol-stage .v-hero-orb { z-index: 0; }
.v-sol-stage .v-mini,
.v-sol-stage .v-sol-pill,
.v-sol-stage .v-sol-phone { z-index: 2; }

.v-mini-static { animation: vSolIn 0.7s ease-out both, vMiniFloat 6s 1s ease-in-out infinite; }
@keyframes vSolIn { from { opacity: 0; transform: translateY(20px) scale(0.96); } to { opacity: 1; transform: translateY(0) scale(1); } }

.v-sol-pill {
    position: absolute;
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 999px;
    padding: 8px 14px;
    color: #fff;
    font-size: 0.78rem;
    font-family: 'Inter', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.35);
    animation: vSolIn 0.7s 0.3s ease-out both, vMiniFloat 7s 1.5s ease-in-out infinite reverse;
}
.v-sol-pill i { color: var(--v-primary); }
.v-sol-pill-1 { top: 10%; left: 4%; animation-delay: 0.2s, 1s; }
.v-sol-pill-2 { top: 12%; right: 4%; animation-delay: 0.4s, 1.3s; }
.v-sol-pill-3 { bottom: 10%; left: 6%; animation-delay: 0.6s, 1.6s; }

/* Channel rows */
.v-sol-channel {
    display: flex; align-items: center; gap: 12px;
    padding: 10px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.v-sol-channel:first-of-type { border-top: none; }
.v-sol-ch-logo {
    width: 36px; height: 36px; border-radius: 10px;
    display: inline-flex; align-items: center; justify-content: center;
    font-family: 'Sora', sans-serif; font-weight: 700; font-size: 0.85rem;
    color: #fff;
    flex-shrink: 0;
}

/* Phone mockup */
.v-sol-phone {
    position: relative;
    width: 280px;
    background: #1a1f29;
    border: 8px solid #0a0d12;
    border-radius: 32px;
    padding: 24px 18px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.5);
    animation: vSolIn 0.8s 0.2s ease-out both, vMiniFloat 6s 1.2s ease-in-out infinite;
}
.v-sol-phone::before {
    content: ''; position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
    width: 60px; height: 5px; background: #0a0d12; border-radius: 3px;
}
.v-sol-phone-head { margin-bottom: 16px; padding-top: 8px; }
.v-sol-phone-head strong { display: block; color: #fff; font-family: 'Sora', sans-serif; font-size: 1rem; }
.v-sol-phone-head span { color: rgba(255,255,255,0.5); font-size: 0.75rem; }
.v-sol-phone-cal, .v-sol-phone-slots {
    display: flex; gap: 6px; margin-bottom: 12px; flex-wrap: wrap;
}
.v-sol-phone-cal span, .v-sol-phone-slots span {
    flex: 1;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.7);
    padding: 8px 6px;
    border-radius: 8px;
    font-size: 0.72rem;
    text-align: center;
    min-width: 52px;
}
.v-sol-phone-cal span.sel, .v-sol-phone-slots span.sel {
    background: var(--v-primary); color: #0d1117; font-weight: 700; border-color: var(--v-primary);
}
.v-sol-phone-total {
    display: flex; justify-content: space-between; align-items: baseline;
    padding: 10px 0 0; border-top: 1px solid rgba(255,255,255,0.08); margin-top: 8px;
}
.v-sol-phone-total span { color: rgba(255,255,255,0.5); font-size: 0.8rem; }
.v-sol-phone-total strong { color: var(--v-primary); font-size: 1.2rem; font-family: 'Sora', sans-serif; }

@media (max-width: 991px) {
    .v-sol-stage { padding: 40px 20px; min-height: 320px; margin-top: 2rem; }
    .v-sol-pill { font-size: 0.7rem; padding: 6px 10px; }
}

/* ============ CHI SIAMO — story mini ============ */
.v-story-row {
    display: flex; align-items: baseline; justify-content: space-between; gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.v-story-num {
    font-family: 'Sora', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--v-primary);
    line-height: 1;
    min-width: 100px;
}
.v-story-label {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    text-align: right;
    flex: 1;
}

/* Dropdown nav */
.v-dropdown { position: relative; display: inline-block; }
.v-dropdown-menu {
    position: absolute; top: 100%; left: 0; min-width: 260px;
    background: rgba(20,22,28,0.98); backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.08); border-radius: 12px;
    padding: 8px; margin-top: 8px;
    opacity: 0; visibility: hidden; transform: translateY(-4px);
    transition: all 0.18s ease; z-index: 1000;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.v-dropdown:hover .v-dropdown-menu,
.v-dropdown:focus-within .v-dropdown-menu {
    opacity: 1; visibility: visible; transform: translateY(0);
}
.v-dropdown-menu a {
    display: block; padding: 9px 14px; border-radius: 8px;
    color: rgba(255,255,255,0.8); font-size: 0.9rem; text-decoration: none;
    font-family: 'Inter', sans-serif; transition: all 0.15s ease;
}
.v-dropdown-menu a:hover {
    background: rgba(72,190,206,0.1); color: var(--v-primary, #48BECE);
}
.v-nav-light .v-dropdown-menu {
    background: #fff; border-color: rgba(13,17,23,0.08);
    box-shadow: 0 20px 40px rgba(13,17,23,0.12);
}
.v-nav-light .v-dropdown-menu a { color: rgba(13,17,23,0.75); }
.v-nav-light .v-dropdown-menu a:hover { background: rgba(72,190,206,0.08); color: var(--v-dark); }

/* Prevent horizontal jitter during AOS animations on mobile */
html { overflow-x: clip; overflow-x: hidden; }
body { overflow-x: clip; overflow-x: hidden; position: relative; width: 100%; max-width: 100vw; }
section, .v-hero, .v-section, .v-page-header, footer { overflow-x: clip; }
[data-aos] { will-change: transform, opacity; }
