:root {
    --nv-font-main: 'Plus Jakarta Sans', sans-serif;
    --nv-font-alt: 'Inter', sans-serif;
    --nv-bg: #f8f9fc;
    --nv-white: #ffffff;
    --nv-primary: #1e6194;
    --nv-primary-hover: #164a73;
    --nv-primary-blue: #2563eb;
    --nv-text-dark: #1e293b;
    --nv-text-gray: #64748b;
    --nv-text-soft: #475569;
    --nv-success: #10b981;
    --nv-border: #eef2f6;
    --nv-border-light: #e2e8f0;
    --nv-bg-light: #f8fafc;
    --nv-pt-border: #eef2f6;
    --nv-pt-blue: #1e6194;
}

.nv-db {
    font-family: var(--nv-font-main);
    color: var(--nv-text-dark);
}

.nv-db :where(ul) {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nv-db :where(a) {
    text-decoration: none;
}

.nv-db :where(h1, h2, h3, h4, p) {
    margin: 0;
    padding: 0;
}

.nv-db *,
.nv-db *::before,
.nv-db *::after {
    box-sizing: border-box;
}

.nv-db .nv-anchor {
    display: block;
    position: relative;
    scroll-margin-top: 110px;
}

.nv-db .nv-seo-desc a,
.nv-db .nv-article-body a,
.nv-db .nv-feat-content a {
    color: var(--nv-primary-blue);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid var(--nv-primary-blue);
    transition: opacity 0.2s ease;
}

.nv-db .nv-seo-desc a:hover,
.nv-db .nv-article-body a:hover,
.nv-db .nv-feat-content a:hover {
    opacity: 0.7;
}


/* HERO */

.nv-split-hero {
    position: relative;
    background-color: var(--nv-white);
    padding: 80px 20px;
    overflow: hidden;
}

.nv-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.nv-text-side {
    flex: 1;
    max-width: 620px;
}

.nv-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--nv-primary);
    background: rgba(30, 97, 148, 0.07);
    border: 1px solid rgba(30, 97, 148, 0.15);
    padding: 7px 14px;
    border-radius: 50px;
    margin-bottom: 22px;
    letter-spacing: 0.3px;
}

.nv-hero-h1 {
    font-size: 3.1rem;
    font-weight: 800;
    line-height: 1.14;
    color: var(--nv-text-dark);
    margin-bottom: 22px;
    letter-spacing: -0.02em;
}

.nv-hero-p {
    font-size: 1.1rem;
    color: var(--nv-text-soft);
    line-height: 1.7;
    margin-bottom: 32px;
}

.nv-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.nv-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--nv-primary-blue);
    color: #fff;
    font-weight: 700;
    font-size: 1.02rem;
    padding: 16px 36px;
    border-radius: 50px;
    transition: 0.3s;
    box-shadow: 0 10px 25px -5px rgba(37, 99, 235, 0.4);
}

.nv-hero-cta:hover {
    background: #1d4ed8;
    transform: translateY(-3px);
    box-shadow: 0 20px 40px -10px rgba(37, 99, 235, 0.5);
}

.nv-hero-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--nv-text-soft);
    font-weight: 700;
    font-size: 1rem;
    padding: 16px 26px;
    border-radius: 50px;
    border: 1px solid var(--nv-border-light);
    transition: 0.3s;
}

.nv-hero-ghost:hover {
    border-color: var(--nv-primary);
    color: var(--nv-primary);
}

.nv-img-side {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    position: relative;
}

.nv-hero-image {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.1));
    animation: floatImg 6s ease-in-out infinite;
}

@keyframes floatImg {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}


/* MARQUEE */

.nv-marquee-section {
    background: var(--nv-white);
    border-top: 1px solid var(--nv-border);
    border-bottom: 1px solid var(--nv-border);
    padding: 20px 0;
    overflow: hidden;
    position: relative;
    white-space: nowrap;
    z-index: 5;
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.nv-marquee-track {
    display: inline-flex;
    gap: 64px;
    animation: nv-scroll 45s linear infinite;
    padding-left: 20px;
}

.nv-marquee-item {
    display: flex;
    align-items: center;
    color: var(--nv-text-dark);
    font-weight: 700;
    font-size: 0.9rem;
    user-select: none;
    opacity: 0.9;
    transition: 0.3s;
    letter-spacing: -0.01em;
}

.nv-marquee-item:hover {
    opacity: 1;
}

.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: 0.3s;
}

.nv-icon-box i {
    color: var(--nv-primary-blue);
    font-size: 1rem;
    transition: 0.3s;
}

.nv-marquee-item:hover .nv-icon-box {
    background: var(--nv-primary-blue);
    border-color: var(--nv-primary-blue);
    transform: rotateY(180deg);
}

.nv-marquee-item:hover .nv-icon-box i {
    color: #fff;
}

@keyframes nv-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}


/* PRICING */

.nv-container-wrapper {
    font-family: var(--nv-font-alt);
    background-color: var(--nv-bg);
    padding: 60px 0;
}

.nv-db .container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 15px;
}

.nv-head-section {
    text-align: center;
    margin-bottom: 38px;
}

.nv-head-title {
    font-size: 2.1rem;
    font-weight: 800;
    color: var(--nv-text-dark);
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.nv-head-sub {
    color: var(--nv-text-gray);
    font-size: 1rem;
}

.nv-controls-area {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.nv-period-selector {
    background: #e2e8f0;
    padding: 4px;
    border-radius: 12px;
    display: inline-flex;
    position: relative;
    gap: 2px;
}

.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);
    z-index: 2;
    min-width: 80px;
}

.nv-period-btn:hover {
    color: var(--nv-text-dark);
}

.nv-period-btn.active {
    background: var(--nv-white);
    color: var(--nv-primary);
    font-weight: 700;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.nv-discount-tag {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--nv-success);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 4px 8px;
    border-radius: 6px;
    z-index: 5;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 5px rgba(16, 185, 129, 0.3);
}

.nv-list-wrap {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.nv-row {
    background: var(--nv-white);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
    transition: 0.2s;
    position: relative;
    overflow: visible;
    border: 1px solid transparent;
    z-index: 1;
    width: 100%;
}

.nv-row:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(30, 97, 148, 0.08);
    border-color: #cbd5e1;
    z-index: 100;
}

.nv-grid {
    display: grid;
    grid-template-columns: 1.6fr 0.95fr 0.8fr 0.85fr 1fr 0.95fr 0.85fr 2.8fr;
    align-items: center;
    min-height: 80px;
}

.nv-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    height: 60px;
}

.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-col:first-child::after,
.nv-col:last-child::after {
    display: none;
}

.pkg-title {
    font-size: 1rem;
    font-weight: 800;
    color: var(--nv-text-dark);
    margin-bottom: 2px;
}

.pkg-sub {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--nv-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.val {
    font-size: 0.95rem;
    font-weight: 700;
    color: #334155;
    margin-bottom: 3px;
    white-space: nowrap;
}

.lbl {
    font-size: 0.7rem;
    font-weight: 500;
    color: #94a3b8;
}

.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;
}

.action-col {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
    padding-right: 25px;
    height: 100%;
    flex-wrap: nowrap;
}

.price-group {
    text-align: right;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    flex-shrink: 0;
}

.price-wrap {
    display: flex;
    align-items: baseline;
    justify-content: flex-end;
    gap: 3px;
    white-space: nowrap;
}

.price-val {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--nv-primary);
    line-height: 1;
    letter-spacing: -0.5px;
    transition: 0.3s;
}

.price-tax {
    font-size: 0.65rem;
    color: #94a3b8;
    font-weight: 600;
}

.stock-label {
    font-size: 0.65rem;
    color: var(--nv-success);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 2px;
    letter-spacing: 0.5px;
}

.nv-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 22px;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    background: transparent;
    color: var(--nv-primary);
    border: 1.5px solid var(--nv-primary);
    white-space: nowrap;
    min-width: 150px;
    flex-shrink: 0;
}

.nv-btn:hover {
    background: var(--nv-primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 97, 148, 0.2);
}

.nv-btn i {
    font-size: 0.75rem;
    transition: transform 0.2s;
}

.nv-btn:hover i {
    transform: translateX(4px);
}


/* TRANSITION BRIDGE */

.nv-transition-wrapper {
    position: relative;
    background: var(--nv-bg);
    padding: 20px 0 0;
    overflow: hidden;
    text-align: center;
    z-index: 5;
}

.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-bridge-content {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 2;
}

.nv-bridge-title {
    font-family: var(--nv-font-alt);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--nv-text-dark);
    margin-bottom: 6px;
    letter-spacing: -0.5px;
}

.nv-bridge-sub {
    font-family: var(--nv-font-alt);
    font-size: 0.95rem;
    color: var(--nv-text-gray);
    margin-bottom: 18px;
}

.nv-scroll-mouse {
    width: 24px;
    height: 36px;
    border: 2px solid #cbd5e1;
    border-radius: 20px;
    margin: 0 auto;
    position: relative;
}

.nv-scroll-wheel {
    width: 4px;
    height: 6px;
    background: var(--nv-primary);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% {
        top: 6px;
        opacity: 1;
    }
    100% {
        top: 18px;
        opacity: 0;
    }
}


/* SEO / İÇERİK BLOKLARI */

.nv-seo-wrapper {
    background-color: var(--nv-white);
    padding: 100px 0;
    font-family: var(--nv-font-alt);
    overflow: hidden;
}

.nv-seo-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nv-seo-block {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 130px;
}

.nv-seo-block:last-child {
    margin-bottom: 0;
}

.nv-seo-block.reverse {
    flex-direction: row-reverse;
}

.nv-seo-content {
    flex: 1;
}

.nv-topic-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--nv-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-seo-title {
    font-size: 2rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.nv-seo-title span {
    color: var(--nv-primary);
}

.nv-scroll-box {
    margin-bottom: 25px;
}

.nv-seo-desc {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--nv-text-gray);
    margin-bottom: 15px;
}

.nv-seo-desc strong {
    color: var(--nv-text-dark);
    font-weight: 700;
}

.nv-feature-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.nv-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.nv-check-icon {
    min-width: 20px;
    height: 20px;
    background: var(--nv-success);
    color: #fff;
    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-feature-text {
    font-size: 0.9rem;
    color: #0f172a;
    font-weight: 600;
    line-height: 1.5;
}

.nv-feature-sub {
    display: block;
    font-size: 0.8rem;
    color: var(--nv-text-gray);
    font-weight: 400;
    margin-top: 2px;
}

.nv-seo-visual {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nv-img-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    z-index: 2;
    animation: floatImg 6s ease-in-out infinite;
}

.nv-img-container img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 20px 30px rgba(30, 97, 148, 0.15));
}

.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%;
}


/* UZUN İÇERİK / SEO METNİ */

.nv-article {
    background: var(--nv-bg-light);
    padding: 90px 0;
    font-family: var(--nv-font-alt);
}

.nv-article-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nv-article-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 55px;
}

.nv-article-badge {
    display: inline-block;
    background: #eff6ff;
    color: var(--nv-primary-blue);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 30px;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    border: 1px solid #dbeafe;
    font-family: var(--nv-font-main);
}

.nv-article-header h2 {
    font-size: 2.1rem;
    font-weight: 800;
    color: var(--nv-text-dark);
    margin: 0 0 15px;
    line-height: 1.25;
    letter-spacing: -0.02em;
    font-family: var(--nv-font-main);
}

.nv-article-lead {
    font-size: 1.03rem;
    color: var(--nv-text-gray);
    line-height: 1.6;
}

.nv-article-body {
    max-width: 880px;
    margin: 0 auto;
}

.nv-article-body h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--nv-text-dark);
    margin: 42px 0 14px;
    font-family: var(--nv-font-main);
}

.nv-article-body p {
    font-size: 1.02rem;
    line-height: 1.9;
    color: var(--nv-text-soft);
    margin: 0 0 16px;
}

.nv-article-body p strong {
    color: var(--nv-text-dark);
    font-weight: 700;
}

.nv-article-body ul.nv-dotlist {
    margin: 0 0 16px;
    padding: 0;
}

.nv-article-body ul.nv-dotlist li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 10px;
    font-size: 1.02rem;
    line-height: 1.7;
    color: var(--nv-text-soft);
}

.nv-article-body ul.nv-dotlist li::before {
    content: '✓';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--nv-success);
    font-size: 0.9rem;
}


/* KARŞILAŞTIRMA TABLOSU */

.nv-compare {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0 8px;
    font-size: 0.95rem;
    background: var(--nv-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.nv-compare th,
.nv-compare td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid var(--nv-border-light);
}

.nv-compare thead th {
    background: var(--nv-primary);
    color: #fff;
    font-weight: 700;
}

.nv-compare tbody tr:last-child td {
    border-bottom: none;
}

.nv-compare td:first-child {
    font-weight: 700;
    color: var(--nv-text-dark);
}

.nv-compare .nv-yes {
    color: var(--nv-success);
    font-weight: 700;
}

.nv-compare .nv-no {
    color: #ef4444;
    font-weight: 700;
}


/* FEATURES */

.nv-features-section {
    background-color: var(--nv-white);
    padding: 80px 0;
    font-family: var(--nv-font-main);
}

.nv-feat-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nv-feat-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 55px;
}

.nv-feat-badge {
    display: inline-block;
    background: #eff6ff;
    color: var(--nv-primary-blue);
    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-feat-title {
    font-size: 2.1rem;
    font-weight: 800;
    color: var(--nv-text-dark);
    margin-bottom: 15px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.nv-feat-desc {
    font-size: 1.03rem;
    color: var(--nv-text-gray);
    line-height: 1.6;
}

.nv-feat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.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);
}

.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-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-feat-card:hover .nv-feat-icon {
    transform: scale(1.1) rotate(5deg);
}

.nv-feat-content h3 {
    font-size: 1.13rem;
    font-weight: 700;
    color: var(--nv-text-dark);
    margin: 0 0 8px;
}

.nv-feat-content p {
    font-size: 0.9rem;
    color: var(--nv-text-gray);
    line-height: 1.55;
    margin: 0;
}


/* FAQ */

.nv-faq-section {
    background-color: var(--nv-bg-light);
    padding: 90px 0;
    font-family: var(--nv-font-main);
}

.nv-faq-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.nv-faq-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 45px;
}

.nv-faq-badge {
    display: inline-block;
    background: #eff6ff;
    color: var(--nv-primary-blue);
    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-faq-title {
    font-size: 2.1rem;
    font-weight: 800;
    color: var(--nv-text-dark);
    margin-bottom: 15px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.nv-faq-desc {
    font-size: 1.03rem;
    color: var(--nv-text-gray);
    line-height: 1.6;
}

.nv-faq-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.nv-faq-item {
    background: var(--nv-white);
    border: 1px solid var(--nv-border-light);
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s;
    position: relative;
}

.nv-faq-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: var(--nv-primary-blue);
    opacity: 0;
    transition: 0.3s;
}

.nv-faq-item.active {
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.06);
    border-color: #bfdbfe;
}

.nv-faq-item.active::before {
    opacity: 1;
}

.nv-faq-trigger {
    width: 100%;
    padding: 20px 24px;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
}

.nv-faq-question-text {
    font-size: 1.03rem;
    font-weight: 700;
    color: var(--nv-text-dark);
    padding-right: 20px;
}

.nv-faq-icon {
    width: 32px;
    height: 32px;
    background: #f8fafc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--nv-primary-blue);
    font-size: 0.9rem;
    transition: 0.3s;
    flex-shrink: 0;
}

.nv-faq-item.active .nv-faq-icon {
    background: var(--nv-primary-blue);
    color: #fff;
    transform: rotate(180deg);
}

.nv-faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
}

.nv-faq-inner {
    padding: 0 24px 22px;
    font-size: 0.95rem;
    color: var(--nv-text-gray);
    line-height: 1.75;
}

.nv-faq-inner strong {
    color: var(--nv-text-dark);
}


/* RESPONSIVE */

@media (max-width: 1200px) {
    .nv-grid {
        grid-template-columns: 1fr 1fr;
        padding: 15px;
        gap: 15px;
        height: auto;
    }
    .nv-col {
        height: auto;
        padding: 0;
        align-items: flex-start;
    }
    .nv-col::after {
        display: none;
    }
    .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;
        border-radius: 0;
    }
    .action-col {
        grid-column: span 2;
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
        padding-right: 0;
        border-top: 1px solid var(--nv-pt-border);
        padding-top: 15px;
        margin-top: 5px;
        height: auto;
    }
    .price-group {
        align-items: flex-start;
    }
    .nv-btn {
        width: 100%;
    }
}

@media (max-width: 992px) {
    .nv-seo-block {
        flex-direction: column !important;
        gap: 40px;
    }
    .nv-seo-title {
        font-size: 1.6rem;
    }
    .nv-img-container {
        max-width: 100%;
    }
}

@media (max-width: 900px) {
    .nv-hero-container {
        flex-direction: column-reverse;
        text-align: center;
    }
    .nv-text-side {
        margin-top: 30px;
    }
    .nv-hero-h1 {
        font-size: 2.3rem;
    }
    .nv-hero-actions {
        justify-content: center;
    }
    .nv-img-side {
        justify-content: center;
    }
    .nv-hero-image {
        max-width: 80%;
    }
    .nv-feat-grid {
        grid-template-columns: 1fr;
    }
    .nv-period-selector {
        width: 100%;
        justify-content: flex-start;
        overflow-x: auto;
    }
    .nv-compare {
        font-size: 0.85rem;
    }
    .nv-compare th,
    .nv-compare td {
        padding: 10px 12px;
    }
}