.nv-hosting-page {
        --nv-font: 'Plus Jakarta Sans', sans-serif;
        --nv-primary: #0f172a;
        --nv-accent: #2563eb;
        --nv-h-primary: #0f172a;
        --nv-h-accent: #2563eb;
        --nv-h-success: #10b981;
        --nv-h-border: #e2e8f0;
        --nv-z-dark: #0f172a;
        --nv-z-text: #475569;
        --nv-z-accent: #2563eb;
        --nv-z-bg: #ffffff;
        --nv-gw-dark: #0f172a;
        --nv-gw-text: #475569;
        --nv-gw-accent: #2563eb;
        --nv-gw-bg: #f8fafc;
        --nv-gw-border: #e2e8f0;
        --nv-adv-dark: #0f172a;
        --nv-adv-gray: #64748b;
        --nv-adv-bg: #ffffff;
        --nv-adv-border: #e2e8f0;
        --nv-faq-dark: #0f172a;
        --nv-faq-text: #64748b;
        --nv-faq-accent: #2563eb;
        --nv-faq-bg: #f8fafc;
        --nv-faq-border: #e2e8f0;
        font-family: var(--nv-font);
        color: #333;
    }
    .nv-hosting-page *, .nv-hosting-page *::before, .nv-hosting-page *::after { box-sizing: border-box; }
    .nv-hosting-page :where(a) { text-decoration: none; }
    .nv-hosting-page :where(ul) { list-style: none; padding: 0; margin: 0; }
    .nv-hosting-page :where(h1, h2, h3, h6, p) { margin: 0; }

    .nv-ultra-hero {
        position: relative;
        background: #ffffff;
        padding: 40px 20px 60px 20px;
        font-family: var(--nv-font);
        overflow: hidden;
        border-bottom: 1px solid #e2e8f0;
    }

    .nv-aurora-blob {
        position: absolute;
        filter: blur(80px);
        opacity: 0.45;
        z-index: 0;
        animation: auroraMove 12s infinite alternate;
    }
    .blob-1 { top: -15%; left: -10%; width: 500px; height: 500px; background: #dbeafe; }
    .blob-2 { bottom: -15%; right: -5%; width: 400px; height: 400px; background: #ffedd5; }

    @keyframes auroraMove {
        0% { transform: translate(0, 0) scale(1); }
        100% { transform: translate(30px, 30px) scale(1.1); }
    }

    .nv-hero-container {
        max-width: 1100px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 40px;
        position: relative;
        z-index: 2;
    }

    .nv-text-side { flex: 1.2; }

    .nv-ultra-h1 {
        font-size: 2.8rem;
        font-weight: 800;
        line-height: 1.1;
        color: var(--nv-primary);
        margin-bottom: 15px;
        letter-spacing: -0.02em;
    }
    .nv-ultra-h1 span {
        background: linear-gradient(135deg, var(--nv-primary) 0%, var(--nv-accent) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .nv-ultra-p {
        font-size: 1rem;
        color: #475569;
        line-height: 1.6;
        margin-bottom: 25px;
        max-width: 550px;
    }

    .nv-action-row {
        display: flex; align-items: center; gap: 15px;
        margin-bottom: 25px;
    }

    .nv-btn-glow {
        position: relative;
        background: var(--nv-primary); color: #fff;
        padding: 12px 28px; border-radius: 8px;
        font-weight: 600; font-size: 0.95rem;
        font-family: inherit;
        transition: 0.3s; overflow: hidden;
        border: none; cursor: pointer;
    }
    .nv-btn-glow::before {
        content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
        transition: 0.5s;
    }
    .nv-btn-glow:hover::before { left: 100%; }
    .nv-btn-glow:hover { transform: translateY(-2px); box-shadow: 0 10px 20px -5px rgba(15, 23, 42, 0.3); }

    .nv-link-sec {
        font-size: 0.9rem; font-weight: 600; color: #64748b;
        font-family: inherit; background: transparent; border: none; padding: 0; cursor: pointer;
        display: flex; align-items: center; gap: 6px; transition: 0.2s;
    }
    .nv-link-sec:hover { color: var(--nv-accent); gap: 10px; }

    .nv-mini-features {
        display: flex;
        align-items: center;
        gap: 25px;
        padding-top: 20px;
        border-top: 1px solid rgba(0,0,0,0.06);
    }

    .nv-feat-item {
        display: flex; align-items: center; gap: 8px;
        font-size: 0.85rem; font-weight: 600; color: #475569;
    }
    .nv-feat-icon {
        color: var(--nv-accent);
        font-size: 0.9rem;
        background: rgba(37, 99, 235, 0.1);
        width: 24px; height: 24px;
        display: flex; align-items: center; justify-content: center;
        border-radius: 50%;
    }

    .nv-visual-side {
        flex: 0.8;
        display: flex;
        justify-content: flex-end;
        position: relative;
    }

    .nv-glass-card {
        position: relative;
        background: rgba(255, 255, 255, 0.4);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.8);
        border-radius: 20px;
        padding: 30px;
        box-shadow: 0 20px 40px -10px rgba(0,0,0,0.05), inset 0 0 0 1px rgba(255,255,255,0.5);
        transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
        transition: transform 0.4s ease;
    }
    .nv-glass-card:hover { transform: perspective(1000px) rotateY(0) rotateX(0) translateY(-5px); }

    .nv-hero-logo {
        width: 220px; height: auto; display: block;
        filter: drop-shadow(0 10px 20px rgba(0,0,0,0.08));
    }
    .nv-card-glow {
        position: absolute; top: 50%; left: 50%;
        width: 180px; height: 180px;
        background: radial-gradient(circle, rgba(255, 108, 44, 0.2), transparent 70%);
        transform: translate(-50%, -50%); z-index: -1;
    }

    .nv-pro-pricing {
        position: relative;
        background-color: #fff;
        padding: 80px 20px 100px 20px;
        font-family: var(--nv-font);
        overflow: hidden;
    }

    .nv-pricing-container {
        max-width: 1400px;
        margin: 0 auto;
        position: relative;
        z-index: 2;
    }

    .nv-control-bar {
        display: flex; flex-direction: column; align-items: center;
        margin-bottom: 70px; text-align: center;
        position: relative;
    }

    .nv-header-glow {
        position: absolute; top: 50%; left: 50%;
        transform: translate(-50%, -50%);
        width: 600px; height: 300px;
        background: radial-gradient(circle, rgba(37, 99, 235, 0.06) 0%, rgba(255,255,255,0) 70%);
        z-index: -1; pointer-events: none;
    }

    .nv-ctrl-title {
        font-size: 2.4rem; font-weight: 800; color: var(--nv-h-primary);
        margin-bottom: 10px; letter-spacing: -0.03em;
    }
    .nv-ctrl-sub {
        color: #64748b; font-size: 1.1rem; margin-bottom: 40px;
        max-width: 600px; line-height: 1.6;
    }

    .nv-period-tabs {
        display: inline-flex;
        background: #f1f5f9;
        padding: 6px;
        border-radius: 60px;
        position: relative;
        border: 1px solid var(--nv-h-border);
    }

    .nv-tab-btn {
        padding: 10px 28px;
        border-radius: 50px;
        border: none;
        background: transparent;
        font-size: 0.9rem; font-weight: 600; color: #64748b; cursor: pointer;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative; z-index: 2;
        font-family: var(--nv-font);
    }
    .nv-tab-btn:hover { color: var(--nv-h-primary); }
    .nv-tab-btn.active {
        background: #fff;
        color: var(--nv-h-accent);
        font-weight: 700;
        box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    }

    .nv-host-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
        align-items: flex-start;
    }

    .nv-h-card {
        background: #fff;
        border: 1px solid var(--nv-h-border);
        border-radius: 16px;
        position: relative;
        transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        overflow: hidden;
        display: flex; flex-direction: column;
    }

    .nv-h-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px -5px rgba(0,0,0,0.08);
        border-color: #cbd5e1;
        z-index: 10;
    }

    .nv-h-card.popular {
        border-color: var(--nv-h-accent);
        box-shadow: 0 15px 30px rgba(37, 99, 235, 0.1);
        background: linear-gradient(180deg, #f8fbff 0%, #fff 150px);
        transform: scale(1.02);
        z-index: 5;
    }
    .nv-h-card.popular:hover { transform: scale(1.02) translateY(-8px); }

    .nv-pop-ribbon {
        background: var(--nv-h-accent); color: #fff; text-align: center;
        font-size: 0.75rem; font-weight: 700; padding: 5px 0;
        text-transform: uppercase; letter-spacing: 1px;
    }

    .nv-card-body { padding: 25px 20px; flex: 1; }

    .nv-plan-header { text-align: center; margin-bottom: 20px; border-bottom: 1px solid #f1f5f9; padding-bottom: 20px; }
    .nv-plan-name { font-size: 1.1rem; font-weight: 800; color: var(--nv-h-primary); display: block; margin-bottom: 5px; }
    .nv-plan-desc { font-size: 0.8rem; color: #94a3b8; line-height: 1.4; min-height: 35px; display: block; }

    .nv-price-wrapper { margin: 15px 0; color: var(--nv-h-primary); }
    .nv-currency { font-size: 1.1rem; vertical-align: top; font-weight: 600; }
    .nv-value { font-size: 2.2rem; font-weight: 800; letter-spacing: -1px; transition: opacity 0.2s ease; }
    .nv-period-text { font-size: 0.85rem; color: #64748b; font-weight: 500; }

    .nv-buy-btn {
        display: flex; align-items: center; justify-content: center; gap: 8px;
        width: 100%; padding: 12px; border-radius: 8px;
        background: #fff; border: 2px solid var(--nv-h-primary);
        color: var(--nv-h-primary); font-weight: 700; font-size: 0.9rem;
        transition: 0.2s;
    }
    .nv-buy-btn:hover { background: var(--nv-h-primary); color: #fff; }

    .nv-h-card.popular .nv-buy-btn { background: var(--nv-h-accent); border-color: var(--nv-h-accent); color: #fff; box-shadow: 0 8px 15px rgba(37, 99, 235, 0.3); }
    .nv-h-card.popular .nv-buy-btn:hover { background: #1d4ed8; transform: translateY(-2px); }

    .nv-grp-title {
        font-size: 0.7rem; font-weight: 800; color: #94a3b8; text-transform: uppercase;
        margin-bottom: 10px; letter-spacing: 0.5px; display: flex; align-items: center; gap: 5px;
    }
    .nv-grp-title::after { content:''; height:1px; background:#f1f5f9; flex:1; }

    .nv-feat-row {
        display: flex; align-items: center; gap: 10px;
        font-size: 0.85rem; color: #475569; margin-bottom: 8px; font-weight: 600;
    }
    .nv-feat-row i { font-size: 0.9rem; flex-shrink: 0; }
    .nv-icon-check { color: var(--nv-h-success); }
    .nv-bold { color: var(--nv-h-primary); font-weight: 800; }

    .nv-gift-box {
        background: #fffbeb; border: 1px dashed #fcd34d;
        border-radius: 8px; padding: 10px; margin-top: 15px;
        display: none; text-align: center;
        animation: fadeInGift 0.5s ease;
    }
    @keyframes fadeInGift { from { opacity:0; transform:translateY(-5px); } to { opacity:1; transform:translateY(0); } }

    .nv-gift-title { font-size: 0.75rem; font-weight: 800; color: #b45309; margin-bottom: 2px; display: block; }
    .nv-gift-desc { font-size: 0.7rem; color: #d97706; }

    .nv-cpanel-footer {
        background: #f8fafc; padding: 12px; border-top: 1px solid #f1f5f9;
        display: flex; align-items: center; justify-content: center; gap: 8px;
    }
    .nv-cp-logo { height: 20px; width: auto; filter: grayscale(100%); opacity: 0.6; transition: 0.3s; }
    .nv-h-card:hover .nv-cp-logo { filter: grayscale(0%); opacity: 1; }
    .nv-cp-text { font-size: 0.7rem; font-weight: 600; color: #94a3b8; }

    .nv-zigzag-section {
        padding: 100px 20px;
        background-color: var(--nv-z-bg);
        font-family: var(--nv-font);
        overflow: hidden;
    }

    .nv-zigzag-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 120px;
    }

    .nv-zig-block {
        display: flex;
        align-items: flex-start;
        gap: 60px;
    }

    .nv-zig-block.reverse {
        flex-direction: row-reverse;
    }

    .nv-zig-content {
        flex: 1;
        padding-top: 10px;
    }

    .nv-zig-tag {
        display: inline-block;
        font-size: 0.8rem; font-weight: 700; color: var(--nv-z-accent);
        margin-bottom: 15px; text-transform: uppercase; letter-spacing: 1px;
        background: #eff6ff; padding: 6px 12px; border-radius: 20px;
    }

    .nv-zig-title {
        font-size: 2.2rem; font-weight: 800; color: var(--nv-z-dark);
        margin-bottom: 25px; line-height: 1.2; letter-spacing: -0.02em;
    }

    .nv-zig-scroll-box {
        max-height: 280px;
        overflow-y: auto;
        padding-right: 15px;
    }

    .nv-zig-scroll-box::-webkit-scrollbar { width: 4px; }
    .nv-zig-scroll-box::-webkit-scrollbar-track { background: #f1f5f9; border-radius: 4px; }
    .nv-zig-scroll-box::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 4px; }
    .nv-zig-scroll-box::-webkit-scrollbar-thumb:hover { background: var(--nv-z-accent); }

    .nv-zig-p {
        font-size: 1rem; color: var(--nv-z-text); line-height: 1.7;
        margin-bottom: 20px;
    }
    .nv-zig-p:last-child { margin-bottom: 0; }

    .nv-zig-content .nv-gw-specs { margin-top: 25px; }

    .nv-zig-visual {
        flex: 1;
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .nv-zig-img-box {
        position: relative;
        transition: transform 0.5s ease;
        padding: 20px;
        z-index: 2;
    }

    .nv-zig-block:hover .nv-zig-img-box {
        transform: perspective(1000px) rotateY(2deg) translateY(-10px);
    }

    .nv-zig-img {
        width: 100%; max-width: 480px; height: auto; display: block;
        transition: transform 0.5s ease;
        filter: drop-shadow(0 25px 50px rgba(0,0,0,0.12));
    }

    .nv-zig-block:hover .nv-zig-img { transform: scale(1.02); }

    .nv-zig-blob {
        position: absolute;
        width: 130%; height: 130%;
        top: -15%; left: -15%;
        background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
        z-index: 0;
        border-radius: 50%;
    }
    .nv-zig-blob.blob-green { background: radial-gradient(circle, rgba(16, 185, 129, 0.06) 0%, transparent 70%); }
    .nv-zig-blob.blob-amber { background: radial-gradient(circle, rgba(245, 158, 11, 0.06) 0%, transparent 70%); }
    .nv-zig-blob.blob-purple { background: radial-gradient(circle, rgba(147, 51, 234, 0.06) 0%, transparent 70%); }

    .nv-gateway-section {
        padding: 100px 20px;
        background-color: var(--nv-gw-bg);
        font-family: var(--nv-font);
        border-top: 1px solid var(--nv-gw-border);
    }

    .nv-gw-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .nv-gw-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        margin-bottom: 50px;
        border-bottom: 2px solid var(--nv-gw-border);
        padding-bottom: 20px;
    }

    .nv-gw-title-group h2 {
        font-size: 2rem; font-weight: 800; color: var(--nv-gw-dark);
        margin: 0 0 10px 0; letter-spacing: -0.03em;
    }
    .nv-gw-title-group p {
        font-size: 1rem; color: var(--nv-gw-text); margin: 0; max-width: 600px;
    }

    .nv-gw-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

    .nv-gw-card {
        background: #ffffff;
        border: 1px solid var(--nv-gw-border);
        border-radius: 12px;
        padding: 0;
        transition: all 0.2s ease-in-out;
        display: flex;
        flex-direction: column;
        position: relative;
        overflow: hidden;
    }

    .nv-gw-card:hover {
        transform: translateY(-5px);
        border-color: var(--nv-gw-accent);
        box-shadow: 0 10px 30px -10px rgba(37, 99, 235, 0.15);
    }

    .nv-gw-line { height: 4px; width: 100%; }
    .ln-blue { background: #2563eb; }
    .ln-purple { background: #9333ea; }
    .ln-dark { background: #0f172a; }

    .nv-gw-body { padding: 30px; flex: 1; }

    .nv-gw-tag {
        font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
        color: #64748b; background: #f1f5f9; padding: 4px 10px; border-radius: 4px;
        display: inline-block; margin-bottom: 15px;
    }

    .nv-gw-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 15px; }
    .nv-gw-h3 { font-size: 1.4rem; font-weight: 800; color: var(--nv-gw-dark); margin: 0; }
    .nv-gw-icon { font-size: 1.5rem; color: var(--nv-gw-text); opacity: 0.5; transition: 0.3s; }
    .nv-gw-card:hover .nv-gw-icon { color: var(--nv-gw-accent); opacity: 1; transform: scale(1.1); }

    .nv-gw-desc { font-size: 0.95rem; color: var(--nv-gw-text); line-height: 1.6; margin-bottom: 25px; }

    .nv-gw-specs {
        border-top: 1px dashed var(--nv-gw-border);
        padding-top: 20px;
    }
    .nv-gw-spec-li {
        font-size: 0.85rem; color: var(--nv-gw-dark); font-weight: 600;
        margin-bottom: 8px; display: flex; align-items: center; gap: 8px;
    }
    .nv-gw-spec-li i { color: var(--nv-h-success); font-size: 0.8rem; }

    .nv-gw-footer {
        padding: 15px 30px;
        background: #f8fafc;
        border-top: 1px solid var(--nv-gw-border);
        display: flex; justify-content: space-between; align-items: center;
        font-size: 0.9rem; font-weight: 700; color: var(--nv-gw-text);
        transition: 0.2s;
    }
    .nv-gw-card:hover .nv-gw-footer { background: var(--nv-gw-accent); color: #fff; }

    .nv-advantage-section {
        padding: 80px 20px;
        background-color: var(--nv-adv-bg);
        font-family: var(--nv-font);
        border-top: 1px solid var(--nv-adv-border);
    }

    .nv-adv-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .nv-adv-header {
        text-align: center;
        max-width: 750px;
        margin: 0 auto 50px auto;
    }
    .nv-adv-title {
        font-size: 2rem; font-weight: 800; color: var(--nv-adv-dark);
        margin-bottom: 10px; letter-spacing: -0.02em;
    }
    .nv-adv-desc {
        font-size: 1rem; color: var(--nv-adv-gray); line-height: 1.6;
    }
    .nv-kw-bold { color: #2563eb; font-weight: 700; }

    .nv-adv-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

    .nv-adv-card {
        background: #f8fafc;
        border: 1px solid transparent;
        border-radius: 16px;
        padding: 30px 25px;
        transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        display: flex;
        flex-direction: column;
        gap: 15px;
        position: relative;
        overflow: hidden;
    }

    .nv-adv-card:hover {
        background: #fff;
        border-color: #bfdbfe;
        transform: translateY(-5px);
        box-shadow: 0 15px 30px -5px rgba(0,0,0,0.06);
    }

    .nv-adv-icon-wrap {
        width: 50px; height: 50px;
        border-radius: 12px;
        display: flex; align-items: center; justify-content: center;
        font-size: 1.4rem;
        background: #fff;
        box-shadow: 0 4px 10px rgba(0,0,0,0.04);
        margin-bottom: 5px;
        transition: 0.3s;
    }
    .nv-adv-card:hover .nv-adv-icon-wrap {
        background: #2563eb; color: #fff; transform: rotate(-5deg);
    }

    .ic-move { color: #2563eb; }
    .ic-money { color: #10b981; }
    .ic-tr { color: #dc2626; }
    .ic-flash { color: #f59e0b; }
    .ic-seo { color: #9333ea; }
    .ic-bill { color: #475569; }

    .nv-adv-h3 {
        font-size: 1.1rem; font-weight: 800; color: var(--nv-adv-dark);
        margin: 0;
    }
    .nv-adv-p {
        font-size: 0.9rem; color: var(--nv-adv-gray); line-height: 1.5; margin: 0;
    }

    .nv-faq-section {
        padding: 100px 20px;
        background-color: var(--nv-faq-bg);
        font-family: var(--nv-font);
    }

    .nv-faq-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        gap: 60px;
        align-items: flex-start;
    }

    .nv-faq-left {
        flex: 0.9;
        position: sticky;
        top: 40px;
    }

    .nv-faq-title {
        font-size: 2.6rem; font-weight: 800; color: var(--nv-faq-dark);
        margin-bottom: 15px; line-height: 1.1; letter-spacing: -0.03em;
    }
    .nv-faq-title span { color: var(--nv-faq-accent); }

    .nv-faq-desc {
        font-size: 1.05rem; color: var(--nv-faq-text); line-height: 1.6;
        margin-bottom: 35px;
    }

    .nv-contact-box {
        background: #fff;
        border: 1px solid var(--nv-faq-border);
        border-radius: 20px;
        padding: 30px;
        box-shadow: 0 20px 40px -10px rgba(0,0,0,0.06);
    }

    .nv-contact-header {
        font-size: 0.9rem; font-weight: 700; color: var(--nv-faq-dark);
        margin-bottom: 20px; display: block; padding-bottom: 15px;
        border-bottom: 1px solid #f1f5f9;
    }

    .nv-contact-item {
        display: flex; align-items: center; gap: 15px;
        margin-bottom: 20px;
        transition: 0.2s;
    }
    .nv-contact-item:last-child { margin-bottom: 0; }
    .nv-contact-item:hover { transform: translateX(5px); }

    .nv-ci-icon {
        width: 44px; height: 44px;
        border-radius: 12px;
        display: flex; align-items: center; justify-content: center;
        font-size: 1.2rem; flex-shrink: 0;
        transition: 0.2s;
    }

    .icon-phone { background: #eff6ff; color: #2563eb; }
    .icon-wp { background: #f0fdf4; color: #25d366; }
    .icon-mail { background: #fff7ed; color: #f97316; }

    .nv-contact-item:hover .icon-phone { background: #2563eb; color: #fff; }
    .nv-contact-item:hover .icon-wp { background: #25d366; color: #fff; }
    .nv-contact-item:hover .icon-mail { background: #f97316; color: #fff; }

    .nv-ci-text h6 { margin: 0; font-size: 0.75rem; color: #94a3b8; text-transform: uppercase; letter-spacing: 0.5px; font-weight: 700; }
    .nv-ci-text p { margin: 2px 0 0 0; font-size: 1.05rem; font-weight: 700; color: var(--nv-faq-dark); }

    .nv-live-btn {
        display: flex; align-items: center; justify-content: center; gap: 10px;
        width: 100%; padding: 14px;
        border-radius: 12px;
        background: var(--nv-faq-dark); color: #fff;
        font-weight: 700;
        margin-top: 25px; transition: 0.3s;
    }
    .nv-live-btn:hover { background: var(--nv-faq-accent); transform: translateY(-2px); }

    .nv-faq-right {
        flex: 1.4;
        display: flex; flex-direction: column; gap: 15px;
    }

    .nv-accordion-item {
        background: #fff;
        border: 1px solid var(--nv-faq-border);
        border-radius: 12px;
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .nv-accordion-item.active {
        border-color: var(--nv-faq-accent);
        box-shadow: 0 10px 25px -5px rgba(37, 99, 235, 0.08);
    }

    .nv-accordion-header {
        width: 100%;
        padding: 20px 25px;
        cursor: pointer;
        display: flex; justify-content: space-between; align-items: center;
        font-weight: 700; color: var(--nv-faq-dark);
        font-size: 1rem;
        font-family: inherit;
        text-align: left;
        background: transparent;
        border: none;
        transition: 0.2s;
        gap: 15px;
    }

    .nv-accordion-header:hover { color: var(--nv-faq-accent); }

    .nv-accordion-icon {
        width: 24px; height: 24px;
        background: #f1f5f9; border-radius: 50%;
        display: flex; align-items: center; justify-content: center;
        font-size: 0.7rem; color: #64748b;
        transition: transform 0.3s ease;
        flex-shrink: 0;
    }

    .nv-accordion-item.active .nv-accordion-icon {
        transform: rotate(180deg);
        background: var(--nv-faq-accent); color: #fff;
    }

    .nv-accordion-body {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        background-color: #ffffff;
    }

    .nv-accordion-content {
        padding: 0 25px 25px 25px;
        color: var(--nv-faq-text);
        line-height: 1.6;
        font-size: 0.95rem;
    }

    @media (max-width: 1200px) {
        .nv-host-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
        .nv-h-card.popular { transform: none; }
        .nv-h-card.popular:hover { transform: translateY(-8px); }
    }

    @media (max-width: 992px) {
        .nv-zig-block, .nv-zig-block.reverse { flex-direction: column-reverse; gap: 40px; text-align: left; }
        .nv-zig-title { font-size: 2rem; }
        .nv-zigzag-container { gap: 80px; }
        .nv-zig-scroll-box { max-height: none; overflow: visible; padding-right: 0; }
        .nv-zig-img { max-width: 80%; margin: 0 auto; }

        .nv-gw-header { flex-direction: column; align-items: flex-start; gap: 10px; }
        .nv-gw-grid { grid-template-columns: 1fr; }

        .nv-faq-container { flex-direction: column; gap: 40px; }
        .nv-faq-left { position: static; width: 100%; }
        .nv-faq-right { width: 100%; }
        .nv-faq-title { font-size: 2rem; }
    }

    @media (max-width: 900px) {
        .nv-hero-container { flex-direction: column-reverse; text-align: center; gap: 30px; }
        .nv-ultra-h1 { font-size: 2.2rem; }
        .nv-ultra-p { margin-left: auto; margin-right: auto; }
        .nv-action-row { justify-content: center; }
        .nv-mini-features { justify-content: center; flex-wrap: wrap; gap: 15px; }
        .nv-visual-side { justify-content: center; width: 100%; }

        .nv-adv-grid { grid-template-columns: 1fr; }
        .nv-adv-card { padding: 20px; }
    }

    @media (max-width: 768px) {
        .nv-host-grid { grid-template-columns: 1fr; max-width: 450px; margin: 0 auto; }
        .nv-period-tabs { flex-wrap: wrap; justify-content: center; border-radius: 20px; }
        .nv-tab-btn { flex: 1 1 40%; }
    }