/* ==========================================================================
   VIACONECTA VIRTUAL NUMBERS - SUNSET OBSIDIAN THEME (v4.0)
   Matches Main Site Aesthetics (#050505 + #ff6b00 + Matte Glassmorphism)
   ========================================================================== */

:root {
    --vn-bg: #050505;
    --vn-card-bg: rgba(15, 15, 15, 0.75);
    --vn-card-border: rgba(255, 255, 255, 0.08);
    --vn-orange: #ff6b00;
    --vn-orange-hover: #ff8533;
    --vn-orange-glow: rgba(255, 107, 0, 0.35);
    --vn-cyan: #06b6d4;
    --vn-cyan-glow: rgba(6, 182, 212, 0.3);
    --vn-emerald: #10b981;
    --vn-emerald-bg: rgba(16, 185, 129, 0.12);
    --vn-purple: #a855f7;
    --vn-text-main: #ffffff;
    --vn-text-muted: #94a3b8;
    --vn-text-dim: #64748b;
    --vn-glass: rgba(20, 20, 20, 0.65);
}

html, body {
    background-color: #050505 !important;
}

.vn-page-wrapper {
    background-color: var(--vn-bg);
    color: var(--vn-text-main);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    min-height: 100vh;
    padding-bottom: 60px;
}

/* --------------------------------------------------------------------------
   HERO SECTION (VIACONECTA AMBIENT ORANGE GLOW)
   -------------------------------------------------------------------------- */
.vn-hero {
    position: relative;
    padding: 115px 20px 20px;
    margin-bottom: 30px !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: radial-gradient(circle at 50% -20px, rgba(255, 107, 0, 0.22) 0%, rgba(5, 5, 5, 0) 70%);
}

.vn-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(255, 107, 0, 0.12);
    border: 1px solid rgba(255, 107, 0, 0.3);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    color: #ff8533;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 16px;
    backdrop-filter: blur(10px);
}

.vn-pulse-orange {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ff6b00;
    box-shadow: 0 0 10px #ff6b00;
    animation: vnPulse 1.5s infinite;
}

.vn-hero h1 {
    font-size: clamp(28px, 4.8vw, 48px);
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 14px;
    background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
}

.vn-hero p {
    font-size: 17px;
    color: var(--vn-text-muted);
    max-width: 720px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

/* Open 3-Card Mode Selector Grid */
.vn-mode-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    width: 100%;
    max-width: 1100px;
    margin-top: 10px;
}

.vn-mode-card {
    position: relative;
    background: rgba(18, 18, 18, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 20px 18px;
    text-align: left;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.vn-mode-card:hover {
    background: rgba(25, 25, 25, 0.85);
    border-color: rgba(255, 107, 0, 0.3);
    transform: translateY(-2px);
}

.vn-mode-card.active {
    background: linear-gradient(180deg, rgba(255, 107, 0, 0.12) 0%, rgba(20, 20, 20, 0.9) 100%);
    border-color: #ff6b00;
    box-shadow: 0 10px 30px -5px rgba(255, 107, 0, 0.25);
}

.vn-mode-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.vn-mode-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 107, 0, 0.12);
    color: #ff6b00;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.2s ease;
}

.vn-mode-card.active .vn-mode-icon {
    background: #ff6b00;
    color: #ffffff;
    box-shadow: 0 0 15px rgba(255, 107, 0, 0.5);
}

.vn-mode-price-badge {
    font-size: 14px;
    font-weight: 800;
    color: #ff8533;
    background: rgba(255, 107, 0, 0.1);
    padding: 4px 10px;
    border-radius: 8px;
    border: 1px solid rgba(255, 107, 0, 0.2);
}

.vn-mode-title {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
}

.vn-mode-subtitle {
    font-size: 12px;
    color: var(--vn-text-muted);
    line-height: 1.4;
    margin-bottom: 10px;
}

.vn-mode-badge-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 600;
    color: #cbd5e1;
    background: rgba(255, 255, 255, 0.05);
    padding: 3px 8px;
    border-radius: 6px;
}

.vn-tab-btn.active i {
    color: #ff6b00 !important;
}

/* --------------------------------------------------------------------------
   CONTAINER & SECTION LAYOUT
   -------------------------------------------------------------------------- */
.vn-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

#vn-demo, #vn-pricing {
    scroll-margin-top: 100px;
}

.vn-section-header {
    text-align: center;
    margin: 50px 0 28px;
}

.vn-section-header h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
    color: #ffffff;
}

.vn-section-header p {
    font-size: 15px;
    color: var(--vn-text-muted);
}

/* --------------------------------------------------------------------------
   PRIMARY & SECONDARY ACTION BUTTONS
   -------------------------------------------------------------------------- */
.vn-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #ff6b00 0%, #ff8533 100%);
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 6px 25px rgba(255, 107, 0, 0.35);
    border: none;
    cursor: pointer;
    letter-spacing: 0.2px;
}

.vn-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 35px rgba(255, 107, 0, 0.55);
    color: #ffffff;
    background: linear-gradient(135deg, #ff7a1a 0%, #ff6b00 100%);
}

.vn-btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 15px rgba(255, 107, 0, 0.3);
}

.vn-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--vn-card-border);
    color: var(--vn-text-main);
    padding: 14px 28px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
    backdrop-filter: blur(10px);
    cursor: pointer;
}

.vn-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   INTERACTIVE COMMAND CONSOLE (SELECTOR + LIVE PREVIEW)
   -------------------------------------------------------------------------- */
.vn-demo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 0;
    margin-bottom: 40px;
}

.vn-card {
    background: var(--vn-card-bg);
    border: 1px solid var(--vn-card-border);
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.vn-card-title {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
}

.vn-card-subtitle {
    font-size: 13px;
    color: var(--vn-text-muted);
    margin-bottom: 20px;
    line-height: 1.5;
}

/* Service App Selection Chips */
.vn-app-selector {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.vn-app-chip {
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: var(--vn-text-muted);
}

.vn-app-chip:hover, .vn-app-chip.active {
    background: rgba(255, 107, 0, 0.12);
    border-color: #ff6b00;
    color: #ffffff;
}

.vn-app-chip i {
    font-size: 18px;
    color: #ff6b00;
}

/* --------------------------------------------------------------------------
   REGION FILTER TABS CAPSULE (FUTURISTIC PILL DOCK)
   -------------------------------------------------------------------------- */
.vn-region-tabs-wrapper {
    margin-bottom: 16px;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.vn-region-tabs-wrapper::-webkit-scrollbar {
    display: none;
}

.vn-region-tabs {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px;
    background: rgba(14, 16, 22, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 40px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.5), 0 8px 24px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    width: 100%;
    box-sizing: border-box;
}

.vn-region-tab {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 8px 12px;
    border-radius: 30px;
    border: 1px solid transparent;
    background: transparent;
    color: #94a3b8;
    font-size: 12.5px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    user-select: none;
}

.vn-region-tab .vn-tab-icon {
    font-size: 13px;
    display: inline-flex;
    align-items: center;
}

.vn-region-tab .vn-tab-text {
    letter-spacing: 0.1px;
}

.vn-region-tab .vn-tab-count {
    font-size: 10px;
    font-weight: 800;
    padding: 1px 6px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    color: #cbd5e1;
    transition: all 0.2s ease;
}

.vn-region-tab:hover:not(.active) {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

.vn-region-tab.active {
    background: linear-gradient(135deg, #ff5500 0%, #ff6b00 45%, #ff8c38 100%);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 18px rgba(255, 107, 0, 0.45), 0 0 12px rgba(255, 107, 0, 0.25);
    font-weight: 700;
    transform: scale(1.02);
}

.vn-region-tab.active .vn-tab-count {
    background: rgba(0, 0, 0, 0.25);
    color: #ffffff;
}

/* Country Selector Grid */
.vn-country-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
    max-height: 380px;
    overflow-y: auto;
    padding-right: 6px;
}

/* Custom Scrollbar for Country List */
.vn-country-list::-webkit-scrollbar {
    width: 6px;
}

.vn-country-list::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
}

.vn-country-list::-webkit-scrollbar-thumb {
    background: rgba(255, 107, 0, 0.3);
    border-radius: 10px;
}

.vn-country-list::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 107, 0, 0.6);
}

.vn-country-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 16px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.vn-country-item:hover {
    background: rgba(255, 107, 0, 0.08);
    border-color: rgba(255, 107, 0, 0.35);
    transform: translateX(3px);
}

.vn-country-item.active {
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.15) 0%, rgba(255, 107, 0, 0.05) 100%);
    border-color: #ff6b00;
    box-shadow: 0 4px 20px rgba(255, 107, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.vn-country-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.vn-country-flag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 20px;
}

.vn-country-flag .fi {
    width: 24px;
    height: 17px;
    border-radius: 3px;
    background-size: cover;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.vn-country-name {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
}

.vn-country-code {
    font-size: 12px;
    color: var(--vn-text-dim);
}

.vn-country-badges {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.vn-badge-chip {
    font-size: 11px;
    font-weight: 600;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4.5px;
    height: 24px;
    padding: 0 9px;
    border-radius: 6px;
    box-sizing: border-box;
    white-space: nowrap;
    background: rgba(255, 255, 255, 0.08);
    color: #cbd5e1;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.2s ease;
}

.vn-badge-chip i {
    font-size: 10px;
}

.vn-badge-chip.instant {
    background: rgba(255, 107, 0, 0.12);
    color: #ff9933;
    border: 1px solid rgba(255, 107, 0, 0.3);
}

.vn-badge-chip.sms {
    background: rgba(16, 185, 129, 0.12);
    color: #34d399;
    border: 1px solid rgba(16, 185, 129, 0.25);
}

.vn-badge-chip.voice {
    background: rgba(168, 85, 247, 0.12);
    color: #c084fc;
    border: 1px solid rgba(168, 85, 247, 0.25);
}

.vn-price-tag {
    font-size: 14px;
    font-weight: 700;
    color: #ff8533;
    min-width: 48px;
    text-align: right;
}

/* Live Terminal Preview Box (Right Card) */
.vn-console-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 14px;
    margin-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.vn-number-display {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    font-family: 'JetBrains Mono', monospace;
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 12px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.vn-status-live {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--vn-emerald);
}

.vn-dot-pulse {
    width: 8px;
    height: 8px;
    background-color: var(--vn-emerald);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--vn-emerald);
    animation: vnPulse 1.8s infinite;
}

@keyframes vnPulse {
    0% { transform: scale(0.95); opacity: 0.8; }
    50% { transform: scale(1.25); opacity: 1; }
    100% { transform: scale(0.95); opacity: 0.8; }
}

.vn-spec-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 20px 0 24px;
}

.vn-spec-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 12px 14px;
}

.vn-spec-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(255, 107, 0, 0.12);
    color: #ff6b00;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
}

.vn-spec-title {
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
}

.vn-spec-desc {
    font-size: 12px;
    color: var(--vn-text-muted);
}

/* --------------------------------------------------------------------------
   FEATURES GRID (4 CORE CARDS)
   -------------------------------------------------------------------------- */
.vn-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 50px;
}

.vn-feature-card {
    background: var(--vn-card-bg);
    border: 1px solid var(--vn-card-border);
    border-radius: 16px;
    padding: 24px 20px;
    text-align: left;
    transition: all 0.3s ease;
}

.vn-feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 107, 0, 0.3);
}

.vn-feature-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(255, 107, 0, 0.12);
    color: #ff6b00;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 16px;
}

.vn-feature-card h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #ffffff;
}

.vn-feature-card p {
    font-size: 13px;
    color: var(--vn-text-muted);
    line-height: 1.5;
}

/* --------------------------------------------------------------------------
   FAQ SECTION (ACCORDION)
   -------------------------------------------------------------------------- */
.vn-faq-list {
    max-width: 800px;
    margin: 0 auto 50px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.vn-faq-item {
    background: var(--vn-card-bg);
    border: 1px solid var(--vn-card-border);
    border-radius: 14px;
    padding: 18px 22px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.vn-faq-item:hover {
    border-color: rgba(255, 255, 255, 0.18);
}

.vn-faq-question {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.vn-faq-answer {
    font-size: 14px;
    color: var(--vn-text-muted);
    line-height: 1.6;
    margin-top: 12px;
    display: none;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.vn-faq-item.active .vn-faq-answer {
    display: block;
}

.vn-faq-item.active .vn-faq-question i {
    transform: rotate(180deg);
    color: #ff6b00;
}

/* --------------------------------------------------------------------------
   RESPONSIVE DESIGN (MOBILE PERFECTION)
   -------------------------------------------------------------------------- */
@media (max-width: 992px) {
    .vn-hero {
        padding: 95px 16px 20px;
    }
    .vn-mode-cards-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .vn-demo-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .vn-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 640px) {
    .vn-page-wrapper {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
    }
    .vn-container {
        padding: 0 10px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    .vn-demo-grid {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        gap: 16px;
    }
    .vn-card {
        padding: 18px 14px !important;
        border-radius: 18px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }
    .vn-card-title {
        font-size: 16.5px !important;
        gap: 8px !important;
    }
    .vn-card-subtitle {
        font-size: 12px !important;
        margin-bottom: 14px !important;
        line-height: 1.4 !important;
    }
    .vn-app-selector {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .vn-app-chip {
        padding: 8px 6px !important;
        font-size: 11.5px !important;
        min-height: 48px !important;
        box-sizing: border-box !important;
        text-align: center !important;
        word-break: break-word !important;
        white-space: normal !important;
    }
    .vn-app-chip i {
        font-size: 16px !important;
    }
    .vn-region-tabs-wrapper {
        margin-bottom: 12px !important;
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important;
    }
    .vn-region-tabs-wrapper::-webkit-scrollbar {
        display: none !important;
    }
    .vn-region-tabs {
        display: inline-flex !important;
        width: auto !important;
        min-width: 100% !important;
        padding: 4px !important;
        box-sizing: border-box !important;
        white-space: nowrap !important;
    }
    .vn-region-tab {
        flex-shrink: 0 !important;
        padding: 6px 10px !important;
        font-size: 11.5px !important;
        gap: 5px !important;
    }
    .vn-country-list {
        width: 100% !important;
        box-sizing: border-box !important;
        max-height: 320px !important;
    }
    .vn-country-item {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 8px !important;
        padding: 11px 12px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .vn-country-info {
        width: 100% !important;
        min-width: 0 !important;
        gap: 10px !important;
    }
    .vn-country-name {
        font-size: 13px !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        white-space: nowrap !important;
    }
    .vn-country-code {
        font-size: 11px !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        white-space: nowrap !important;
    }
    .vn-country-badges {
        width: 100% !important;
        justify-content: space-between !important;
        flex-wrap: wrap !important;
        gap: 6px !important;
    }
    .vn-console-header {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 8px !important;
    }
    .vn-number-display {
        font-size: 13.5px !important;
        padding: 6px 10px !important;
        width: 100% !important;
        box-sizing: border-box !important;
        justify-content: center !important;
    }
    .vn-preview-mode-banner {
        font-size: 11.5px !important;
        padding: 8px 10px !important;
        margin-bottom: 12px !important;
    }
    .vn-spec-list {
        gap: 8px !important;
        margin: 12px 0 16px !important;
    }
    .vn-spec-item {
        padding: 8px 10px !important;
        gap: 10px !important;
    }
    .vn-spec-icon {
        width: 30px !important;
        height: 30px !important;
        font-size: 13px !important;
    }
    .vn-spec-title {
        font-size: 12px !important;
    }
    .vn-spec-desc {
        font-size: 11px !important;
    }
    .vn-trust-chips-row {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 5px !important;
        justify-content: center !important;
        margin-bottom: 10px !important;
    }
    .vn-trust-chip {
        font-size: 10px !important;
        padding: 3px 8px !important;
    }
    .vn-features-grid {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }
    .vn-hero h1 {
        font-size: 26px !important;
        line-height: 1.25 !important;
    }
    .vn-hero p {
        font-size: 14px !important;
        margin-bottom: 20px !important;
    }
    .vn-mode-cards-grid {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .vn-mode-card {
        padding: 16px 14px !important;
        border-radius: 16px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .vn-mode-title {
        font-size: 15px !important;
    }
    .vn-mode-subtitle {
        font-size: 12px !important;
        margin-bottom: 10px !important;
    }
    .vn-mode-price-badge {
        font-size: 12.5px !important;
        padding: 4px 10px !important;
    }
    .vn-mode-icon {
        width: 36px !important;
        height: 36px !important;
        font-size: 16px !important;
    }
    .vn-btn-primary, .vn-btn-secondary {
        width: 100% !important;
        justify-content: center !important;
        padding: 14px 16px !important;
        box-sizing: border-box !important;
    }
}

/* --------------------------------------------------------------------------
   ORDER CONFIRMATION MODAL
   -------------------------------------------------------------------------- */
.vn-modal-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: rgba(5, 5, 5, 0.85) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    z-index: 100000 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    opacity: 0 !important;
    pointer-events: none !important;
    visibility: hidden !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    padding: 20px !important;
}

.vn-modal-overlay.active {
    opacity: 1 !important;
    pointer-events: auto !important;
    visibility: visible !important;
}

.vn-modal-card {
    background: #0f0f0f !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 24px !important;
    width: 100% !important;
    max-width: 480px !important;
    padding: 32px 28px 28px !important;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.9), 0 0 40px rgba(255, 107, 0, 0.15) !important;
    position: relative !important;
    transform: scale(0.92) translateY(10px) !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.vn-modal-overlay.active .vn-modal-card {
    transform: scale(1) translateY(0) !important;
}

.vn-modal-close {
    position: absolute !important;
    top: 18px !important;
    right: 18px !important;
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: var(--vn-text-muted) !important;
    width: 36px !important;
    height: 36px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
}

.vn-modal-close:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    color: #ffffff !important;
}

.vn-modal-header {
    text-align: center !important;
    margin-bottom: 22px !important;
}

.vn-modal-icon {
    width: 52px !important;
    height: 52px !important;
    background: rgba(255, 107, 0, 0.12) !important;
    border: 1px solid rgba(255, 107, 0, 0.3) !important;
    border-radius: 16px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #ff6b00 !important;
    font-size: 22px !important;
    margin-bottom: 12px !important;
}

.vn-modal-header h3 {
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin-bottom: 6px !important;
}

.vn-modal-header p {
    font-size: 13px !important;
    color: var(--vn-text-muted) !important;
}

.vn-modal-body {
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    border-radius: 16px !important;
    padding: 18px !important;
    margin-bottom: 22px !important;
}

.vn-summary-row {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 8px 0 !important;
    font-size: 14px !important;
}

.vn-summary-label {
    color: var(--vn-text-muted) !important;
}

.vn-summary-val {
    font-weight: 600 !important;
    color: #ffffff !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
}

.vn-summary-val .fi {
    width: 20px !important;
    height: 14px !important;
    border-radius: 2px !important;
}

.vn-summary-divider {
    height: 1px !important;
    background: rgba(255, 255, 255, 0.08) !important;
    margin: 10px 0 !important;
}

.vn-summary-row.total {
    padding-top: 4px !important;
}

.vn-summary-row.total .vn-summary-label {
    font-weight: 700 !important;
    color: #ffffff !important;
    font-size: 15px !important;
}

.vn-summary-val.price {
    font-size: 18px !important;
    font-weight: 800 !important;
    color: #ff8533 !important;
}

.vn-modal-footer {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
}

.vn-btn-ghost {
    background: transparent !important;
    border: none !important;
    color: var(--vn-text-muted) !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    padding: 8px !important;
    cursor: pointer !important;
    transition: color 0.2s ease !important;
}

.vn-btn-ghost:hover {
    color: #ffffff !important;
}

/* --------------------------------------------------------------------------
   PREMIUM STEPPER STYLES (1. Plan, 2. Location, 3. Activate)
   -------------------------------------------------------------------------- */
.vn-stepper-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 10px auto 35px;
    padding: 0 10px;
}

.vn-stepper-bar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(18, 18, 22, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 60px;
    padding: 8px 24px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    gap: 14px;
    max-width: 780px;
    width: auto;
}

.vn-stepper-item {
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.9;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.vn-stepper-item:hover {
    opacity: 1;
}

.vn-stepper-item.active {
    opacity: 1;
    transform: scale(1.02);
}

.vn-stepper-item.completed {
    opacity: 1;
}

.vn-stepper-icon-wrap {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    color: #ffffff;
    transition: all 0.3s ease;
    position: relative;
    flex-shrink: 0;
}

.vn-step-num {
    position: absolute;
    top: -3px;
    right: -3px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #1e2230;
    border: 1px solid rgba(255, 255, 255, 0.35);
    font-size: 9.5px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.3s ease;
}

.vn-stepper-item.active .vn-stepper-icon-wrap {
    background: linear-gradient(135deg, #ff6b00 0%, #ff8c38 100%);
    border-color: #ffa055;
    color: #ffffff;
    box-shadow: 0 0 20px rgba(255, 107, 0, 0.55);
}

.vn-stepper-item.active .vn-step-num {
    background: #ff6b00;
    border-color: #ffffff;
    color: #ffffff;
    box-shadow: 0 0 8px rgba(255, 107, 0, 0.6);
}

.vn-stepper-item.completed .vn-stepper-icon-wrap {
    background: rgba(16, 185, 129, 0.25);
    border-color: #10b981;
    color: #34d399;
    box-shadow: 0 0 12px rgba(16, 185, 129, 0.3);
}

.vn-stepper-item.completed .vn-step-num {
    background: #10b981;
    border-color: #ffffff;
    color: #ffffff;
}

.vn-stepper-content {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.vn-stepper-badge {
    font-size: 9.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: #ff9944;
    line-height: 1.1;
}

.vn-stepper-item.completed .vn-stepper-badge {
    color: #34d399;
}

.vn-stepper-label {
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    white-space: nowrap;
    line-height: 1.3;
}

.vn-stepper-line {
    flex-grow: 1;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    min-width: 24px;
    max-width: 50px;
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.vn-stepper-line-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #ff6b00, #ff8c38);
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.vn-stepper-line.active .vn-stepper-line-fill {
    width: 100%;
    box-shadow: 0 0 8px rgba(255, 107, 0, 0.6);
}

/* --------------------------------------------------------------------------
   CTA ACTION BLOCK & 100% REFUND GUARANTEE SEAL CARD
   -------------------------------------------------------------------------- */
.vn-cta-action-wrap {
    margin-top: 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.vn-trust-chips-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 2px;
}

.vn-trust-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    color: #94a3b8;
    backdrop-filter: blur(10px);
}

.vn-btn-generate {
    width: 100% !important;
    padding: 16px 24px !important;
    min-height: 56px !important;
    border-radius: 16px !important;
    border: 1px solid rgba(255, 107, 0, 0.4) !important;
    background: linear-gradient(135deg, #ff5500 0%, #ff6b00 45%, #ff8c38 100%) !important;
    box-shadow: 0 10px 30px -5px rgba(255, 107, 0, 0.5), 0 0 25px rgba(255, 107, 0, 0.25) !important;
    position: relative !important;
    overflow: hidden !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    user-select: none !important;
}

.vn-btn-generate .vn-btn-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    z-index: 2;
    width: 100%;
}

.vn-btn-generate .vn-btn-title {
    font-size: 16px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.3px;
}

.vn-btn-generate .vn-btn-icon {
    font-size: 17px;
    color: #ffffff;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.6));
}

.vn-btn-generate .vn-btn-arrow {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    transition: transform 0.25s ease;
}

.vn-btn-generate:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 14px 40px rgba(255, 107, 0, 0.65), 0 0 30px rgba(255, 107, 0, 0.4) !important;
    background: linear-gradient(135deg, #ff6600 0%, #ff771a 45%, #ff994d 100%) !important;
}

.vn-btn-generate:hover .vn-btn-arrow {
    transform: translateX(4px);
}

.vn-btn-generate:active {
    transform: translateY(1px) scale(0.99) !important;
    box-shadow: 0 4px 18px rgba(255, 107, 0, 0.4) !important;
}

.vn-btn-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
    transform: translateX(-150%) skewX(-25deg);
    animation: vnBtnShimmer 4s infinite ease-in-out;
    pointer-events: none;
    z-index: 1;
}

@keyframes vnBtnShimmer {
    0%, 60% { transform: translateX(-150%) skewX(-25deg); }
    100% { transform: translateX(300%) skewX(-25deg); }
}

/* 100% Refund Guarantee Seal Card */
.vn-guarantee-card {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08) 0%, rgba(13, 20, 16, 0.85) 100%);
    border: 1px solid rgba(16, 185, 129, 0.28);
    border-radius: 14px;
    padding: 14px 16px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    text-align: left;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.vn-guarantee-icon-wrap {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(16, 185, 129, 0.16);
    border: 1px solid rgba(16, 185, 129, 0.38);
    color: #10b981;
    font-size: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    margin-top: 1px;
}

.vn-guarantee-pulse {
    position: absolute;
    inset: -2px;
    border-radius: 12px;
    border: 1px solid #10b981;
    opacity: 0.6;
    animation: vnPulse 2.2s infinite;
}

.vn-guarantee-body {
    flex: 1;
}

.vn-guarantee-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 4px;
}

.vn-guarantee-title {
    font-size: 12.5px;
    font-weight: 700;
    color: #10b981;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.vn-guarantee-tag {
    font-size: 10px;
    font-weight: 700;
    background: rgba(16, 185, 129, 0.2);
    color: #34d399;
    padding: 2px 7px;
    border-radius: 20px;
    border: 1px solid rgba(16, 185, 129, 0.35);
    white-space: nowrap;
}

.vn-guarantee-desc {
    font-size: 12px;
    line-height: 1.5;
    color: #94a3b8;
    margin: 0;
}

.vn-guarantee-desc strong {
    color: #ffffff;
}

/* --------------------------------------------------------------------------
   RESPONSIVE OVERRIDES
   -------------------------------------------------------------------------- */
@media (max-width: 640px) {
    .vn-stepper-bar {
        padding: 6px 12px;
        gap: 6px;
        border-radius: 40px;
        width: 100%;
        justify-content: space-between;
    }
    .vn-stepper-icon-wrap {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
    .vn-step-num {
        width: 14px;
        height: 14px;
        font-size: 8.5px;
        top: -2px;
        right: -2px;
    }
    .vn-stepper-badge {
        display: none;
    }
    .vn-stepper-label {
        font-size: 11px;
    }
    .vn-stepper-line {
        min-width: 12px;
        max-width: 24px;
    }
    .vn-btn-generate {
        padding: 14px 18px !important;
        min-height: 52px !important;
    }
    .vn-btn-generate .vn-btn-title {
        font-size: 14.5px;
    }
    .vn-guarantee-card {
        padding: 12px;
        gap: 10px;
    }
    .vn-guarantee-title {
        font-size: 11.5px;
    }
    .vn-guarantee-desc {
        font-size: 11px;
    }
}

/* --------------------------------------------------------------------------
   PREMIUM STRIPE PAYMENT MODAL (FINTECH OBSIDIAN EDITION)
   -------------------------------------------------------------------------- */
.text-orange, .vn-text-orange { color: #ff6b00 !important; }
.text-cyan, .vn-text-cyan { color: #06b6d4 !important; }
.text-emerald, .vn-text-emerald { color: #10b981 !important; }
.text-purple, .vn-text-purple { color: #a855f7 !important; }

.vn-modal-backdrop {
    position: fixed !important;
    inset: 0 !important;
    background: rgba(4, 5, 8, 0.88) !important;
    z-index: 999999 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 20px 16px !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transition: opacity 0.28s cubic-bezier(0.16, 1, 0.3, 1) !important;
    backdrop-filter: blur(24px) !important;
    -webkit-backdrop-filter: blur(24px) !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
}

#vn-payment-modal.vn-modal-visible .vn-modal-backdrop {
    opacity: 1 !important;
    pointer-events: auto !important;
}

.vn-modal-box {
    background: linear-gradient(180deg, #13151d 0%, #0a0b0f 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-top: 1px solid rgba(255, 107, 0, 0.5) !important;
    border-radius: 24px !important;
    padding: 26px 24px 22px !important;
    max-width: 480px !important;
    width: 100% !important;
    max-height: calc(100vh - 36px) !important;
    overflow-y: auto !important;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.95), 0 0 50px rgba(255, 107, 0, 0.12) !important;
    transform: translateY(20px) scale(0.96) !important;
    transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1) !important;
    position: relative !important;
}

.vn-modal-box::-webkit-scrollbar {
    width: 4px;
}

.vn-modal-box::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
}

#vn-payment-modal.vn-modal-visible .vn-modal-box {
    transform: translateY(0) scale(1) !important;
}

.vn-modal-header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-bottom: 18px !important;
}

.vn-modal-header-left {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
}

.vn-modal-lock-badge {
    width: 40px !important;
    height: 40px !important;
    border-radius: 12px !important;
    background: rgba(16, 185, 129, 0.15) !important;
    border: 1px solid rgba(16, 185, 129, 0.35) !important;
    color: #10b981 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 17px !important;
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.25) !important;
    flex-shrink: 0 !important;
}

.vn-modal-title {
    font-size: 18px !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    letter-spacing: -0.3px !important;
    line-height: 1.2 !important;
}

.vn-modal-subtitle {
    font-size: 11.5px !important;
    font-weight: 600 !important;
    color: #94a3b8 !important;
    display: flex !important;
    align-items: center !important;
    gap: 5px !important;
    margin-top: 2px !important;
}

.vn-modal-close {
    width: 34px !important;
    height: 34px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #94a3b8 !important;
    font-size: 20px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    line-height: 1 !important;
    padding: 0 !important;
    flex-shrink: 0 !important;
}

.vn-modal-close:hover {
    background: rgba(255, 255, 255, 0.16) !important;
    color: #ffffff !important;
    transform: scale(1.06) !important;
}

.vn-modal-summary-card {
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.08) 0%, rgba(20, 22, 28, 0.85) 100%) !important;
    border: 1px solid rgba(255, 107, 0, 0.25) !important;
    border-radius: 16px !important;
    padding: 14px 16px !important;
    margin-bottom: 16px !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
}

.vn-modal-summary-main {
    display: flex !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    gap: 12px !important;
}

.vn-modal-summary-info {
    flex: 1 !important;
    min-width: 0 !important;
}

.vn-modal-flag {
    width: 20px !important;
    height: 15px !important;
    border-radius: 3px !important;
    display: inline-block !important;
    vertical-align: middle !important;
    box-shadow: 0 1px 4px rgba(0,0,0,0.5) !important;
    flex-shrink: 0 !important;
}

.vn-modal-plan-title {
    font-size: 14.5px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    flex-wrap: wrap !important;
    line-height: 1.3 !important;
}

.vn-modal-plan-sub {
    font-size: 11.5px !important;
    color: #94a3b8 !important;
    margin-top: 4px !important;
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    font-weight: 500 !important;
}

.vn-modal-price-wrap {
    text-align: right !important;
    flex-shrink: 0 !important;
}

.vn-modal-currency-tag {
    display: block !important;
    font-size: 9.5px !important;
    font-weight: 800 !important;
    color: #ff8533 !important;
    letter-spacing: 0.8px !important;
    line-height: 1 !important;
    margin-bottom: 2px !important;
}

.vn-modal-price-amount {
    font-size: 22px !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    letter-spacing: -0.5px !important;
    line-height: 1 !important;
}

.vn-modal-summary-badge {
    display: flex !important;
    gap: 6px !important;
    flex-wrap: wrap !important;
    margin-top: 10px !important;
    padding-top: 10px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.07) !important;
}

.vn-summary-pill {
    font-size: 11px !important;
    font-weight: 600 !important;
    color: #cbd5e1 !important;
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.07) !important;
    border-radius: 12px !important;
    padding: 3px 8px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 5px !important;
}

.vn-modal-payment-section {
    margin-bottom: 16px !important;
}

.vn-modal-section-label {
    font-size: 10.5px !important;
    font-weight: 700 !important;
    color: #94a3b8 !important;
    letter-spacing: 0.8px !important;
    margin-bottom: 8px !important;
    text-transform: uppercase !important;
}

#vn-payment-element {
    min-height: 80px !important;
    background: rgba(19, 21, 28, 0.7) !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    border-radius: 14px !important;
    padding: 6px !important;
}

.vn-payment-error {
    background: rgba(239, 68, 68, 0.1) !important;
    border: 1px solid rgba(239, 68, 68, 0.3) !important;
    color: #f87171 !important;
    border-radius: 10px !important;
    padding: 10px 14px !important;
    font-size: 12.5px !important;
    font-weight: 600 !important;
    margin-top: 10px !important;
}

.vn-btn-modal-pay {
    width: 100% !important;
    padding: 15px 18px !important;
    min-height: 52px !important;
    border-radius: 14px !important;
    border: 1px solid rgba(255, 107, 0, 0.45) !important;
    background: linear-gradient(135deg, #ff5500 0%, #ff6b00 45%, #ff8c38 100%) !important;
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.45), 0 0 20px rgba(255, 107, 0, 0.2) !important;
    cursor: pointer !important;
    position: relative !important;
    overflow: hidden !important;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
    margin-bottom: 12px !important;
}

.vn-btn-modal-pay .vn-modal-btn-inner {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 9px !important;
    position: relative !important;
    z-index: 2 !important;
}

.vn-btn-modal-pay .vn-modal-btn-text {
    font-size: 15px !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    letter-spacing: 0.2px !important;
}

.vn-btn-modal-pay .vn-modal-btn-icon {
    font-size: 15px !important;
    color: #ffffff !important;
}

.vn-btn-modal-pay .vn-modal-btn-arrow {
    font-size: 13px !important;
    color: rgba(255, 255, 255, 0.85) !important;
    transition: transform 0.2s ease !important;
}

.vn-btn-modal-pay:hover:not(:disabled) {
    transform: translateY(-1px) !important;
    box-shadow: 0 12px 35px rgba(255, 107, 0, 0.6) !important;
    background: linear-gradient(135deg, #ff6600 0%, #ff771a 45%, #ff994d 100%) !important;
}

.vn-btn-modal-pay:hover:not(:disabled) .vn-modal-btn-arrow {
    transform: translateX(3px) !important;
}

.vn-btn-modal-pay:disabled {
    opacity: 0.65 !important;
    cursor: not-allowed !important;
    transform: none !important;
}

.vn-modal-btn-glow {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 60% !important;
    height: 100% !important;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent) !important;
    transform: translateX(-150%) skewX(-25deg) !important;
    animation: vnBtnShimmer 4s infinite ease-in-out !important;
    pointer-events: none !important;
    z-index: 1 !important;
}

.vn-modal-trust-card {
    text-align: center !important;
}

.vn-modal-trust-pills {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    flex-wrap: wrap !important;
    margin-bottom: 6px !important;
}

.vn-trust-pill {
    display: inline-flex !important;
    align-items: center !important;
    gap: 5px !important;
    font-size: 11.5px !important;
    font-weight: 600 !important;
    color: #cbd5e1 !important;
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.07) !important;
    border-radius: 20px !important;
    padding: 4px 10px !important;
}

.vn-modal-guarantee-micro {
    font-size: 11px !important;
    color: #64748b !important;
    line-height: 1.35 !important;
    max-width: 380px !important;
    margin: 0 auto !important;
    font-weight: 500 !important;
}

/* --------------------------------------------------------------------------
   MODAL MOBILE OPTIMIZATIONS (< 480px)
   -------------------------------------------------------------------------- */
@media (max-width: 480px) {
    .vn-modal-backdrop {
        padding: 12px 8px !important;
        align-items: center !important;
    }
    .vn-modal-box {
        padding: 20px 16px 16px !important;
        border-radius: 20px !important;
        max-height: 94vh !important;
    }
    .vn-modal-title {
        font-size: 16px !important;
    }
    .vn-modal-subtitle {
        font-size: 10.5px !important;
    }
    .vn-modal-summary-card {
        padding: 12px 14px !important;
        margin-bottom: 14px !important;
    }
    .vn-modal-plan-title {
        font-size: 13.5px !important;
    }
    .vn-modal-price-amount {
        font-size: 20px !important;
    }
    .vn-summary-pill {
        font-size: 10px !important;
        padding: 2px 7px !important;
    }
    .vn-btn-modal-pay {
        padding: 14px 16px !important;
        min-height: 48px !important;
    }
    .vn-btn-modal-pay .vn-modal-btn-text {
        font-size: 14px !important;
    }
    .vn-trust-pill {
        font-size: 10.5px !important;
        padding: 3px 8px !important;
    }
    .vn-modal-guarantee-micro {
        font-size: 10px !important;
    }
}
