:root {
    --primary-green: #22C55E;
    --primary-dark: #1a1a2e;
    --primary-darker: #16213e;
    --accent: #0f3460;
    --vn-glass: 0 0% 100% / .06;
    --vn-accent: 135 70% 45%;
    --vn-accent-dark: 135 65% 35%;
}

body, h1, h2, h3, h4, h5, h6, p, a, span, div, button, input, select, textarea, label, li, td, th {
    font-family: 'Proxima Nova', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
}

body {
    background: #ffffff !important;
    min-height: 100vh;
}

.vn-header {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: rgba(241,248,233,0.6);
    border-bottom: 1px solid rgba(139,195,74,0.08);
    backdrop-filter: blur(12px);
}

.vn-header__inner {
    max-width: 1280px;
    margin: auto;
    padding: 24px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.vn-brand {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.vn-brand__mark {
    width: 38px;
    height: 38px;
    border-radius: 13px;
    display: grid;
    place-items: center;
    background: hsl(var(--vn-glass));
}

.vn-brand__logo {
    width: 34px;
    height: 34px;
}

.vn-brand__name {
    font-size: 26px;
    font-weight: 500;
    letter-spacing: -0.03em;
    color: #000;
}

.vn-nav {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 6px 10px;
    border-radius: 16px;
    background: hsl(var(--vn-glass));
}

.vn-nav__link {
    font-size: 15px;
    text-decoration: none;
    color: #000;
    position: relative;
    white-space: nowrap;
}

.vn-nav__link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    background: hsl(var(--vn-accent));
    transition: .25s;
}

.vn-nav__link:hover::after {
    width: 100%;
}

.vn-nav__trial {
    position: relative;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 0.3px;
    color: #fff;
    background: linear-gradient(135deg, #558b2f 0%, #7cb342 50%, #9ccc65 100%);
    box-shadow: 0 4px 14px rgba(85,139,47,0.25), 0 1px 3px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.15);
}

.vn-nav__trial:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(85,139,47,0.35), 0 2px 6px rgba(0,0,0,0.1);
    color: #fff;
}

@keyframes trialPulse {
    0% { box-shadow: 0 0 0 0 rgba(139,195,74,.35); }
    70% { box-shadow: 0 0 0 10px rgba(139,195,74,0); }
    100% { box-shadow: 0 0 0 0 rgba(139,195,74,0); }
}

.vn-hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    flex-direction: column;
    gap: 5px;
    z-index: 10001;
}
.vn-hamburger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
}
.vn-hamburger--open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.vn-hamburger--open span:nth-child(2) { opacity: 0; }
.vn-hamburger--open span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

.vn-header__top {
    display: contents;
}

@media (max-width: 768px) {
    .vn-header__inner {
        padding: 0;
        flex-direction: column;
        align-items: center;
        gap: 0;
    }
    .vn-header__top {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 12px 16px 6px;
        width: 100%;
    }
    .vn-hamburger {
        display: none !important;
    }
    .vn-nav {
        display: flex !important;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 5px 6px;
        padding: 4px 12px 10px;
        border-radius: 0;
        background: transparent;
    }
    .vn-nav__link {
        font-size: 12.5px;
        padding: 5px 10px;
        border-radius: 20px;
        background: rgba(255,255,255,0.7);
        border: 1px solid rgba(139,195,74,0.15);
        white-space: nowrap;
        text-align: center;
    }
    .vn-nav__link:hover, .vn-nav__link:active {
        background: rgba(139,195,74,0.12);
    }
    .vn-nav__trial {
        padding: 5px 14px;
        font-size: 12.5px;
        white-space: nowrap;
    }
    .vn-brand__name { font-size: 22px; }
}
@media (min-width: 769px) and (max-width: 980px) {
    .vn-nav__link { font-size: 13px; }
    .vn-nav__trial {
        padding: 10px 14px;
        font-size: 13px;
    }
    .vn-nav { gap: 10px; }
}

[data-bs-theme="dark"] {
    --bs-body-bg: #121212;
    --bs-body-color: #e0e0e0;
    --card-bg: #1e1e1e;
    --card-border: #333;
}

[data-bs-theme="light"] {
    --card-bg: #ffffff;
    --card-border: #e0e0e0;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
}

.btn-primary, .btn-success {
    background-color: var(--primary-green) !important;
    border-color: var(--primary-green) !important;
}

.btn-primary:hover, .btn-success:hover {
    background-color: #16a34a !important;
    border-color: #16a34a !important;
}

.text-success, .text-primary-green {
    color: var(--primary-green) !important;
}

.bg-primary-green {
    background-color: var(--primary-green) !important;
}

.hero-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-darker) 50%, var(--accent) 100%);
    color: white;
    padding: 100px 0;
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: 800;
}

.pricing-card {
    border: 2px solid var(--card-border);
    border-radius: 16px;
    transition: all 0.3s ease;
    background: var(--card-bg);
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(34, 197, 94, 0.15);
    border-color: var(--primary-green);
}

.pricing-card.featured {
    border-color: var(--primary-green);
    position: relative;
}

.pricing-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-green);
}

.price-original {
    text-decoration: line-through;
    color: #999;
    font-size: 1.1rem;
}

.price-sale {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-green);
}

.discount-badge {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.limited-badge {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.dashboard-card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.dashboard-card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.stat-card {
    border-radius: 12px;
    padding: 24px;
    color: white;
}

.stat-card.green { background: linear-gradient(135deg, #22C55E, #16a34a); }
.stat-card.blue { background: linear-gradient(135deg, #3b82f6, #2563eb); }
.stat-card.purple { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
.stat-card.orange { background: linear-gradient(135deg, #f59e0b, #d97706); }
.stat-card.red { background: linear-gradient(135deg, #ef4444, #dc2626); }
.stat-card.teal { background: linear-gradient(135deg, #14b8a6, #0d9488); }

.stat-card .stat-number {
    font-size: 2rem;
    font-weight: 800;
}

.stat-card-clickable {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}
.stat-card-clickable:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}
.ring-highlight {
    outline: 3px solid #fff;
    outline-offset: 2px;
    box-shadow: 0 0 0 6px rgba(34,197,94,0.4), 0 8px 25px rgba(0,0,0,0.2) !important;
    transform: translateY(-2px);
}

.license-key-display {
    font-family: 'Courier New', monospace;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border: 2px solid var(--primary-green);
    padding: 12px 20px;
    border-radius: 8px;
    display: inline-block;
}

[data-bs-theme="dark"] .license-key-display {
    background: linear-gradient(135deg, #064e3b, #065f46);
}

.sidebar {
    min-height: 100vh;
    background: var(--primary-dark);
    position: sticky;
    top: 0;
    flex-shrink: 0;
}

.sidebar .nav-link {
    color: rgba(255,255,255,0.7);
    padding: 10px 16px;
    border-radius: 8px;
    margin: 2px 6px;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.admin-content {
    width: 100%;
    min-width: 0;
    overflow-x: auto;
}

.sidebar .nav-link:hover, .sidebar .nav-link.active {
    background: rgba(34, 197, 94, 0.2);
    color: var(--primary-green);
}

.table-hover tbody tr:hover {
    background-color: rgba(34, 197, 94, 0.05);
}

.vn-auth {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: auto;
    background: linear-gradient(135deg, #f0f4e8 0%, #e8f0dc 30%, #f5f7f0 60%, #eef2e6 100%);
    padding: 36px 32px;
}

.vn-auth__card {
    display: flex;
    width: 100%;
    max-width: 880px;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 28px;
    border: 1px solid rgba(255,255,255,0.9);
    box-shadow:
        0 20px 60px rgba(85,139,47,0.12),
        0 8px 24px rgba(0,0,0,0.06),
        0 2px 6px rgba(0,0,0,0.03),
        inset 0 1px 0 rgba(255,255,255,0.8);
    overflow: hidden;
    transform: translateY(0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vn-auth__card:hover {
    transform: translateY(-4px);
    box-shadow:
        0 28px 70px rgba(85,139,47,0.15),
        0 12px 32px rgba(0,0,0,0.08),
        0 4px 10px rgba(0,0,0,0.04),
        inset 0 1px 0 rgba(255,255,255,0.8);
}

.vn-auth__side {
    display: none;
    width: 380px;
    min-width: 380px;
    background: linear-gradient(170deg, #6d8c3a 0%, #7a9a3e 25%, #8aaa48 50%, #6f8e38 75%, #5a7a2e 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    margin: 12px;
}

.vn-auth__side::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 500px 400px at 20% 80%, rgba(255,255,255,0.06) 0%, transparent 70%),
        radial-gradient(ellipse 400px 300px at 80% 10%, rgba(255,255,255,0.04) 0%, transparent 70%),
        radial-gradient(circle 200px at 50% 50%, rgba(0,0,0,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.vn-auth__side::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.12) 100%);
    pointer-events: none;
}

.vn-auth__side-content {
    position: relative;
    z-index: 1;
    padding: 30px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.vn-auth__side-logo {
    margin-bottom: 18px;
}

.vn-auth__side-logo img {
    border-radius: 12px;
    width: 48px;
    height: 48px;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.2));
}

.vn-auth__side-title {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin-bottom: 10px;
    color: #fff;
    -webkit-text-fill-color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.vn-auth__side-text {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.5;
    margin-bottom: 20px;
}

.vn-auth__side-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.vn-auth__side-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
    padding: 10px 16px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 14px;
    transition: all 0.3s ease;
}

.vn-auth__side-feature:hover {
    background: rgba(255,255,255,0.18);
    transform: translateX(4px);
}

.vn-auth__side-feature i {
    color: rgba(255,255,255,0.85);
    font-size: 1.15rem;
}

.vn-auth__form-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px 28px;
}

.vn-auth__form-inner {
    width: 100%;
    max-width: 380px;
}

.vn-auth__title {
    font-size: 1.6rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
    margin-bottom: 4px;
}

.vn-auth__subtitle {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
}

.vn-auth__google {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 10px 18px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    background: #fff;
    color: #334155;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
}

.vn-auth__google:hover {
    border-color: #94a3b8;
    background: #f8fafc;
    color: #0f172a;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.vn-auth__divider {
    display: flex;
    align-items: center;
    margin: 20px 0;
    color: #94a3b8;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vn-auth__divider::before,
.vn-auth__divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e2e8f0;
}

.vn-auth__divider span {
    padding: 0 16px;
}

.vn-auth__label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 4px;
}

.vn-auth__input {
    width: 100%;
    padding: 9px 13px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 0.88rem;
    color: #0f172a;
    background: #fff;
    transition: all 0.2s;
    outline: none;
}

.vn-auth__input:focus {
    border-color: #22C55E;
    box-shadow: 0 0 0 3px rgba(34,197,94,0.1);
}

.vn-auth__input::placeholder {
    color: #94a3b8;
}

.vn-auth__forgot {
    font-size: 0.82rem;
    color: #22C55E;
    text-decoration: none;
    font-weight: 600;
}

.vn-auth__forgot:hover {
    color: #16a34a;
}

.vn-auth__btn {
    display: block;
    width: 100%;
    padding: 10px 24px;
    margin-top: 14px;
    border: none;
    border-radius: 50px;
    background: linear-gradient(135deg, #558b2f 0%, #7cb342 50%, #9ccc65 100%);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(85,139,47,0.25), 0 1px 3px rgba(0,0,0,0.08);
}

.vn-auth__btn:hover {
    background: linear-gradient(135deg, #558b2f 0%, #7cb342 50%, #9ccc65 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(85,139,47,0.35), 0 2px 6px rgba(0,0,0,0.1);
}

.vn-auth__switch {
    text-align: center;
    margin-top: 16px;
    font-size: 0.86rem;
    color: #64748b;
    margin-bottom: 0;
}

.vn-auth__switch a {
    color: #22C55E;
    font-weight: 700;
    text-decoration: none;
}

.vn-auth__switch a:hover {
    color: #16a34a;
}

@media (max-width: 991px) {
    .vn-auth { padding: 24px 16px; }
    .vn-auth__card { border-radius: 20px; flex-direction: column; max-width: 480px; margin: 0 auto; }
    .vn-auth__form-wrap { padding: 28px 20px; }
    .vn-auth__side { display: none; }
}
@media (min-width: 992px) {
    .vn-auth__side { display: flex; }
}
@media (max-width: 480px) {
    .vn-auth { padding: 16px 12px; }
    .vn-auth__card { border-radius: 16px; }
    .vn-auth__form-wrap { padding: 24px 16px; }
    .vn-auth__title { font-size: 1.3rem; }
    .vn-auth__input { padding: 10px 12px; font-size: 0.9rem; }
    .vn-auth__btn { padding: 12px 20px; font-size: 0.9rem; }
}

.auth-card {
    max-width: 480px;
    margin: 60px auto;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.google-btn {
    background: white;
    border: 2px solid #e0e0e0;
    color: #333;
    padding: 10px 20px;
    border-radius: 8px;
    transition: all 0.2s;
}

.google-btn:hover {
    border-color: #4285f4;
    box-shadow: 0 2px 8px rgba(66, 133, 244, 0.2);
}

.domain-list .badge {
    font-size: 0.85rem;
    padding: 6px 12px;
}

@media (max-width: 768px) {
    .hero-section { padding: 60px 0; }
    .hero-section h1 { font-size: 2rem; }
    .price-sale { font-size: 2rem; }
    .stat-card .stat-number { font-size: 1.5rem; }
}

.vn-pricing-hero {
    position: relative;
    padding: 60px 0 100px;
    overflow: hidden;
    background: linear-gradient(135deg, #33691e 0%, #558b2f 50%, #33691e 100%);
    color: #fff;
}

.vn-pricing-hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 600px 400px at 20% 50%, rgba(139,195,74,0.15) 0%, transparent 70%),
        radial-gradient(ellipse 500px 300px at 80% 30%, rgba(124,179,66,0.12) 0%, transparent 70%);
    pointer-events: none;
}

.vn-pricing-badge {
    display: inline-block;
    padding: 6px 20px;
    border-radius: 50px;
    background: rgba(255,255,255,0.15);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255,255,255,0.25);
    margin-bottom: 16px;
}

.vn-pricing-hero__title {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 16px;
    color: #fff;
    -webkit-text-fill-color: #fff;
}

.vn-pricing-hero__sub {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.6;
}

.vn-pricing-cards {
    background: linear-gradient(135deg, #f1f8e9 0%, #e8f5e9 30%, #fffde7 70%, #f1f8e9 100%);
    padding-bottom: 60px;
}

.vn-price-card {
    background: transparent;
    border: none;
    border-radius: 20px;
    padding: 0;
    position: relative;
    transition: all 0.4s cubic-bezier(.4,0,.2,1);
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: visible;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    padding-top: 50px;
}

.vn-price-card::before {
    display: none;
}

.vn-price-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.18);
}

.vn-price-card__bubble {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -30%);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    z-index: 10;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.vn-price-card__bubble-price {
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1.1;
}

.vn-price-card__bubble-period {
    font-size: 0.55rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.9;
}

.vn-price-card__body {
    background: #fff;
    border-radius: 20px 20px 0 0;
    padding: 40px 24px 18px;
    flex-grow: 1;
    position: relative;
    text-align: center;
    border: 0.5px solid var(--card-accent, #7cb342);
    border-bottom: none;
}

.vn-price-card__ribbon {
    position: absolute;
    top: 10px;
    right: -6px;
    background: var(--card-accent, #7cb342);
    color: #fff;
    padding: 4px 14px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border-radius: 4px 0 0 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    z-index: 5;
}

.vn-price-card__ribbon::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: -6px;
    width: 0;
    height: 0;
    border-top: 6px solid rgba(0,0,0,0.3);
    border-right: 6px solid transparent;
}

.vn-price-card__name {
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
    letter-spacing: 0.03em;
}

.vn-price-card__subtitle {
    font-size: 0.78rem;
    color: #888;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.vn-price-card__sites {
    font-size: 0.85rem;
    font-weight: 500;
    color: #444;
    padding: 6px 12px;
    background: #f5f5f5;
    border-radius: 8px;
    margin-bottom: 12px;
    text-align: center;
}

.vn-price-card__tagline {
    font-size: 0.8rem;
    color: #777;
    line-height: 1.5;
    margin-bottom: 8px;
}

.vn-price-card__validity {
    font-size: 0.78rem;
    color: #888;
    margin-bottom: 14px;
}

.vn-price-card__original-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 16px;
}

.vn-price-card__original-price del {
    color: #999;
    font-size: 0.88rem;
}

.vn-price-card__save {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 50px;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    color: #92400e;
    font-size: 0.68rem;
    font-weight: 700;
}

.vn-price-card__features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.vn-price-card__features li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 0;
    font-size: 0.82rem;
    font-weight: 400;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
}

.vn-price-card__features li:last-child {
    border-bottom: none;
}

.vn-price-card__icon-yes {
    font-size: 0.9rem;
    font-weight: 700;
    min-width: 18px;
    text-align: center;
}

.vn-price-card__icon-no {
    font-size: 0.75rem;
    font-weight: 700;
    color: #e53935;
    min-width: 18px;
    text-align: center;
}

.vn-price-card__feat-disabled {
    color: #aaa;
}

.vn-price-card__bottom {
    background: #1a2332;
    border-radius: 0 0 20px 20px;
    padding: 16px 24px;
    text-align: center;
}

.vn-price-card__btn {
    display: inline-block;
    text-align: center;
    padding: 10px 36px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 2px solid;
    color: #fff;
    transition: all 0.3s;
    cursor: pointer;
}

.vn-price-card__btn:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    filter: brightness(1.1);
}

.vn-price-card__btn--disabled {
    background: #555 !important;
    border-color: #555 !important;
    color: #999 !important;
    cursor: not-allowed;
}

.vn-price-card__btn--disabled:hover {
    transform: none;
    box-shadow: none;
    filter: none;
}

.vn-trust__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 500;
}

.vn-trust__item i {
    font-size: 1.6rem;
    color: #7cb342;
}

@media (max-width: 768px) {
    .vn-pricing-hero { padding: 40px 0 80px; }
    .vn-pricing-hero__title { font-size: 1.6rem; }
    .vn-pricing-hero__sub { font-size: 0.9rem; }
    .vn-price-card__bubble { width: 90px; height: 90px; }
    .vn-price-card__bubble-price { font-size: 1.1rem; }
    .vn-price-card { margin-bottom: 0; }
    .vn-pricing-cards .col-lg-4 { margin-bottom: 55px; }
    .vn-pricing-cards .col-lg-4:last-child { margin-bottom: 0; }
    .vn-price-card__body { padding: 30px 18px 14px; }
    .vn-price-card__name { font-size: 1.2rem; }
    .vn-pricing-cards { padding-bottom: 30px; }
    .vn-trust__item { font-size: 0.8rem; }
    .vn-trust__item i { font-size: 1.3rem; }
}

.vn-footer {
    background: rgba(241,248,233,0.6);
    border-top: 1px solid rgba(139,195,74,0.08);
    margin-top: 0;
}

.vn-footer__top {
    padding: 48px 0 36px;
}

.vn-footer__brand-name {
    font-size: 1.3rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.vn-footer__desc {
    font-size: 0.88rem;
    color: #64748b;
    line-height: 1.65;
    margin: 0;
    max-width: 300px;
}

.vn-footer__heading {
    font-size: 0.82rem;
    font-weight: 700;
    color: #0f172a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.vn-footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vn-footer__links li {
    margin-bottom: 10px;
}

.vn-footer__links a {
    font-size: 0.88rem;
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s;
}

.vn-footer__links a:hover {
    color: #22C55E;
}

.vn-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(0,0,0,0.06);
}

.vn-footer__bottom p {
    font-size: 0.82rem;
    color: #94a3b8;
    margin: 0;
}

.vn-footer__bottom-links {
    display: flex;
    gap: 20px;
}

.vn-footer__bottom-links a {
    font-size: 0.82rem;
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s;
}

.vn-footer__bottom-links a:hover {
    color: #22C55E;
}

@media (max-width: 768px) {
    .vn-footer__top { padding: 32px 0 24px; }
    .vn-footer__desc { max-width: 100%; }
    .vn-footer__bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    .vn-footer__bottom p { font-size: 0.75rem; line-height: 1.5; }
    .container, .container-fluid { padding-left: 12px; padding-right: 12px; }
    .dashboard-card { border-radius: 14px; }
    .card-body { padding: 14px; }
    table { font-size: 0.8rem; }
    .table td, .table th { padding: 8px 8px; }
    .table-responsive { overflow-x: auto; -webkit-overflow-scrolling: touch; }
    h3, .h3 { font-size: 1.2rem; }
    h4, .h4 { font-size: 1.1rem; }
    .py-4 { padding-top: 1rem !important; padding-bottom: 1rem !important; }
    .btn { font-size: 0.85rem; padding: 8px 14px; }
    .badge { font-size: 0.72rem; }
    .modal-dialog { margin: 10px; }
    .nav-link { font-size: 0.88rem; padding: 8px 12px; }
    .col-lg-3.col-md-4 { margin-bottom: 12px; }
    .hero-section h1 { font-size: 1.6rem; }
}

