.nv-premium-page {
    --cp-bg: #f8fafc;
    --cp-dark: #0f172a;
    --cp-blue: #2563eb;
    --cp-indigo: #4f46e5;
    --cp-text: #475569;
    --cp-gold: #d97706;
    --li-bg: #ffffff;
    --li-border: #e2e8f0;
    --li-title: #0f172a;
    --li-desc: #64748b;
    --li-icon-bg: #eff6ff;
    --li-icon: #3b82f6;
    --li-dot: #10b981;
    --nt-blue: #0d6efd;
    --nt-blue-hover: #0b5ed7;
    --nt-text: #212529;
    --nt-gray: #6c757d;
    --nt-border: #dee2e6;
    --nt-bg: #f8f9fa;
    --seo-bg: #ffffff;
    --seo-title: #0f172a;
    --seo-text: #475569;
    --seo-blue: #2563eb;
    --seo-border: #e2e8f0;
    --feat-bg: #f8fafc;
    --feat-card: #ffffff;
    --feat-blue: #2563eb;
    --feat-dark: #0f172a;
    --feat-text: #64748b;
    --feat-border: #e2e8f0;
    --faq-blue: #0d6efd;
    --faq-dark: #212529;
    --faq-gray: #6c757d;
    --faq-border: #e9ecef;
    --faq-bg: #f8f9fa;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--cp-text);
}
.nv-premium-page *, .nv-premium-page *::before, .nv-premium-page *::after { box-sizing: border-box; }
.nv-premium-page :where(h1, h2, h3, p, ul) { margin: 0; padding: 0; }
.nv-premium-page :where(ul) { list-style: none; }
.nv-premium-page :where(a) { text-decoration: none; }

.cp-hero-section {
    position: relative;
    padding: 60px 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
    font-family: 'Plus Jakarta Sans', sans-serif;
    border-bottom: 1px solid #e2e8f0;
    overflow: hidden;
}
.cp-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}
.cp-content { flex: 1.2; }
.cp-tag {
    display: inline-flex; align-items: center; gap: 6px;
    background: #fffbeb; color: var(--cp-gold);
    border: 1px solid #fcd34d;
    font-size: 0.75rem; font-weight: 700;
    padding: 6px 12px; border-radius: 20px;
    margin-bottom: 20px;
    text-transform: uppercase; letter-spacing: 0.5px;
}
.cp-title {
    font-size: 2.6rem; font-weight: 800; color: var(--cp-dark);
    line-height: 1.15; margin-bottom: 15px; letter-spacing: -0.02em;
}
.cp-title span {
    background: linear-gradient(135deg, var(--cp-blue) 0%, var(--cp-indigo) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.cp-desc {
    font-size: 1rem; color: var(--cp-text); line-height: 1.6;
    margin-bottom: 25px; max-width: 480px;
}
.cp-specs { display: flex; gap: 20px; margin-bottom: 30px; flex-wrap: wrap; }
.cp-spec-item {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.85rem; font-weight: 600; color: var(--cp-dark);
}
.cp-spec-item i { color: var(--cp-blue); }
.cp-btn-group { display: flex; align-items: center; gap: 15px; flex-wrap: wrap; }
.cp-btn-primary {
    background: var(--cp-dark); color: #fff;
    padding: 12px 28px; border-radius: 8px;
    font-weight: 700; text-decoration: none; font-size: 0.9rem;
    transition: 0.3s; box-shadow: 0 4px 12px rgba(15, 23, 42, 0.2);
    border: none; cursor: pointer;
}
.cp-btn-primary:hover { transform: translateY(-2px); background: #1e293b; }
.cp-btn-ghost {
    color: var(--cp-text); font-weight: 600; text-decoration: none; font-size: 0.9rem;
    display: flex; align-items: center; gap: 6px; transition: 0.2s;
    background: none; border: none; cursor: pointer;
}
.cp-btn-ghost:hover { color: var(--cp-blue); }
.cp-visual {
    flex: 0.8; display: flex; justify-content: center; position: relative;
}
.cp-blob {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 280px; height: 280px;
    background: radial-gradient(circle, rgba(37,99,235,0.1) 0%, rgba(255,255,255,0) 70%);
    z-index: -1;
}
.cp-img {
    width: 100%; max-width: 320px; height: auto; display: block;
    animation: cpFloat 6s ease-in-out infinite;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.08));
}
@keyframes cpFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.light-infra-section {
    background-color: var(--li-bg);
    border-top: 1px solid var(--li-border);
    border-bottom: 1px solid var(--li-border);
    font-family: 'Inter', sans-serif;
    padding: 0;
}
.li-container { max-width: 1200px; margin: 0 auto; }
.li-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.li-item {
    padding: 30px 20px; display: flex; align-items: center; justify-content: center;
    gap: 16px; border-right: 1px solid var(--li-border);
    transition: all 0.3s ease; position: relative; background: #fff;
}
.li-item:last-child { border-right: none; }
.li-item:hover { background-color: #f8fafc; }
.li-icon-box {
    width: 46px; height: 46px; border-radius: 10px;
    background-color: var(--li-icon-bg); color: var(--li-icon);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; transition: 0.3s; flex-shrink: 0;
}
.li-item:hover .li-icon-box {
    transform: scale(1.1); background-color: var(--li-icon); color: #fff;
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.2);
}
.li-content { display: flex; flex-direction: column; gap: 2px; }
.li-title {
    font-size: 0.95rem; font-weight: 800; color: var(--li-title);
    display: flex; align-items: center; gap: 8px; letter-spacing: -0.02em;
}
.li-desc {
    font-size: 0.75rem; font-weight: 600; color: var(--li-desc);
    text-transform: uppercase; letter-spacing: 0.5px;
}
.li-status-dot {
    width: 6px; height: 6px; background-color: var(--li-dot);
    border-radius: 50%; box-shadow: 0 0 0 rgba(16, 185, 129, 0.4);
    animation: lightPulse 2s infinite; flex-shrink: 0;
}
@keyframes lightPulse {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
    70% { box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.mid-bridge-section {
    text-align: center; padding: 80px 20px 40px 20px;
    background-color: #ffffff; font-family: 'Inter', sans-serif;
}
.mbs-container { max-width: 800px; margin: 0 auto; }
.mbs-title {
    font-size: 2.4rem; font-weight: 800; color: #0f172a;
    line-height: 1.2; margin-bottom: 15px; letter-spacing: -0.03em;
}
.mbs-title span {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.mbs-desc {
    font-size: 1.1rem; color: #64748b; line-height: 1.6; margin: 0 auto;
}

.netvay-pricing-list {
    padding: 50px 15px; background-color: #fff; font-family: 'Inter', sans-serif;
}
.nt-container {
    max-width: 1200px; margin: 0 auto;
    display: flex; flex-direction: column; gap: 10px;
}
.nt-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr 1fr 1fr 1fr;
    align-items: center; background: #fff;
    border: 1px solid #eaeff5; border-radius: 6px;
    padding: 20px 15px; transition: box-shadow 0.2s;
}
.nt-row:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.05); border-color: #dbeafe; z-index: 1;
}
.nt-col-name {
    display: flex; flex-direction: column; align-items: center; text-align: center; gap: 5px;
}
.nt-os-icons { display: flex; gap: 5px; font-size: 1.1rem; }
.nt-pkg-title {
    font-weight: 700; font-size: 0.9rem; color: var(--nt-text); text-transform: uppercase;
}
.nt-col-data {
    display: flex; flex-direction: column; align-items: center; text-align: center;
}
.nt-val { font-weight: 700; font-size: 1rem; color: var(--nt-text); margin-bottom: 2px; }
.nt-sub { font-size: 0.75rem; color: var(--nt-gray); font-weight: 500; text-transform: uppercase; }
.nt-col-price {
    display: flex; flex-direction: column; align-items: center; text-align: center;
}
.nt-price { font-weight: 700; font-size: 1.1rem; color: var(--nt-text); }
.nt-period { font-size: 0.75rem; color: var(--nt-gray); }
.nt-btn {
    background-color: var(--nt-blue); color: #fff; text-decoration: none;
    padding: 8px 16px; border-radius: 4px; font-size: 0.85rem; font-weight: 600;
    text-align: center; transition: 0.2s; display: inline-flex;
    align-items: center; justify-content: center; gap: 5px;
}
.nt-btn:hover { background-color: var(--nt-blue-hover); }

.seo-content-section {
    padding: 100px 20px; background-color: var(--seo-bg);
    font-family: 'Plus Jakarta Sans', sans-serif; overflow: hidden;
}
.seo-container {
    max-width: 1200px; margin: 0 auto;
    display: flex; flex-direction: column; gap: 100px;
}
.seo-row { display: flex; align-items: center; gap: 60px; }
.seo-row.reverse { flex-direction: row-reverse; }
.seo-text-col { flex: 1; padding: 20px 0; }
.seo-title {
    font-size: 2.2rem; font-weight: 800; color: var(--seo-title);
    margin-bottom: 25px; line-height: 1.2; letter-spacing: -0.02em;
}
.seo-title span { position: relative; z-index: 1; }
.seo-title span::after {
    content: ''; position: absolute; left: 0; bottom: 2px;
    width: 100%; height: 8px; background: #dbeafe; z-index: -1; opacity: 0.7;
}
.seo-desc {
    font-size: 1.05rem; color: var(--seo-text); line-height: 1.8;
    margin-bottom: 20px; text-align: justify;
}
.seo-desc p { margin-bottom: 15px; }
.seo-desc p:last-child { margin-bottom: 0; }
.seo-desc strong { color: var(--seo-title); font-weight: 700; }
.seo-desc a { color: var(--seo-blue); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }
.seo-desc a:hover { color: var(--cp-indigo); }
.seo-list {
    list-style: none; padding: 0; margin-top: 25px;
    display: grid; grid-template-columns: 1fr 1fr; gap: 15px;
}
.seo-list li {
    position: relative; padding-left: 25px; font-size: 0.95rem;
    font-weight: 600; color: var(--seo-title);
}
.seo-list li::before {
    content: '✓'; font-weight: 800;
    position: absolute; left: 0; top: 2px; color: var(--seo-blue); font-size: 0.85rem;
}
.seo-img-col {
    flex: 1; display: flex; justify-content: center; position: relative;
}
.seo-img-wrapper { position: relative; z-index: 2; transition: transform 0.4s ease; }
.seo-row:hover .seo-img-wrapper { transform: translateY(-10px); }
.seo-img {
    width: 100%; max-width: 500px; height: auto; display: block;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.08));
}
.seo-blob {
    position: absolute; width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(37,99,235,0.08) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%; top: 50%; left: 50%;
    transform: translate(-50%, -50%); z-index: 1;
}

.technical-features-section {
    padding: 100px 20px; background-color: var(--feat-bg);
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.tf-container { max-width: 1200px; margin: 0 auto; }
.tf-header {
    text-align: center; max-width: 700px; margin: 0 auto 60px auto;
}
.tf-header h2 {
    font-size: 2.2rem; font-weight: 800; color: var(--feat-dark);
    margin-bottom: 15px; letter-spacing: -0.03em;
}
.tf-header p {
    font-size: 1.05rem; color: var(--feat-text); line-height: 1.6;
}
.tf-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.tf-card {
    background: var(--feat-card); border: 1px solid var(--feat-border);
    padding: 40px 30px; border-radius: 20px;
    transition: all 0.3s ease; position: relative; overflow: hidden;
}
.tf-card:hover {
    transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border-color: var(--feat-blue);
}
.tf-icon {
    width: 54px; height: 54px; background-color: #eff6ff;
    color: var(--feat-blue); border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; margin-bottom: 25px; transition: 0.3s;
}
.tf-card:hover .tf-icon {
    background-color: var(--feat-blue); color: #fff; transform: rotate(-5deg);
}
.tf-card h3 {
    font-size: 1.2rem; font-weight: 800; color: var(--feat-dark); margin-bottom: 15px;
}
.tf-card p {
    font-size: 0.9rem; color: var(--feat-text); line-height: 1.7; margin-bottom: 0;
}
.tf-card::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 3px;
    background: var(--feat-blue); transition: width 0.3s ease;
}
.tf-card:hover::after { width: 100%; }

.hosting-faq-section {
    padding: 90px 20px; background-color: #fff; font-family: 'Inter', sans-serif;
}
.h-faq-container { max-width: 900px; margin: 0 auto; }
.h-faq-header { text-align: center; margin-bottom: 50px; }
.h-faq-header h2 {
    font-size: 2.2rem; font-weight: 800; color: var(--faq-dark);
    margin-bottom: 10px; letter-spacing: -0.02em;
}
.h-faq-header span { color: var(--faq-blue); }
.h-faq-header p { color: var(--faq-gray); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }
.h-faq-list { display: flex; flex-direction: column; gap: 15px; }
.h-faq-item {
    background-color: var(--faq-bg); border: 1px solid transparent;
    border-radius: 10px; transition: all 0.3s ease; overflow: hidden;
}
.h-faq-item.active {
    background-color: #fff; border-color: var(--faq-blue);
    box-shadow: 0 10px 30px rgba(13, 110, 253, 0.08);
}
.h-faq-btn {
    width: 100%; padding: 22px 25px; background: transparent; border: none;
    display: flex; justify-content: space-between; align-items: center;
    text-align: left; font-size: 1.05rem; font-weight: 700; color: var(--faq-dark);
    cursor: pointer; transition: 0.2s; gap: 15px; font-family: 'Inter', sans-serif;
}
.h-faq-item.active .h-faq-btn { color: var(--faq-blue); }
.h-faq-icon {
    width: 28px; height: 28px; background: #fff; border: 1px solid var(--faq-border);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 0.8rem; color: var(--faq-gray); transition: 0.3s; flex-shrink: 0;
}
.h-faq-item.active .h-faq-icon {
    background: var(--faq-blue); border-color: var(--faq-blue); color: #fff; transform: rotate(45deg);
}
.h-faq-content {
    max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    padding: 0 25px;
}
.h-faq-content p {
    padding-bottom: 25px; margin: 0; color: var(--faq-gray);
    font-size: 0.95rem; line-height: 1.7;
}
.h-faq-content strong { color: var(--faq-dark); font-weight: 600; }

.pv-cta { padding: 80px 20px; background: #0f172a; font-family: 'Plus Jakarta Sans', sans-serif; }
.pv-cta-box { max-width: 820px; margin: 0 auto; text-align: center; }
.pv-cta-box h2 { font-size: 2rem; font-weight: 800; color: #fff; margin-bottom: 15px; letter-spacing: -0.02em; }
.pv-cta-box p { font-size: 1.05rem; color: #cbd5e1; line-height: 1.7; margin-bottom: 30px; }
.pv-cta-actions { display: flex; align-items: center; justify-content: center; gap: 25px; flex-wrap: wrap; }
.pv-cta-btn { background: var(--cp-blue); color: #fff; padding: 14px 32px; border-radius: 8px; font-weight: 700; text-decoration: none; font-size: 0.95rem; transition: 0.3s; }
.pv-cta-btn:hover { background: #1d4ed8; transform: translateY(-2px); }
.pv-cta-phone { display: inline-flex; align-items: center; gap: 8px; color: #fff; font-weight: 700; font-size: 1.05rem; text-decoration: none; }
.pv-cta-phone i { color: var(--li-dot); }

@media (max-width: 900px) {
    .cp-container { flex-direction: column-reverse; text-align: center; gap: 30px; }
    .cp-title { font-size: 2.2rem; }
    .cp-desc { margin: 0 auto 20px auto; }
    .cp-specs { justify-content: center; }
    .cp-btn-group { justify-content: center; }
    .cp-img { max-width: 240px; }
}
@media (max-width: 992px) {
    .li-grid { grid-template-columns: repeat(2, 1fr); }
    .li-item:nth-child(2) { border-right: none; }
    .li-item { border-bottom: 1px solid var(--li-border); justify-content: flex-start; padding: 25px; }
    .li-item:nth-last-child(-n+2) { border-bottom: none; }
    .seo-row, .seo-row.reverse { flex-direction: column; text-align: left; gap: 40px; }
    .seo-title { font-size: 1.8rem; }
    .seo-img { max-width: 100%; }
    .seo-list { grid-template-columns: 1fr; }
    .seo-container { gap: 60px; }
    .tf-grid { grid-template-columns: repeat(2, 1fr); }
    .netvay-pricing-list { overflow-x: auto; }
    .nt-container { min-width: 900px; padding-bottom: 10px; }
}
@media (max-width: 576px) {
    .li-grid { grid-template-columns: 1fr; }
    .li-item { border-right: none; border-bottom: 1px solid var(--li-border); }
    .li-item:last-child { border-bottom: none; }
    .tf-grid { grid-template-columns: 1fr; }
    .h-faq-header h2 { font-size: 1.8rem; }
    .h-faq-btn { padding: 18px 20px; font-size: 0.95rem; }
    .pv-cta-box h2 { font-size: 1.6rem; }
}