.nv-vds {
    --nv-font-main: 'Plus Jakarta Sans', sans-serif;
    --nv-font-alt: 'Inter', sans-serif;
    --nv-bg: #f8f9fc;
    --nv-white: #ffffff;
    --nv-text-dark: #1e293b;
    --nv-text-gray: #64748b;
    --nv-text-soft: #475569;
    --nv-border-light: #e2e8f0;
    --nv-bg-light: #f8fafc;
    --nv-pt-border: #eef2f6;
    --nv-pt-blue: #1e6194;
    font-family: var(--nv-font-main);
}

.nv-vds *,
.nv-vds *::before,
.nv-vds *::after {
    box-sizing: border-box;
}

.nv-vds :where(ul) {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nv-vds :where(a) {
    text-decoration: none;
}

.nv-vds :where(h1, h2, h3, h4, p) {
    margin: 0;
    padding: 0;
}

.nv-vds .nv-split-hero {
    position: relative;
    background-color: var(--nv-white);
    padding: 80px 20px;
    font-family: var(--nv-font-main);
    overflow: hidden;
}

.nv-vds .nv-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.nv-vds .nv-text-side {
    flex: 1;
    max-width: 600px;
}

.nv-vds .nv-hero-h1 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.15;
    color: var(--nv-text-dark);
    margin-bottom: 25px;
    letter-spacing: -0.02em;
}

.nv-vds .nv-hero-p {
    font-size: 1.1rem;
    color: var(--nv-text-soft);
    line-height: 1.7;
    margin-bottom: 35px;
}

.nv-vds .nv-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: #fff;
    font-weight: 700;
    font-size: 1.05rem;
    font-family: inherit;
    padding: 16px 40px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 10px 25px -5px rgba(37, 99, 235, 0.4);
}

.nv-vds .nv-hero-cta:hover {
    background: #1d4ed8;
    transform: translateY(-3px);
    box-shadow: 0 20px 40px -10px rgba(37, 99, 235, 0.5);
}

.nv-vds .nv-img-side {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    position: relative;
}

.nv-vds .nv-hero-image {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.1));
    animation: nvFloatImg 6s ease-in-out infinite;
}

@keyframes nvFloatImg {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

.nv-vds .nv-marquee-section {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    overflow: hidden;
    position: relative;
    white-space: nowrap;
    font-family: var(--nv-font-main);
    z-index: 10;
    mask-image: linear-gradient(to right, transparent 0%, black 20%, black 80%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 20%, black 80%, transparent 100%);
}

.nv-vds .nv-marquee-track {
    display: inline-flex;
    gap: 70px;
    animation: nv-scroll 45s linear infinite;
    padding-left: 20px;
}

.nv-vds .nv-marquee-item {
    display: flex;
    align-items: center;
    color: #1e293b;
    font-weight: 700;
    font-size: 0.9rem;
    user-select: none;
    opacity: 0.9;
    transition: all 0.3s ease;
    letter-spacing: -0.01em;
    cursor: default;
}

.nv-vds .nv-marquee-item:hover {
    opacity: 1;
    text-shadow: 0 0 15px rgba(37, 99, 235, 0.3);
}

.nv-vds .nv-icon-box {
    width: 34px;
    height: 34px;
    background: rgba(37, 99, 235, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    border: 1px solid rgba(37, 99, 235, 0.15);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.nv-vds .nv-icon-box i {
    color: #2563eb;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.nv-vds .nv-marquee-item:hover .nv-icon-box {
    background: #2563eb;
    border-color: #2563eb;
    transform: rotateY(180deg);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

.nv-vds .nv-marquee-item:hover .nv-icon-box i {
    color: #ffffff;
}

@keyframes nv-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.nv-vds .nv-container-wrapper {
    font-family: var(--nv-font-alt);
    background-color: var(--nv-bg);
    padding: 50px 0;
}

.nv-vds .container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 15px;
}

.nv-vds .nv-head-section {
    text-align: center;
    margin-bottom: 40px;
}

.nv-vds .nv-head-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--nv-text-dark);
    margin-bottom: 5px;
    letter-spacing: -0.5px;
}

.nv-vds .nv-head-sub {
    color: var(--nv-text-gray);
    font-size: 1rem;
}

.nv-vds .nv-controls-area {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-bottom: 45px;
}

.nv-vds .nv-period-wrap {
    position: relative;
    display: inline-block;
}

.nv-vds .nv-discount-tag {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #10b981;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 4px 8px;
    border-radius: 6px;
    box-shadow: 0 2px 5px rgba(16, 185, 129, 0.3);
    z-index: 5;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    pointer-events: none;
    animation: nvFloatTag 3s ease-in-out infinite;
}

@keyframes nvFloatTag {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-4px);
    }
}

.nv-vds .nv-period-selector {
    background: #e2e8f0;
    padding: 4px;
    border-radius: 12px;
    display: inline-flex;
    position: relative;
    gap: 2px;
}

.nv-vds .nv-period-btn {
    border: none;
    background: transparent;
    padding: 10px 24px;
    border-radius: 10px;
    font-family: var(--nv-font-alt);
    font-size: 0.9rem;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
    min-width: 80px;
}

.nv-vds .nv-period-btn:hover {
    color: var(--nv-text-dark);
}

.nv-vds .nv-period-btn.active {
    background: var(--nv-white);
    color: var(--primary);
    font-weight: 700;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.nv-vds .nv-list-wrap {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.nv-vds .nv-row {
    background: var(--nv-white);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
    transition: all 0.2s ease;
    position: relative;
    overflow: visible;
    border: 1px solid transparent;
    z-index: 1;
    width: 100%;
}

.nv-vds .nv-row:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(30, 97, 148, 0.08);
    border-color: #cbd5e1;
    z-index: 100;
}

.nv-vds .nv-grid {
    display: grid;
    grid-template-columns: 1.8fr 1.1fr 0.9fr 1fr 1.2fr 1.1fr 0.9fr 2.5fr;
    column-gap: 20px;
    align-items: center;
    min-height: 75px;
}

.nv-vds .nv-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    height: 60px;
}

.nv-vds .nv-col::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 20%;
    bottom: 20%;
    width: 1px;
    background: var(--nv-pt-border);
}

.nv-vds .nv-col:first-child {
    height: 100%;
    padding-left: 25px;
    background: linear-gradient(90deg, rgba(30, 97, 148, 0.08) 0%, rgba(255, 255, 255, 0) 100%);
    border-left: 3px solid var(--nv-pt-blue);
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

.nv-vds .nv-col:first-child::after,
.nv-vds .nv-col:last-child::after {
    display: none;
}

.nv-vds .pkg-title {
    font-size: 1rem;
    font-weight: 800;
    color: var(--nv-text-dark);
    margin-bottom: 2px;
}

.nv-vds .pkg-sub {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nv-vds .val {
    font-size: 0.95rem;
    font-weight: 700;
    color: #334155;
    margin-bottom: 3px;
    white-space: nowrap;
}

.nv-vds .lbl {
    font-size: 0.7rem;
    font-weight: 500;
    color: #94a3b8;
}

.nv-vds .cpu-text-gradient {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
    background: -webkit-linear-gradient(0deg, #3b82f6, #1e6194);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nv-vds .action-col {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 25px;
    padding-right: 25px;
    height: 100%;
}

.nv-vds .price-group {
    text-align: right;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
}

.nv-vds .price-wrap {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    justify-content: flex-end;
    gap: 3px;
    white-space: nowrap;
}

.nv-vds .price-val {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    letter-spacing: -0.5px;
    transition: all 0.3s ease;
}

.nv-vds .price-tax {
    font-size: 0.65rem;
    color: #94a3b8;
    font-weight: 600;
}

.nv-vds .stock-label {
    font-size: 0.65rem;
    color: #10b981;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 2px;
    letter-spacing: 0.5px;
}

.nv-vds .nv-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 20px;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 6px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    background: transparent;
    color: var(--primary);
    border: 1.5px solid var(--primary);
    white-space: nowrap;
    min-width: 130px;
}

.nv-vds .nv-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 97, 148, 0.2);
}

.nv-vds .nv-btn i {
    font-size: 0.75rem;
    transition: transform 0.2s ease;
}

.nv-vds .nv-btn:hover i {
    transform: translateX(4px);
}

.nv-vds .nv-transition-wrapper {
    position: relative;
    background: var(--nv-bg);
    padding-top: 20px;
    padding-bottom: 0px;
    overflow: hidden;
    text-align: center;
    z-index: 5;
}

.nv-vds .nv-transition-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(to bottom, rgba(248, 249, 252, 0) 0%, var(--nv-white) 100%);
    pointer-events: none;
}

.nv-vds .nv-bridge-content {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 2;
}

.nv-vds .nv-bridge-title {
    font-family: var(--nv-font-alt);
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 5px;
    letter-spacing: -0.5px;
}

.nv-vds .nv-bridge-sub {
    font-family: var(--nv-font-alt);
    font-size: 0.95rem;
    color: var(--nv-text-gray);
    margin-bottom: 20px;
}

.nv-vds .nv-scroll-mouse {
    width: 24px;
    height: 36px;
    border: 2px solid #cbd5e1;
    border-radius: 20px;
    margin: 0 auto;
    position: relative;
    display: block;
}

.nv-vds .nv-scroll-wheel {
    width: 4px;
    height: 6px;
    background: var(--primary);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: nvScrollWheel 2s infinite;
}

.nv-vds .nv-scroll-arrow {
    display: block;
    margin-top: 5px;
    color: #cbd5e1;
    font-size: 0.8rem;
    animation: nvFloatArrow 2s infinite;
}

.nv-vds .nv-bridge-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, #cbd5e1 0%, transparent 100%);
    margin: 10px auto 0 auto;
    display: block;
}

@keyframes nvScrollWheel {
    0% {
        top: 6px;
        opacity: 1;
    }
    100% {
        top: 18px;
        opacity: 0;
    }
}

@keyframes nvFloatArrow {
    0%,
    100% {
        transform: translateY(0);
        opacity: 0.5;
    }
    50% {
        transform: translateY(3px);
        opacity: 1;
    }
}

.nv-vds .nv-seo-wrapper {
    background-color: var(--nv-white);
    padding: 100px 0;
    font-family: var(--nv-font-alt);
    overflow: hidden;
}

.nv-vds .nv-seo-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nv-vds .nv-seo-block {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 140px;
}

.nv-vds .nv-seo-block:last-child {
    margin-bottom: 0;
}

.nv-vds .nv-seo-block.reverse {
    flex-direction: row-reverse;
}

.nv-vds .nv-seo-content {
    flex: 1;
}

.nv-vds .nv-topic-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    background: rgba(30, 97, 148, 0.08);
    padding: 6px 14px;
    border-radius: 6px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nv-vds .nv-seo-title {
    font-size: 2rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.nv-vds .nv-seo-title span {
    color: var(--primary);
}

.nv-vds .nv-scroll-box {
    margin-bottom: 25px;
}

.nv-vds .nv-seo-desc {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--nv-text-gray);
    margin-bottom: 15px;
}

.nv-vds .nv-seo-desc strong {
    color: var(--nv-text-dark);
    font-weight: 700;
}

.nv-vds .nv-seo-desc a {
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid var(--primary);
    transition: opacity 0.2s ease;
}

.nv-vds .nv-seo-desc a:hover {
    opacity: 0.7;
}

.nv-vds .nv-feature-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.nv-vds .nv-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.nv-vds .nv-check-icon {
    min-width: 20px;
    height: 20px;
    background: #10b981;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    margin-top: 3px;
    box-shadow: 0 4px 10px rgba(16, 185, 129, 0.25);
}

.nv-vds .nv-feature-text {
    font-size: 0.9rem;
    color: #0f172a;
    font-weight: 600;
    line-height: 1.5;
}

.nv-vds .nv-feature-sub {
    display: block;
    font-size: 0.8rem;
    color: var(--nv-text-gray);
    font-weight: 400;
    margin-top: 2px;
}

.nv-vds .nv-usecase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.nv-vds .nv-usecase-card {
    background: #f8fafc;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #f1f5f9;
}

.nv-vds .nv-usecase-card i {
    color: var(--primary);
    margin-bottom: 5px;
    display: block;
}

.nv-vds .nv-usecase-card h3 {
    font-size: 0.9rem;
    color: #1e293b;
    font-weight: 700;
}

.nv-vds .nv-seo-visual {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nv-vds .nv-img-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    z-index: 2;
    transition: transform 0.3s ease;
    animation: nvFloatImg 6s ease-in-out infinite;
}

.nv-vds .nv-img-container img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 20px 30px rgba(30, 97, 148, 0.15));
}

.nv-vds .nv-blob-bg {
    position: absolute;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(30, 97, 148, 0.06) 0%, rgba(255, 255, 255, 0) 70%);
    top: -10%;
    left: -10%;
    z-index: 1;
    border-radius: 50%;
}

.nv-vds .nv-blob-bg.blob-green {
    background: radial-gradient(circle, rgba(16, 185, 129, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
}

.nv-vds .nv-features-section {
    background-color: var(--nv-white);
    padding: 80px 0;
    font-family: var(--nv-font-main);
}

.nv-vds .nv-feat-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nv-vds .nv-feat-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.nv-vds .nv-feat-badge {
    display: inline-block;
    background: #eff6ff;
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 30px;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    border: 1px solid #dbeafe;
}

.nv-vds .nv-feat-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--nv-text-dark);
    margin-bottom: 15px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.nv-vds .nv-feat-desc {
    font-size: 1.05rem;
    color: var(--nv-text-gray);
    line-height: 1.6;
}

.nv-vds .nv-feat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.nv-vds .nv-feat-card {
    background: var(--nv-white);
    border: 1px solid var(--nv-border-light);
    border-radius: 16px;
    padding: 25px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.nv-vds .nv-feat-card.is-wide {
    grid-column: 1 / -1;
}

.nv-vds .nv-feat-card:hover {
    border-color: #bfdbfe;
    transform: translateY(-4px);
    box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.06);
    background: #fdfeff;
}

.nv-vds .nv-feat-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.nv-vds .nv-fi-blue {
    background: #eff6ff;
    color: #2563eb;
}

.nv-vds .nv-fi-red {
    background: #fef2f2;
    color: #dc2626;
}

.nv-vds .nv-fi-green {
    background: #f0fdf4;
    color: #16a34a;
}

.nv-vds .nv-fi-purple {
    background: #fdf4ff;
    color: #9333ea;
}

.nv-vds .nv-fi-orange {
    background: #fff7ed;
    color: #ea580c;
}

.nv-vds .nv-fi-sky {
    background: #e0f2fe;
    color: #0ea5e9;
}

.nv-vds .nv-fi-lime {
    background: #ecfccb;
    color: #65a30d;
}

.nv-vds .nv-fi-slate {
    background: #f1f5f9;
    color: #475569;
}

.nv-vds .nv-fi-rose {
    background: #fff1f2;
    color: #be123c;
}

.nv-vds .nv-feat-card:hover .nv-feat-icon {
    transform: scale(1.1) rotate(5deg);
}

.nv-vds .nv-feat-content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--nv-text-dark);
    margin: 0 0 8px 0;
}

.nv-vds .nv-feat-content p {
    font-size: 0.9rem;
    color: var(--nv-text-gray);
    line-height: 1.55;
    margin: 0;
}

.nv-vds .nv-panel-section {
    background-color: var(--nv-bg-light);
    padding: 80px 0 120px 0;
    font-family: var(--nv-font-main);
    overflow: hidden;
}

.nv-vds .nv-panel-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.nv-vds .nv-panel-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 80px auto;
}

.nv-vds .nv-panel-badge {
    display: inline-block;
    background: #fff;
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 30px;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.nv-vds .nv-panel-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--nv-text-dark);
    margin-bottom: 15px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.nv-vds .nv-panel-desc {
    font-size: 1.05rem;
    color: var(--nv-text-gray);
    line-height: 1.6;
}

.nv-vds .nv-carousel-stage {
    position: relative;
    width: 100%;
    height: 450px;
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

.nv-vds .nv-slide-card {
    position: absolute;
    top: 0;
    width: 700px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border: 1px solid #cbd5e1;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    left: 50%;
    transform: translateX(-50%) scale(0.5);
    opacity: 0;
    z-index: 0;
}

.nv-vds .nv-slide-card.active {
    transform: translateX(-50%) scale(1);
    opacity: 1;
    z-index: 20;
    box-shadow: 0 30px 80px -20px rgba(37, 99, 235, 0.3);
    border-color: #93c5fd;
}

.nv-vds .nv-slide-card.prev {
    transform: translateX(-110%) scale(0.85);
    opacity: 0.6;
    z-index: 10;
    filter: blur(1px) grayscale(20%);
}

.nv-vds .nv-slide-card.next {
    transform: translateX(10%) scale(0.85);
    opacity: 0.6;
    z-index: 10;
    filter: blur(1px) grayscale(20%);
}

.nv-vds .nv-slide-card.hidden {
    opacity: 0;
    z-index: 0;
    transform: translateX(-50%) scale(0.5);
    pointer-events: none;
}

.nv-vds .nv-browser-top {
    background: #f1f5f9;
    padding: 12px 15px;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.nv-vds .nv-dots {
    display: flex;
    gap: 6px;
}

.nv-vds .nv-d {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.nv-vds .d-red {
    background: #ef4444;
}

.nv-vds .d-yellow {
    background: #f59e0b;
}

.nv-vds .d-green {
    background: #10b981;
}

.nv-vds .nv-address {
    flex: 1;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    height: 28px;
    display: flex;
    align-items: center;
    padding-left: 10px;
    font-size: 0.75rem;
    color: #64748b;
    gap: 8px;
    font-weight: 500;
}

.nv-vds .nv-address i {
    color: #10b981;
}

.nv-vds .nv-img-wrap {
    width: 100%;
    height: 400px;
    background: #0f172a;
}

.nv-vds .nv-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.nv-vds .nv-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    background: #fff;
    border: 2px solid #e2e8f0;
    border-radius: 50%;
    color: var(--nv-text-dark);
    font-size: 1.1rem;
    cursor: pointer;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.nv-vds .nv-nav-btn:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.nv-vds .nv-prev {
    left: 5%;
}

.nv-vds .nv-next {
    right: 5%;
}

.nv-vds .nv-faq-section {
    background-color: var(--nv-white);
    padding: 100px 0;
    font-family: var(--nv-font-main);
}

.nv-vds .nv-faq-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.nv-vds .nv-faq-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px auto;
}

.nv-vds .nv-faq-badge {
    display: inline-block;
    background: #eff6ff;
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 30px;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    border: 1px solid #dbeafe;
}

.nv-vds .nv-faq-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--nv-text-dark);
    margin-bottom: 15px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.nv-vds .nv-faq-desc {
    font-size: 1.05rem;
    color: var(--nv-text-gray);
    line-height: 1.6;
}

.nv-vds .nv-faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.nv-vds .nv-faq-item {
    background: #fff;
    border: 1px solid var(--nv-border-light);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.nv-vds .nv-faq-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: var(--primary);
    opacity: 0;
    transition: 0.3s;
}

.nv-vds .nv-faq-item.active {
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.06);
    border-color: #bfdbfe;
}

.nv-vds .nv-faq-item.active::before {
    opacity: 1;
}

.nv-vds .nv-faq-trigger {
    width: 100%;
    padding: 20px 25px;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
}

.nv-vds .nv-faq-question-text {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--nv-text-dark);
    padding-right: 20px;
}

.nv-vds .nv-faq-icon {
    width: 32px;
    height: 32px;
    background: #f8fafc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.nv-vds .nv-faq-item.active .nv-faq-icon {
    background: var(--primary);
    color: #fff;
    transform: rotate(180deg);
}

.nv-vds .nv-faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
    background: #fff;
}

.nv-vds .nv-faq-inner {
    padding: 0 25px 25px 25px;
    font-size: 0.95rem;
    color: var(--nv-text-gray);
    line-height: 1.7;
}

.nv-vds .nv-faq-inner strong {
    color: var(--nv-text-dark);
}

@media (max-width: 1200px) {
    .nv-vds .nv-grid {
        grid-template-columns: 1fr 1fr;
        padding: 15px;
        gap: 15px;
        height: auto;
    }
    .nv-vds .nv-col {
        height: auto;
        border: none;
        padding: 0;
        align-items: flex-start;
        justify-content: center;
    }
    .nv-vds .nv-col::after {
        display: none;
    }
    .nv-vds .nv-col:first-child {
        grid-column: span 2;
        background: none;
        border-left: none;
        border-bottom: 1px solid #eee;
        padding-bottom: 10px;
        margin-bottom: 5px;
        padding-left: 0;
    }
    .nv-vds .action-col {
        grid-column: span 2;
        justify-content: space-between;
        padding-right: 0;
        border-top: 1px solid var(--nv-pt-border);
        padding-top: 15px;
        margin-top: 5px;
    }
    .nv-vds .price-group {
        align-items: flex-start;
    }
    .nv-vds .price-wrap {
        align-items: baseline;
    }
    .nv-vds .nv-btn {
        width: 100%;
    }
    .nv-vds .nv-period-wrap {
        width: 100%;
    }
    .nv-vds .nv-period-selector {
        width: 100%;
        white-space: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
    }
}

@media (max-width: 992px) {
    .nv-vds .nv-seo-block {
        flex-direction: column !important;
        gap: 40px;
        text-align: left;
    }
    .nv-vds .nv-seo-title {
        font-size: 1.6rem;
    }
    .nv-vds .nv-img-container {
        max-width: 100%;
        padding: 0 20px;
    }
}

@media (max-width: 900px) {
    .nv-vds .nv-hero-container {
        flex-direction: column-reverse;
        text-align: center;
    }
    .nv-vds .nv-text-side {
        margin-top: 30px;
    }
    .nv-vds .nv-hero-h1 {
        font-size: 2.4rem;
    }
    .nv-vds .nv-img-side {
        justify-content: center;
    }
    .nv-vds .nv-hero-image {
        max-width: 80%;
    }
    .nv-vds .nv-feat-grid {
        grid-template-columns: 1fr;
    }
    .nv-vds .nv-usecase-grid {
        grid-template-columns: 1fr;
    }
    .nv-vds .nv-carousel-stage {
        height: 300px;
    }
    .nv-vds .nv-slide-card {
        width: 90vw;
    }
    .nv-vds .nv-img-wrap {
        height: 250px;
    }
    .nv-vds .nv-slide-card.prev,
    .nv-vds .nv-slide-card.next {
        opacity: 0;
        z-index: -1;
    }
}