/* ==========================================================================
   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 V2 (2026 REDESIGN - DESKTOP & MOBILE LUXURY OBSIDIAN)
   -------------------------------------------------------------------------- */
.vn-hero-v2 {
    position: relative;
    padding: 120px 24px 40px;
    margin-bottom: 30px !important;
    overflow: hidden;
    background: radial-gradient(ellipse 90% 65% at 50% -15%, rgba(255, 122, 0, 0.18) 0%, rgba(5, 5, 5, 0) 75%);
}

/* Ambient Glowing Light Wave Arcs in Background */
.vn-ambient-arcs-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.vn-ambient-arcs-bg svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: drop-shadow(0 0 25px rgba(255, 122, 0, 0.45));
}

/* 2-Column Grid Container */
.vn-hero-v2-container {
    position: relative;
    z-index: 1;
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 48px;
}

/* Left: Hero Content Column */
.vn-hero-col-content {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.vn-hero-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 18px;
    background: rgba(255, 122, 0, 0.1);
    border: 1px solid rgba(255, 138, 0, 0.3);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    color: #ff9900;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.vn-badge-bolt {
    color: #ff8a00;
    display: flex;
    align-items: center;
    filter: drop-shadow(0 0 8px rgba(255, 122, 0, 0.8));
}

.vn-hero-headline {
    font-size: clamp(34px, 4.4vw, 56px);
    font-weight: 800;
    line-height: 1.14;
    letter-spacing: -0.03em;
    margin: 0 0 18px;
    color: #ffffff;
}

.vn-gradient-amber {
    background: linear-gradient(135deg, #ff9900 0%, #ffb833 45%, #ff6200 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 22px rgba(255, 122, 0, 0.35));
}

.vn-hero-subtext {
    font-size: 1.08rem;
    line-height: 1.62;
    color: #94a3b8;
    max-width: 520px;
    margin: 0 0 30px;
}

/* Glowing CTA Button */
.vn-hero-cta-wrap {
    margin-bottom: 32px;
}

.vn-hero-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #ff9900 0%, #ff6200 100%);
    color: #0d0d11 !important;
    font-size: 16px;
    font-weight: 700;
    padding: 15px 34px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 25px rgba(255, 122, 0, 0.45), inset 0 1px 1px rgba(255, 255, 255, 0.4);
    transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.vn-hero-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.6s ease;
}

.vn-hero-cta-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 35px rgba(255, 122, 0, 0.65), inset 0 1px 1px rgba(255, 255, 255, 0.6);
    color: #000000 !important;
}

.vn-hero-cta-btn:hover::before {
    left: 100%;
}

.vn-hero-cta-btn i {
    font-size: 14px;
    transition: transform 0.2s ease;
}

.vn-hero-cta-btn:hover i {
    transform: translateX(4px);
}

/* Hero Trust Row */
.vn-hero-trust-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
}

.vn-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    font-weight: 600;
    color: #cbd5e1;
}

.vn-trust-icon {
    color: #ff9900;
    font-size: 14px;
    filter: drop-shadow(0 0 6px rgba(255, 122, 0, 0.5));
}

/* Right: 3D Smartphone Device Mockup */
.vn-hero-col-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1200px;
}

.vn-phone-mockup-wrapper {
    position: relative;
    padding: 20px;
}

.vn-phone-ambient-glow {
    position: absolute;
    width: 330px;
    height: 400px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(255, 122, 0, 0.26) 0%, rgba(255, 70, 0, 0.08) 50%, transparent 75%);
    filter: blur(40px);
    z-index: 0;
    pointer-events: none;
    animation: vnAmbientPulse 4s ease-in-out infinite alternate;
}

@keyframes vnAmbientPulse {
    0% { transform: translate(-50%, -50%) scale(0.92); opacity: 0.6; }
    100% { transform: translate(-50%, -50%) scale(1.08); opacity: 0.95; }
}

/* ==========================================================================
   HALF-PHONE STAGE & PEDESTAL (Grounded 2026 Presentation)
   ========================================================================== */
.vn-halfphone-stage {
    position: relative;
    width: 360px;
    height: 465px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin: 0 auto;
}

.vn-phone-ambient-glow {
    position: absolute;
    width: 340px;
    height: 380px;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(255, 122, 0, 0.22) 0%, rgba(255, 70, 0, 0.06) 55%, transparent 75%);
    filter: blur(45px);
    z-index: 0;
    pointer-events: none;
}

.vn-phone-device.vn-halfphone-device {
    position: relative;
    z-index: 1;
    width: 360px;
    aspect-ratio: 1350 / 2760;
    height: auto;
    background: transparent;
    border-radius: 48px;
    padding: 0;
    border: none;
    box-shadow: none;
    transform: none !important;
    animation: none !important;
    filter: drop-shadow(0 20px 45px rgba(0, 0, 0, 0.85));
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

/* Glowing Neon Pedestal Line (Where the phone rests) */
.vn-pedestal-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 153, 0, 0.25) 12%, #ff9900 50%, rgba(255, 153, 0, 0.25) 88%, transparent 100%);
    box-shadow: 0 0 16px rgba(255, 153, 0, 0.85), 0 0 32px rgba(255, 102, 0, 0.45);
    z-index: 10;
}

.vn-pedestal-glow {
    position: absolute;
    bottom: -12px;
    left: 8%;
    right: 8%;
    height: 32px;
    background: radial-gradient(ellipse at 50% 0%, rgba(255, 153, 0, 0.4) 0%, transparent 75%);
    filter: blur(8px);
    z-index: 9;
    pointer-events: none;
}

/* Photorealistic Apple iPhone 18 Pro Silver Overlay Frame */
.vn-phone-overlay-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
    display: block;
}

.vn-phone-overlay-frame img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    display: block;
}

/* Phone Screen (Layered underneath the frame's transparent window) */
.vn-phone-screen {
    position: absolute;
    top: 2.5%;
    left: 5.33%;
    width: 89.34%;
    height: 95.0%;
    border-radius: 42px;
    overflow: hidden;
    z-index: 2;
    background: radial-gradient(circle at 50% 18%, rgba(32, 26, 44, 0.85) 0%, rgba(10, 10, 15, 0.98) 75%);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    box-sizing: border-box;
    box-shadow: inset 0 0 25px rgba(0, 0, 0, 0.85);
}

/* Status Bar flanking the Dynamic Island */
.vn-phone-status-bar {
    position: absolute;
    top: 10px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    font-weight: 700;
    color: #e2e8f0;
    z-index: 3;
}

.vn-status-icons {
    display: flex;
    gap: 6px;
    font-size: 10.5px;
    color: #cbd5e1;
}

/* Screen Body Content (Pushed down below the Dynamic Island) */
.vn-phone-screen-body {
    margin-top: 48px;
    padding: 0 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

/* Active Line Card (Top Card in Phone) */
.vn-active-line-card {
    background: rgba(24, 24, 34, 0.94);
    border: 1px solid rgba(255, 153, 0, 0.35);
    border-radius: 16px;
    padding: 12px 14px;
    margin-bottom: 10px;
    width: 100%;
    box-sizing: border-box;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.vn-line-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 7px;
}

.vn-line-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    color: #34d399;
    background: rgba(16, 185, 129, 0.14);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 20px;
    padding: 2px 8px;
}

.vn-live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 8px #10b981;
    animation: vnPulseDot 1.5s infinite;
}

@keyframes vnPulseDot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.85); }
}

.vn-line-country {
    font-size: 11.5px;
    font-weight: 600;
    color: #e2e8f0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.vn-phone-flag {
    width: 17px;
    height: 12.5px;
    border-radius: 2px;
    object-fit: cover;
    display: inline-block;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.vn-line-number-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(14, 14, 20, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 6px 10px;
}

.vn-line-number {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, sans-serif;
    font-size: 14.5px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
    font-variant-numeric: tabular-nums;
    font-feature-settings: "tnum" 1;
    white-space: nowrap;
    flex-shrink: 0;
}

.vn-line-copy-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 700;
    color: #ff9900;
    background: rgba(255, 153, 0, 0.12);
    border: 1px solid rgba(255, 153, 0, 0.3);
    border-radius: 6px;
    padding: 3px 9px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.vn-line-copy-btn:hover {
    background: #ff9900;
    color: #0d0d11;
}

.vn-line-copy-btn.copied {
    background: #10b981;
    color: #0d0d11;
    border-color: #10b981;
}

/* Live Incoming 2FA Messages Feed */
.vn-live-sms-feed {
    display: flex;
    flex-direction: column;
    gap: 9px;
    width: 100%;
    box-sizing: border-box;
}

.vn-sms-item {
    background: rgba(26, 26, 36, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
    position: relative;
    overflow: hidden;
    transition: transform 0.2s ease;
}

.vn-sms-item:hover {
    transform: translateX(2px);
}

.vn-sms-item.whatsapp {
    border-color: rgba(37, 211, 102, 0.3);
}

.vn-sms-item.telegram {
    border-color: rgba(0, 136, 204, 0.3);
}

.vn-sms-item.openai {
    border-color: rgba(255, 153, 0, 0.3);
}

.vn-sms-icon-box {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.vn-sms-item.whatsapp .vn-sms-icon-box {
    background: rgba(37, 211, 102, 0.15);
    color: #25d366;
}

.vn-sms-item.telegram .vn-sms-icon-box {
    background: rgba(0, 136, 204, 0.15);
    color: #0088cc;
}

.vn-sms-item.openai .vn-sms-icon-box {
    background: rgba(255, 153, 0, 0.15);
    color: #ff9900;
}

.vn-sms-content {
    flex: 1;
    min-width: 0;
    text-align: left;
}

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

.vn-sms-sender {
    font-size: 11px;
    font-weight: 700;
    color: #ffffff;
}

.vn-sms-time {
    font-size: 9.5px;
    color: #94a3b8;
}

.vn-sms-text {
    font-size: 11px;
    color: #cbd5e1;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.vn-sms-text strong {
    color: #ff9900;
    font-weight: 800;
}

.vn-sms-badge-otp {
    font-size: 11px;
    font-weight: 800;
    color: #ff9900;
    background: rgba(255, 153, 0, 0.12);
    border: 1px solid rgba(255, 153, 0, 0.3);
    border-radius: 6px;
    padding: 2px 7px;
    flex-shrink: 0;
    font-family: monospace;
    letter-spacing: 0.3px;
}

/* ==========================================================================
   MOBILE SEGMENTED TABS & ACTIVE CARD PREVIEW (Mobile <= 991px)
   ========================================================================== */
.vn-mobile-mode-wrap {
    display: none; /* Hidden on desktop */
    width: 100%;
    max-width: 580px;
    margin: 30px auto 10px;
    position: relative;
    z-index: 2;
}

.vn-mobile-mode-tabs {
    display: flex;
    background: rgba(20, 20, 26, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    padding: 5px;
    gap: 4px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.vn-m-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 11px 12px;
    background: transparent;
    border: none;
    border-radius: 50px;
    font-size: 13.5px;
    font-weight: 600;
    color: #94a3b8;
    cursor: pointer;
    transition: all 0.24s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
}

.vn-m-tab i {
    font-size: 13px;
}

.vn-m-tab.active {
    background: linear-gradient(135deg, #ff9900 0%, #ff6b00 100%);
    color: #0d0d11;
    font-weight: 700;
    box-shadow: 0 4px 18px rgba(255, 122, 0, 0.4);
}

.vn-mobile-card-preview {
    background: rgba(18, 18, 24, 0.75);
    border: 1px solid rgba(255, 153, 0, 0.3);
    border-radius: 20px;
    padding: 18px 20px;
    margin-top: 14px;
    display: flex;
    align-items: center;
    gap: 16px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    cursor: pointer;
    transition: all 0.25s ease;
}

.vn-mobile-card-preview:hover {
    border-color: #ff9900;
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 122, 0, 0.2);
}

.vn-m-card-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 153, 0, 0.15);
    color: #ff9900;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    border: 1px solid rgba(255, 153, 0, 0.3);
}

.vn-m-card-content {
    flex: 1;
    min-width: 0;
    text-align: left;
}

.vn-m-card-title {
    font-size: 15.5px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 3px;
}

.vn-m-card-desc {
    font-size: 12.5px;
    color: #94a3b8;
    line-height: 1.35;
    margin: 0 0 8px;
}

.vn-m-card-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 11.5px;
    font-weight: 600;
    line-height: 1;
    color: #ff9900;
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    letter-spacing: 0.2px;
    background: rgba(255, 153, 0, 0.1);
    border: 1px solid rgba(255, 153, 0, 0.25);
    border-radius: 20px;
    padding: 4px 10px;
}

.vn-m-card-pill i {
    font-size: 11.5px;
    width: 13px;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    color: #ff9900;
    flex-shrink: 0;
}

.vn-m-card-pill span {
    display: inline-block;
    line-height: 1;
}

.vn-m-card-arrow {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 12px;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.vn-mobile-card-preview:hover .vn-m-card-arrow {
    background: #ff9900;
    color: #0d0d11;
    border-color: #ff9900;
    transform: translateX(3px);
}

/* ==========================================================================
   DESKTOP 3-CARD MODE SELECTOR GRID (V2026 Enhanced)
   ========================================================================== */
.vn-mode-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
    max-width: 1240px;
    margin: 45px auto 0;
    position: relative;
    z-index: 2;
}

.vn-mode-card {
    position: relative;
    background: rgba(18, 18, 24, 0.76);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 20px;
    padding: 24px 22px;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s 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;
    min-height: 205px;
    box-sizing: border-box;
    overflow: hidden;
}

.vn-mode-card:hover {
    background: rgba(26, 26, 34, 0.9);
    border-color: rgba(255, 153, 0, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
}

.vn-mode-card.active {
    background: linear-gradient(180deg, rgba(255, 140, 0, 0.14) 0%, rgba(18, 18, 24, 0.95) 100%);
    border-color: #ff9900;
    box-shadow: 0 14px 36px -6px rgba(255, 122, 0, 0.32), 0 0 0 1px rgba(255, 153, 0, 0.4);
    transform: translateY(-3px);
}

.vn-mode-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff9900, #ffb833, #ff6200);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.vn-mode-card.active::before {
    opacity: 1;
}

/* Dynamic Mode View Smooth Reveal Animation */
.vn-mode-view {
    animation: vnModeSwapIn 0.32s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes vnModeSwapIn {
    0% {
        opacity: 0;
        transform: translateY(8px) scale(0.99);
        filter: blur(3px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

/* App Chips Staggered Animation */
.vn-app-selector .vn-app-chip {
    animation: vnAppChipIn 0.28s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.vn-app-selector .vn-app-chip:nth-child(1) { animation-delay: 0.02s; }
.vn-app-selector .vn-app-chip:nth-child(2) { animation-delay: 0.04s; }
.vn-app-selector .vn-app-chip:nth-child(3) { animation-delay: 0.06s; }
.vn-app-selector .vn-app-chip:nth-child(4) { animation-delay: 0.08s; }
.vn-app-selector .vn-app-chip:nth-child(5) { animation-delay: 0.10s; }
.vn-app-selector .vn-app-chip:nth-child(6) { animation-delay: 0.12s; }
.vn-app-selector .vn-app-chip:nth-child(7) { animation-delay: 0.14s; }
.vn-app-selector .vn-app-chip:nth-child(8) { animation-delay: 0.16s; }
.vn-app-selector .vn-app-chip:nth-child(9) { animation-delay: 0.18s; }

@keyframes vnAppChipIn {
    0% {
        opacity: 0;
        transform: translateY(5px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Button & Terminal Pulse Animation */
.vn-btn-refresh-pulse {
    animation: vnActionBtnGlow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes vnActionBtnGlow {
    0% {
        transform: scale(0.98);
        box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.6);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 0 20px rgba(255, 107, 0, 0.4);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
    }
}

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

.vn-mode-icon, .vn-mode-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 153, 0, 0.12);
    color: #ff9900;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    border: 1px solid rgba(255, 153, 0, 0.25);
    transition: all 0.25s ease;
}

.vn-mode-icon-box.otp {
    background: rgba(255, 153, 0, 0.12);
    color: #ff9900;
    border-color: rgba(255, 153, 0, 0.25);
}

.vn-mode-icon-box.inbox {
    background: rgba(56, 189, 248, 0.12);
    color: #38bdf8;
    border-color: rgba(56, 189, 248, 0.25);
}

.vn-mode-icon-box.esim {
    background: rgba(16, 185, 129, 0.12);
    color: #10b981;
    border-color: rgba(16, 185, 129, 0.25);
}

.vn-mode-card.active .vn-mode-icon,
.vn-mode-card.active .vn-mode-icon-box {
    background: #ff9900;
    color: #0d0d11;
    border-color: #ff9900;
    box-shadow: 0 0 20px rgba(255, 153, 0, 0.55);
}

.vn-mode-price-badge {
    font-size: 15px;
    font-weight: 800;
    color: #ff9900;
    background: rgba(255, 153, 0, 0.1);
    padding: 5px 12px;
    border-radius: 10px;
    border: 1px solid rgba(255, 153, 0, 0.25);
    letter-spacing: 0.2px;
}

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

.vn-mode-subtitle {
    font-size: 13px;
    color: #94a3b8;
    line-height: 1.45;
    margin-bottom: 14px;
}

.vn-mode-badges-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

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

/* Branded Vector Icons & Zero-Latency SVGs */
.vn-app-svg {
    display: inline-block;
    vertical-align: middle;
    margin-right: 7px;
    flex-shrink: 0;
    transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.vn-app-chip:hover .vn-app-svg {
    transform: scale(1.15);
}

.vn-ribbon-flame {
    display: inline-block;
    vertical-align: -1px;
    margin-right: 5px;
    fill: #ff8533;
    filter: drop-shadow(0 0 6px rgba(255, 107, 0, 0.7));
}

.vn-text-orange  { color: #ff6b00 !important; }
.vn-text-cyan    { color: #06b6d4 !important; }
.vn-text-emerald { color: #10b981 !important; }

/* Universal Cross-Platform Emoji Engine */
.vn-emoji {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", "Segoe UI Symbol", sans-serif;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: -0.06em;
    line-height: 1;
    font-style: normal;
    font-weight: normal;
}

/* Mode Card Footer Pill Alignment & Typography */
.vn-mode-card-footer {
    margin-top: auto;
    padding-top: 14px;
    display: flex;
    align-items: center;
    gap: 8px !important;
    flex-wrap: wrap !important;
}

.vn-mode-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 11.5px;
    font-weight: 600;
    line-height: 1;
    color: rgba(255, 255, 255, 0.72);
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    letter-spacing: 0.2px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 20px;
    padding: 5px 11px;
    transition: all 0.25s ease;
    box-sizing: border-box;
}

.vn-mode-pill i {
    font-size: 11.5px;
    width: 13px;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    color: #ff9900;
    flex-shrink: 0;
}

.vn-mode-pill span {
    display: inline-block;
    line-height: 1;
}

.vn-mode-card:hover .vn-mode-pill {
    color: #ffffff;
    border-color: rgba(255, 122, 0, 0.35);
    background: rgba(255, 122, 0, 0.08);
}

.vn-mode-card.active .vn-mode-pill {
    color: #ff9900;
    background: rgba(255, 153, 0, 0.1);
    border-color: rgba(255, 153, 0, 0.3);
}

.vn-mode-card.active .vn-mode-pill i {
    color: #ff9900;
}

.vn-featured-ribbon {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.28) 0%, rgba(255, 133, 51, 0.15) 100%);
    border: 1px solid rgba(255, 107, 0, 0.45);
    border-radius: 20px;
    padding: 3px 9px;
    font-size: 10px;
    font-weight: 800;
    color: #ff8533;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    margin-bottom: 10px;
    width: fit-content;
    box-shadow: 0 2px 8px rgba(255, 107, 0, 0.18);
}

/* Telegram Micro-Badge in App Chips */
.vn-chip-badge {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 1px 6px;
    border-radius: 5px;
    background: rgba(255, 107, 0, 0.18);
    color: #ff8533;
    border: 1px solid rgba(255, 107, 0, 0.35);
    margin-left: 6px;
}

/* Smart Telegram & WhatsApp Upsell Notices */
.vn-telegram-smart-notice {
    margin-top: 6px;
    margin-bottom: 26px;
    padding: 14px 18px;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.12) 0%, rgba(24, 24, 27, 0.96) 100%);
    border: 1px solid rgba(255, 107, 0, 0.35);
    border-left: 4px solid #ff6b00 !important;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 107, 0, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    animation: vnNoticeSlideDown 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Dedicated WhatsApp Smart Notice */
.vn-whatsapp-smart-notice {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.1) 0%, rgba(18, 140, 126, 0.04) 45%, rgba(20, 24, 22, 0.96) 100%) !important;
    border: 1px solid rgba(37, 211, 102, 0.35) !important;
    border-left: 4px solid #25D366 !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), 0 0 24px rgba(37, 211, 102, 0.12) !important;
}

.vn-notice-body {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    min-width: 0;
}

.vn-mt-18 {
    margin-top: 18px !important;
}

@keyframes vnNoticeSlideDown {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.vn-ts-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    max-width: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    line-height: 1;
}

/* Telegram Lamp Badge */
.vn-tg-icon-badge {
    background: radial-gradient(circle at 35% 35%, rgba(255, 107, 0, 0.26), rgba(255, 107, 0, 0.08));
    border: 1px solid rgba(255, 107, 0, 0.45);
    box-shadow: 0 0 16px rgba(255, 107, 0, 0.22);
}
.vn-tg-icon-badge i {
    font-size: 20px;
    color: #ff6b00;
}

/* WhatsApp Circle Glass Badge (Flawless Anti-Aliased Icon) */
.vn-wa-icon-badge {
    background: radial-gradient(circle at 35% 35%, rgba(37, 211, 102, 0.28), rgba(18, 140, 126, 0.12)) !important;
    border: 1px solid rgba(37, 211, 102, 0.5) !important;
    box-shadow: 0 0 16px rgba(37, 211, 102, 0.25), inset 0 1px 1px rgba(255, 255, 255, 0.15) !important;
}
.vn-wa-icon-badge i {
    font-size: 23px;
    color: #25D366;
    line-height: 1;
    filter: drop-shadow(0 2px 6px rgba(37, 211, 102, 0.45));
}

.vn-ts-content {
    flex: 1;
    min-width: 0;
}

.vn-ts-title {
    font-size: 13.5px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 3px;
    display: flex;
    align-items: center;
    gap: 6px;
    line-height: 1.35;
}

.vn-ts-desc {
    font-size: 12px;
    color: #cbd5e1;
    line-height: 1.45;
}

.vn-ts-btn {
    flex-shrink: 0;
    background: linear-gradient(135deg, #ff6b00 0%, #ff8533 100%);
    color: #ffffff;
    border: none;
    border-radius: 9px;
    padding: 9px 16px;
    font-size: 12.5px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(255, 107, 0, 0.35);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.vn-ts-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(255, 107, 0, 0.5);
    background: linear-gradient(135deg, #ff7a1a 0%, #ff944d 100%);
}

.vn-ts-btn:active {
    transform: translateY(0);
}

/* WhatsApp Specific Button */
.vn-wa-ts-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35) !important;
    color: #ffffff !important;
}

.vn-wa-ts-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5) !important;
    background: linear-gradient(135deg, #2ae06f 0%, #159b8c 100%) !important;
}

@media (max-width: 680px) {
    .vn-telegram-smart-notice,
    .vn-whatsapp-smart-notice {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        padding: 13px 15px;
        margin-bottom: 22px;
    }

    .vn-notice-body {
        display: flex;
        align-items: flex-start;
        gap: 12px;
    }

    .vn-ts-icon {
        width: 38px;
        height: 38px;
        min-width: 38px;
        max-width: 38px;
        margin-top: 1px;
    }

    .vn-wa-icon-badge i {
        font-size: 20px;
    }

    .vn-tg-icon-badge i {
        font-size: 18px;
    }

    .vn-ts-title {
        font-size: 13px;
        margin-bottom: 3px;
        line-height: 1.35;
    }

    .vn-ts-desc {
        font-size: 11.5px;
        line-height: 1.4;
    }

    .vn-ts-btn,
    .vn-wa-ts-btn {
        width: 100%;
        text-align: center;
        padding: 10px 14px;
        font-size: 12.5px;
    }
}

.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: minmax(0, 1fr) minmax(0, 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);
    min-width: 0;
    box-sizing: border-box;
}

.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 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    text-align: center;
    font-size: 11.5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.25, 1, 0.5, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: var(--vn-text-muted);
    user-select: none;
}

.vn-app-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.vn-app-icon svg {
    display: block;
}

.vn-app-label {
    display: block;
    text-align: center;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.vn-app-chip:hover {
    background: rgba(255, 107, 0, 0.08);
    border-color: rgba(255, 107, 0, 0.3);
    color: #ffffff;
    transform: translateY(-2px);
}

.vn-app-chip:active {
    transform: scale(0.95);
    transition: transform 0.08s ease-out;
}

.vn-app-chip.active {
    background: rgba(255, 107, 0, 0.14);
    border-color: #ff6b00;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.25);
}

.vn-app-chip i {
    font-size: 18px;
    color: #ff6b00;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vn-app-icon i {
    font-size: 20px;
    color: #ff6b00;
    line-height: 1;
}

/* --------------------------------------------------------------------------
   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: 5px;
    padding: 4px;
    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: max-content;
    min-width: 100%;
    box-sizing: border-box;
}

.vn-region-tab {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 7px 11px;
    border-radius: 30px;
    border: 1px solid transparent;
    background: transparent;
    color: #94a3b8;
    font-size: 12px;
    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;
    gap: 12px;
    padding: 12px 14px;
    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.25, 1, 0.5, 1);
    position: relative;
    user-select: none;
    box-sizing: border-box;
    min-width: 0;
}

.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 {
    transform: scale(0.985);
    transition: transform 0.08s ease-out;
}

.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: 11px;
    min-width: 0;
    flex: 1;
    overflow: hidden;
}

/* ==========================================================================
   RECTANGULAR COUNTRY FLAGS (With subtle brand amber-orange border)
   ========================================================================== */
.vn-page-wrapper .fi,
.vn-country-list .fi,
.vn-region-tabs .fi,
.vn-console-header .fi,
.vn-card-terminal .fi,
.vn-modal-container .fi {
    border-radius: 3px !important;
    aspect-ratio: 4 / 3 !important;
    object-fit: cover !important;
    background-size: cover !important;
    background-position: center !important;
    border: 1px solid rgba(255, 122, 0, 0.5) !important;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.45), 0 0 6px rgba(255, 122, 0, 0.15) !important;
    box-sizing: border-box !important;
}

/* Country Selector Item Flag ("Select Number Location") */
.vn-country-flag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 21px;
    flex-shrink: 0;
}

.vn-country-flag .fi {
    width: 28px !important;
    height: 21px !important;
    border-radius: 3px !important;
    border: 1px solid rgba(255, 122, 0, 0.55) !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5), 0 0 8px rgba(255, 122, 0, 0.2) !important;
    display: block !important;
}

/* Region Filter Tab Flags */
.vn-region-tab .vn-tab-icon .fi {
    width: 20px !important;
    height: 15px !important;
    border-radius: 2.5px !important;
    border: 1px solid rgba(255, 122, 0, 0.45) !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.35) !important;
    display: inline-block !important;
}

/* Terminal & Modal Flags */
.vn-number-display .fi,
.vn-summary-val .fi,
.vn-modal-flag {
    width: 24px !important;
    height: 18px !important;
    border-radius: 3px !important;
    border: 1px solid rgba(255, 122, 0, 0.5) !important;
    display: inline-block !important;
    vertical-align: -2px !important;
}

.vn-country-name {
    font-size: 13.5px;
    font-weight: 600;
    color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.vn-country-code {
    font-size: 11.5px;
    color: var(--vn-text-dim);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

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

.vn-badge-chip {
    font-size: 10.5px;
    font-weight: 600;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    height: 22px;
    padding: 0 8px;
    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;
    flex-direction: column;
    gap: 12px;
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    width: 100%;
    box-sizing: border-box;
}

.vn-console-meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    box-sizing: border-box;
    gap: 10px;
}

.vn-subhead-uppercase {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.48);
    font-family: 'Space Grotesk', -apple-system, sans-serif;
    line-height: 1.2;
}

.vn-status-live {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--vn-emerald, #10b981);
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.22);
    padding: 3px 9px;
    border-radius: 20px;
    white-space: nowrap;
}

.vn-dot-pulse {
    width: 8px;
    height: 8px;
    background-color: var(--vn-emerald, #10b981);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--vn-emerald, #10b981);
    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-number-display {
    font-size: 21px;
    font-weight: 700;
    color: #ffffff;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, sans-serif;
    font-variant-numeric: tabular-nums;
    font-feature-settings: "tnum" 1;
    background: rgba(255, 255, 255, 0.04);
    padding: 11px 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    box-sizing: border-box;
    letter-spacing: 0.8px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3);
    transition: all 0.25s ease;
}

.vn-number-display:hover {
    border-color: rgba(255, 122, 0, 0.4);
    background: rgba(255, 122, 0, 0.05);
}

.vn-preview-mode-banner {
    background: rgba(255, 122, 0, 0.06);
    border: 1px solid rgba(255, 122, 0, 0.16);
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 12.5px;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-sizing: border-box;
}

.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);
    animation: vnFadeIn 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.vn-faq-item.active,
.vn-faq-item.open {
    border-color: rgba(255, 107, 0, 0.4);
    background: rgba(255, 255, 255, 0.04);
}

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

/* --------------------------------------------------------------------------
   RESPONSIVE DESIGN (MOBILE PERFECTION)
   -------------------------------------------------------------------------- */
@media (max-width: 992px) {
    .vn-hero-v2 {
        padding: 95px 16px 25px;
    }
    .vn-hero-v2-container {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    .vn-hero-col-content {
        align-items: center;
        text-align: center;
    }
    .vn-hero-headline {
        font-size: clamp(30px, 6.5vw, 44px);
    }
    .vn-hero-subtext {
        margin: 0 auto 24px;
    }
    .vn-hero-trust-row {
        justify-content: center;
    }
    .vn-halfphone-stage {
        width: 310px;
        height: 410px;
        margin: 0 auto;
    }
    .vn-phone-device.vn-halfphone-device {
        width: 310px !important;
    }
    .vn-mode-cards-grid {
        display: none !important;
    }
    .vn-mobile-mode-wrap {
        display: block !important;
    }
    .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 {
        width: 100% !important;
        gap: 10px !important;
        padding-bottom: 12px !important;
        margin-bottom: 14px !important;
    }
    .vn-console-meta-row {
        width: 100% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
    }
    .vn-subhead-uppercase {
        font-size: 10.5px !important;
    }
    .vn-status-live {
        font-size: 11px !important;
        padding: 3px 8px !important;
    }
    .vn-number-display {
        font-size: 18px !important;
        padding: 10px 14px !important;
        width: 100% !important;
        box-sizing: border-box !important;
        justify-content: center !important;
    }
    .vn-preview-mode-banner {
        font-size: 11.5px !important;
        padding: 8px 12px !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-v2 {
        padding: 85px 12px 20px !important;
    }
    .vn-hero-headline {
        font-size: 27px !important;
    }
    .vn-hero-subtext {
        font-size: 14px !important;
        margin-bottom: 20px !important;
    }
    .vn-hero-trust-row {
        flex-direction: column !important;
        gap: 8px !important;
    }
    .vn-halfphone-stage {
        width: 320px;
        max-width: calc(100vw - 28px);
        height: 295px;
        margin: 0 auto;
    }
    .vn-phone-device.vn-halfphone-device {
        width: 320px !important;
        max-width: 100% !important;
    }
    .vn-phone-screen-body {
        margin-top: 36px;
        padding: 0 10px;
    }
    .vn-active-line-card {
        padding: 9px 11px !important;
        margin-bottom: 7px !important;
        border-radius: 13px !important;
        background: rgba(22, 22, 32, 0.94) !important;
    }
    .vn-line-header {
        margin-bottom: 5px !important;
    }
    .vn-line-status-pill {
        font-size: 10px !important;
        padding: 2px 7px !important;
    }
    .vn-line-country {
        font-size: 11px !important;
        gap: 5px !important;
    }
    .vn-line-number-row {
        padding: 5px 8px !important;
        border-radius: 8px !important;
    }
    .vn-line-number {
        font-size: 12.5px !important;
        letter-spacing: 0.2px !important;
        white-space: nowrap !important;
        flex-shrink: 0 !important;
    }
    .vn-line-copy-btn {
        padding: 3px 7px !important;
        font-size: 10.5px !important;
        gap: 3px !important;
    }
    .vn-live-sms-feed {
        gap: 6px !important;
    }
    .vn-sms-item {
        padding: 7px 9px !important;
        gap: 8px !important;
        border-radius: 12px !important;
    }
    .vn-sms-icon-box {
        width: 25px !important;
        height: 25px !important;
        font-size: 12px !important;
        border-radius: 7px !important;
    }
    .vn-sms-sender {
        font-size: 11px !important;
    }
    .vn-sms-time {
        font-size: 9px !important;
    }
    .vn-sms-text {
        font-size: 10.5px !important;
    }
    .vn-sms-badge-otp {
        font-size: 10px !important;
        padding: 2px 6px !important;
        border-radius: 5px !important;
    }
    .vn-pedestal-glow {
        bottom: -8px !important;
        height: 22px !important;
    }
    .vn-m-tab {
        padding: 9px 8px !important;
        font-size: 12px !important;
        gap: 5px !important;
    }
    .vn-mode-cards-grid {
        display: none !important;
    }
    .vn-mobile-mode-wrap {
        display: block !important;
        width: 100% !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: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

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

.vn-btn-generate {
    width: 100% !important;
    max-width: 320px !important;
    margin: 0 auto !important;
    padding: 11px 22px !important;
    min-height: 44px !important;
    border-radius: 12px !important;
    border: 1px solid rgba(255, 255, 255, 0.22) !important;
    background: linear-gradient(135deg, #ff5000 0%, #ff6800 48%, #ff8828 100%) !important;
    box-shadow: 0 5px 18px -2px rgba(255, 104, 0, 0.5), 0 0 14px rgba(255, 104, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.32) !important;
    position: relative !important;
    overflow: hidden !important;
    cursor: pointer !important;
    transition: all 0.25s 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: 9px;
    position: relative;
    z-index: 2;
    width: 100%;
}

.vn-btn-generate .vn-btn-title {
    font-family: 'Space Grotesk', -apple-system, sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.25px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

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

.vn-btn-generate .vn-btn-arrow {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.95);
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.vn-btn-generate:hover {
    transform: translateY(-1.5px) !important;
    box-shadow: 0 8px 26px rgba(255, 104, 0, 0.62), 0 0 22px rgba(255, 104, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.4) !important;
    background: linear-gradient(135deg, #ff5e0d 0%, #ff7618 48%, #ff9638 100%) !important;
    border-color: rgba(255, 255, 255, 0.35) !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 3px 10px rgba(255, 104, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2) !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: 12px;
    padding: 11px 14px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
    text-align: left;
    box-shadow: 0 6px 18px 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: 11px 16px !important;
        min-height: 44px !important;
        border-radius: 11px !important;
    }
    .vn-btn-generate .vn-btn-title {
        font-size: 13.5px;
    }
    .vn-guarantee-card {
        padding: 10px 12px;
        gap: 8px;
    }
    .vn-guarantee-title {
        font-size: 11px;
    }
    .vn-guarantee-desc {
        font-size: 10.5px;
    }
}

/* --------------------------------------------------------------------------
   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;
    }
}

/* ─── Mode Specific Progressive Disclosure Info Banners ──────────── */
.vn-mode-banner-info {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 18px;
    border-radius: 14px;
    margin-bottom: 20px;
    animation: vnFadeIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.vn-mode-banner-info.inbox-banner {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1) 0%, rgba(15, 23, 42, 0.6) 100%);
    border: 1px solid rgba(6, 182, 212, 0.28);
}

.vn-mode-banner-info.esim-banner {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(15, 23, 42, 0.6) 100%);
    border: 1px solid rgba(16, 185, 129, 0.28);
}

.vn-mode-banner-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.inbox-banner .vn-mode-banner-icon {
    background: rgba(6, 182, 212, 0.18);
    color: #06b6d4;
}

.esim-banner .vn-mode-banner-icon {
    background: rgba(16, 185, 129, 0.18);
    color: #10b981;
}

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

.vn-mode-banner-sub {
    font-size: 13px;
    color: #94a3b8;
    line-height: 1.5;
}

@keyframes vnFadeIn {
    from {
        opacity: 0;
        transform: translateY(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   ViaConecta Wallet 1-Click Instant Activation Styles
   ========================================================================== */
.vn-btn-wallet-instant {
    position: relative;
    display: block;
    width: 100%;
    margin-bottom: 12px;
    padding: 16px 22px;
    border-radius: 16px;
    background: linear-gradient(135deg, #10b981 0%, #059669 50%, #047857 100%);
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 800;
    text-align: center;
    cursor: pointer;
    border: none;
    outline: none;
    box-shadow: 0 10px 28px -6px rgba(16, 185, 129, 0.45), 0 0 20px rgba(16, 185, 129, 0.25);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    user-select: none;
    overflow: hidden;
    z-index: 1;
}

.vn-btn-wallet-instant:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px -8px rgba(16, 185, 129, 0.55), 0 0 30px rgba(16, 185, 129, 0.35);
    background: linear-gradient(135deg, #34d399 0%, #10b981 50%, #059669 100%);
}

.vn-btn-wallet-instant:active {
    transform: translateY(1px);
    box-shadow: 0 6px 18px -4px rgba(16, 185, 129, 0.4);
}

.vn-wallet-btn-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.25) 0%, transparent 60%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.vn-btn-wallet-instant:hover .vn-wallet-btn-glow {
    opacity: 1;
}

.vn-wallet-btn-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.vn-wallet-btn-icon {
    font-size: 1.15rem;
    color: #a7f3d0;
    animation: vnPulseIcon 2s infinite ease-in-out;
}

.vn-wallet-btn-title {
    letter-spacing: -0.01em;
}

.vn-wallet-btn-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #ecfdf5;
    margin-left: 4px;
}

.vn-wallet-alt-action {
    text-align: center;
    margin-top: -4px;
    margin-bottom: 14px;
}

.vn-wallet-alt-action a {
    color: #94a3b8;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.vn-wallet-alt-action a:hover {
    color: #e2e8f0;
    text-decoration: underline;
}

.vn-wallet-status-pill {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08) 0%, rgba(15, 23, 42, 0.6) 100%);
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: 12px;
    padding: 10px 14px;
    margin-top: 12px;
    font-size: 0.85rem;
}

.vn-wsp-left {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #cbd5e1;
}

.vn-wsp-left strong {
    color: #10b981;
}

.vn-wsp-link {
    color: #10b981;
    font-weight: 700;
    font-size: 0.82rem;
    text-decoration: none;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.vn-wsp-link:hover {
    color: #34d399;
    text-decoration: underline;
}

.vn-wallet-hint-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 10px 14px;
    margin-top: 12px;
    font-size: 0.82rem;
    color: #94a3b8;
    line-height: 1.4;
}

.vn-wallet-hint-pill a {
    color: #10b981;
    font-weight: 700;
    text-decoration: none;
}

.vn-wallet-hint-pill a:hover {
    color: #34d399;
    text-decoration: underline;
}

@keyframes vnPulseIcon {
    0%, 100% { transform: scale(1); opacity: 0.9; }
    50% { transform: scale(1.15); opacity: 1; }
}

/* ==========================================================================
   COMPACT GLASS DROPDOWNS & VOICE eSIM RATES (MATTE OBSIDIAN & WARM AMBER)
   ========================================================================== */

.vn-dropdown-wrap {
    position: relative;
    margin-bottom: 16px;
    width: 100%;
}

.vn-dropdown-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    color: #ffffff;
    gap: 12px;
    outline: none;
    text-align: left;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.vn-dropdown-trigger:hover {
    background: rgba(255, 107, 0, 0.05);
    border-color: rgba(255, 107, 0, 0.3);
}

.vn-dropdown-trigger[aria-expanded="true"] {
    background: rgba(255, 107, 0, 0.07);
    border-color: rgba(255, 107, 0, 0.45);
    box-shadow: 0 0 0 1px rgba(255, 107, 0, 0.3), 0 8px 20px rgba(0, 0, 0, 0.25);
}

.vn-trigger-left {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 0;
}

.vn-trigger-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    flex-shrink: 0;
}

.vn-dropdown-trigger .vn-country-flag {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    font-size: 20px;
    flex-shrink: 0;
}

.vn-dropdown-trigger .vn-country-flag .fi {
    border-radius: 3px;
}

.vn-trigger-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
    gap: 2px;
}

.vn-trigger-title {
    font-size: 14px;
    font-weight: 700;
    color: #f8fafc;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.25;
}

.vn-trigger-sub {
    font-size: 11.5px;
    color: #94a3b8;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
}

.vn-trigger-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.vn-trigger-badge {
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    background: rgba(255, 107, 0, 0.12);
    color: #ff8a00;
    border: 1px solid rgba(255, 107, 0, 0.25);
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.vn-trigger-price {
    font-size: 13.5px;
    font-weight: 800;
    color: #ff8a00;
    letter-spacing: -0.2px;
}

.vn-dropdown-chevron {
    font-size: 11px;
    color: #64748b;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), color 0.2s ease;
}

.vn-dropdown-trigger[aria-expanded="true"] .vn-dropdown-chevron {
    transform: rotate(180deg);
    color: #ff8a00;
}

/* Glass Dropdown Menu (Desktop Floating) */
.vn-dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    z-index: 200;
    background: rgba(14, 14, 18, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.75), 0 0 0 1px rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.vn-dropdown-menu.open {
    display: block;
    animation: vnDropIn 0.22s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes vnDropIn {
    from {
        opacity: 0;
        transform: translateY(-8px) scale(0.99);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Menu Header (Title + Close) */
.vn-sheet-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.015);
}

.vn-sheet-title {
    font-size: 12px;
    font-weight: 700;
    color: #94a3b8;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.vn-sheet-close {
    background: none;
    border: none;
    color: #64748b;
    font-size: 20px;
    cursor: pointer;
    padding: 2px 6px;
    line-height: 1;
    border-radius: 6px;
    transition: all 0.15s ease;
}

.vn-sheet-close:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
}

/* Dropdown Search Box */
.vn-dropdown-search-box {
    position: relative;
    padding: 10px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(0, 0, 0, 0.2);
}

.vn-search-icon {
    position: absolute;
    left: 26px;
    top: 50%;
    transform: translateY(-50%);
    color: #64748b;
    font-size: 12px;
    pointer-events: none;
}

.vn-dropdown-search-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 8px 32px 8px 34px;
    color: #ffffff;
    font-size: 13px;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.vn-dropdown-search-input::placeholder {
    color: #64748b;
}

.vn-dropdown-search-input:focus {
    border-color: rgba(255, 107, 0, 0.4);
    background: rgba(255, 255, 255, 0.07);
}

.vn-search-clear {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #64748b;
    cursor: pointer;
    font-size: 16px;
    padding: 0 4px;
    line-height: 1;
}

.vn-search-clear:hover {
    color: #ffffff;
}

/* App Grid Inside Dropdown */
.vn-dropdown-menu .vn-app-selector {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 12px;
    margin-bottom: 0;
    max-height: 280px;
    overflow-y: auto;
}

/* Region Tabs Inside Dropdown */
.vn-dropdown-menu .vn-region-tabs-wrapper {
    padding: 10px 14px 4px 14px;
    margin-bottom: 0;
}

/* Country List Inside Dropdown */
.vn-dropdown-menu .vn-country-list {
    padding: 8px 12px 12px 12px;
    margin-bottom: 0;
    max-height: 280px;
    overflow-y: auto;
    gap: 8px;
}

.vn-dropdown-menu .vn-country-item {
    padding: 10px 12px;
    border-radius: 12px;
}

/* Voice eSIM Outbound & SMS Rates Card */
.vn-rates-card {
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px;
    padding: 14px;
    margin-top: 14px;
}

.vn-rates-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.vn-rates-head-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.vn-rates-icon-badge {
    width: 32px;
    height: 32px;
    background: rgba(255, 107, 0, 0.12);
    border: 1px solid rgba(255, 107, 0, 0.25);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.vn-rates-title {
    font-size: 13.5px;
    font-weight: 700;
    color: #f8fafc;
    line-height: 1.2;
}

.vn-rates-sub {
    font-size: 11px;
    color: #94a3b8;
    margin-top: 2px;
    line-height: 1.2;
}

.vn-rates-free-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: 20px;
    padding: 4px 10px;
    font-size: 11px;
    color: #10b981;
    flex-shrink: 0;
}

.vn-rates-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 10px;
}

.vn-rate-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 10px 12px;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.vn-rate-box:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.vn-rate-box-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
}

.vn-rate-icon {
    font-size: 12px;
    color: #64748b;
}

.vn-rate-tag {
    font-size: 9.5px;
    font-weight: 700;
    padding: 2px 6px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.vn-rate-price {
    font-size: 14px;
    font-weight: 800;
    color: #ff8a00;
    margin-bottom: 3px;
    letter-spacing: -0.2px;
}

.vn-rate-label {
    font-size: 10.5px;
    color: #64748b;
    line-height: 1.3;
}

.vn-rates-note {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.15);
    border-radius: 8px;
    font-size: 11px;
    color: #94a3b8;
    line-height: 1.4;
}

.vn-rates-note i {
    color: #10b981;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Fullscreen Backdrop for Sheet / Dropdown (Deprecated: drawers are now inline) */
.vn-dropdown-backdrop,
.vn-dropdown-backdrop.active {
    display: none !important;
}

/* Mobile Bottom Sheet (<= 768px) */
@media (max-width: 768px) {
    .vn-dropdown-menu {
        position: fixed !important;
        top: auto !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        border-radius: 22px 22px 0 0 !important;
        max-height: 82vh;
        overflow-y: auto;
        z-index: 300;
        background: #0d0e12 !important;
        border: 1px solid rgba(255, 255, 255, 0.12) !important;
        border-bottom: none !important;
        box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.8) !important;
    }

    .vn-dropdown-menu.open {
        animation: vnSheetUp 0.3s cubic-bezier(0.16, 1, 0.3, 1) both;
    }

    @keyframes vnSheetUp {
        from {
            transform: translateY(100%);
        }
        to {
            transform: translateY(0);
        }
    }

    .vn-dropdown-backdrop,
    .vn-dropdown-backdrop.active {
        display: none !important;
    }

    .vn-dropdown-menu .vn-country-list {
        max-height: 55vh;
    }

    .vn-dropdown-menu .vn-app-selector {
        max-height: 55vh;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .vn-rates-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   COMPACT INLINE CARRIER ROUTE & TARGET SERVICE DRAWERS (OBSIDIAN GLASS)
   ========================================================================== */

#vnCountryDropdownWrap .vn-dropdown-menu,
#vnServiceDropdownWrap .vn-dropdown-menu,
.vn-country-menu {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    margin-top: 10px !important;
    background: rgba(14, 15, 22, 0.98) !important;
    border: 1px solid rgba(255, 255, 255, 0.16) !important;
    border-radius: 14px !important;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
    padding: 8px !important;
    overflow: hidden !important;
    max-height: none !important;
    z-index: 10 !important;
    touch-action: pan-y !important;
    overscroll-behavior-x: none !important;
}

#vnCountryDropdownWrap .vn-dropdown-menu.open,
#vnServiceDropdownWrap .vn-dropdown-menu.open,
.vn-country-menu.open {
    display: block !important;
    animation: vnDrawerSlideDown 0.28s cubic-bezier(0.16, 1, 0.3, 1) both !important;
}

@keyframes vnDrawerSlideDown {
    0% {
        opacity: 0;
        transform: translateY(-8px) scaleY(0.97);
        transform-origin: top center;
    }
    100% {
        opacity: 1;
        transform: translateY(0) scaleY(1);
        transform-origin: top center;
    }
}

/* Service Search Inside Drawer */
#vnServiceDropdownWrap .vn-dropdown-search-box {
    position: relative !important;
    padding: 4px 2px 8px 2px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    background: transparent !important;
}

#vnServiceDropdownWrap .vn-dropdown-search-input {
    width: 100% !important;
    background: rgba(0, 0, 0, 0.45) !important;
    border: 1px solid rgba(255, 255, 255, 0.16) !important;
    border-radius: 10px !important;
    padding: 8px 30px 8px 32px !important;
    color: #ffffff !important;
    font-size: 12.5px !important;
    outline: none !important;
    box-sizing: border-box !important;
    transition: all 0.2s ease !important;
}

#vnServiceDropdownWrap .vn-dropdown-search-input:focus {
    border-color: #ff8a00 !important;
    background: rgba(0, 0, 0, 0.6) !important;
    box-shadow: 0 0 0 1px rgba(255, 138, 0, 0.35), 0 0 12px rgba(255, 138, 0, 0.18) !important;
}

/* Target Service App Grid & Chips (Defined Obsidian Borders & Polish) */
#vnServiceDropdownWrap .vn-app-selector {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 8px !important;
    padding: 8px 4px 4px 4px !important;
    margin: 0 !important;
    max-height: 250px !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    overscroll-behavior-x: none !important;
    overscroll-behavior-y: contain !important;
    touch-action: pan-y !important;
    width: 100% !important;
    box-sizing: border-box !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: thin !important;
    scrollbar-color: rgba(255, 138, 0, 0.45) rgba(255, 255, 255, 0.03) !important;
}

#vnServiceDropdownWrap .vn-app-selector::-webkit-scrollbar {
    width: 5px !important;
}

#vnServiceDropdownWrap .vn-app-selector::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02) !important;
    border-radius: 10px !important;
}

#vnServiceDropdownWrap .vn-app-selector::-webkit-scrollbar-thumb {
    background: rgba(255, 138, 0, 0.45) !important;
    border-radius: 10px !important;
}

#vnServiceDropdownWrap .vn-app-chip {
    padding: 11px 8px !important;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.055) 0%, rgba(255, 255, 255, 0.02) 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.16) !important;
    border-radius: 12px !important;
    text-align: center !important;
    font-size: 11.5px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    color: #cbd5e1 !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3) !important;
}

#vnServiceDropdownWrap .vn-app-chip:hover {
    background: linear-gradient(180deg, rgba(255, 107, 0, 0.14) 0%, rgba(255, 107, 0, 0.04) 100%) !important;
    border-color: rgba(255, 107, 0, 0.5) !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45), 0 0 12px rgba(255, 107, 0, 0.2) !important;
}

#vnServiceDropdownWrap .vn-app-chip.active {
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.22) 0%, rgba(255, 107, 0, 0.08) 100%) !important;
    border: 1.5px solid #ff7a00 !important;
    color: #ffffff !important;
    box-shadow: 0 4px 18px rgba(255, 107, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
}

#vnServiceDropdownWrap .vn-app-chip .vn-app-label {
    color: #e2e8f0 !important;
    font-weight: 600 !important;
}

#vnServiceDropdownWrap .vn-app-chip.active .vn-app-label {
    color: #ffffff !important;
    font-weight: 700 !important;
}

#vnCountryDropdownWrap .vn-country-list,
.vn-country-menu .vn-country-list {
    display: flex !important;
    flex-direction: column !important;
    gap: 6px !important;
    padding: 6px 4px 6px 6px !important;
    margin: 0 !important;
    max-height: 255px !important;
    overflow-y: auto !important;
    overscroll-behavior: contain !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: thin !important;
    scrollbar-color: rgba(255, 138, 0, 0.45) rgba(255, 255, 255, 0.03) !important;
}

#vnCountryDropdownWrap .vn-country-list::-webkit-scrollbar,
.vn-country-menu .vn-country-list::-webkit-scrollbar {
    width: 5px !important;
}

#vnCountryDropdownWrap .vn-country-list::-webkit-scrollbar-track,
.vn-country-menu .vn-country-list::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.03) !important;
    border-radius: 4px !important;
}

#vnCountryDropdownWrap .vn-country-list::-webkit-scrollbar-thumb,
.vn-country-menu .vn-country-list::-webkit-scrollbar-thumb {
    background: rgba(255, 138, 0, 0.45) !important;
    border-radius: 4px !important;
}

#vnCountryDropdownWrap .vn-country-list::-webkit-scrollbar-thumb:hover,
.vn-country-menu .vn-country-list::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 138, 0, 0.75) !important;
}

#vnCountryDropdownWrap .vn-country-item,
.vn-country-menu .vn-country-item {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 10px 14px !important;
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    border-radius: 10px !important;
    cursor: pointer !important;
    transition: all 0.18s cubic-bezier(0.16, 1, 0.3, 1) !important;
    gap: 12px !important;
    margin-bottom: 0 !important;
    box-sizing: border-box !important;
    transform: none !important;
}

#vnCountryDropdownWrap .vn-country-item:hover,
.vn-country-menu .vn-country-item:hover {
    background: rgba(255, 107, 0, 0.08) !important;
    border-color: rgba(255, 107, 0, 0.3) !important;
    transform: translateX(3px) !important;
}

#vnCountryDropdownWrap .vn-country-item.active,
.vn-country-menu .vn-country-item.active {
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.15) 0%, rgba(255, 107, 0, 0.05) 100%) !important;
    border-color: rgba(255, 107, 0, 0.6) !important;
    box-shadow: 0 4px 16px rgba(255, 107, 0, 0.2) !important;
}

#vnCountryDropdownWrap .vn-country-info,
.vn-country-menu .vn-country-info {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    min-width: 0 !important;
    flex: 1 !important;
}

#vnCountryDropdownWrap .vn-country-name,
.vn-country-menu .vn-country-name {
    font-size: 13.5px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    line-height: 1.25 !important;
}

#vnCountryDropdownWrap .vn-country-code,
.vn-country-menu .vn-country-code {
    font-size: 11px !important;
    color: #94a3b8 !important;
    line-height: 1.2 !important;
    margin-top: 1px !important;
}

#vnCountryDropdownWrap .vn-country-badges,
.vn-country-menu .vn-country-badges {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    flex-shrink: 0 !important;
}

/* Hide modal sheet headers on desktop (only show on mobile bottom sheet if applicable) */
@media (min-width: 769px) {
    .vn-sheet-header {
        display: none !important;
    }
    .vn-dropdown-backdrop {
        display: none !important;
    }
}

/* On mobile, keep the country and service selectors inline inside the card for maximum convenience */
@media (max-width: 768px) {
    #vnCountryDropdownWrap .vn-dropdown-menu,
    #vnServiceDropdownWrap .vn-dropdown-menu,
    .vn-country-menu {
        position: relative !important;
        top: auto !important;
        bottom: auto !important;
        left: auto !important;
        right: auto !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        border-radius: 14px !important;
        max-height: none !important;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6) !important;
        animation: vnDrawerSlideDown 0.25s cubic-bezier(0.16, 1, 0.3, 1) both !important;
        overflow: hidden !important;
        touch-action: pan-y !important;
        overscroll-behavior-x: none !important;
    }
}

@media (max-width: 640px) {
    #vnServiceDropdownWrap .vn-app-selector {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px !important;
        padding: 6px 2px !important;
        max-height: 270px !important;
        overflow-x: hidden !important;
        touch-action: pan-y !important;
        overscroll-behavior-x: none !important;
        overscroll-behavior-y: contain !important;
    }
    #vnServiceDropdownWrap .vn-app-chip {
        min-width: 0 !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding: 12px 8px !important;
    }
    #vnServiceDropdownWrap .vn-app-chip .vn-app-label {
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        font-size: 12px !important;
        max-width: 100% !important;
    }
}

/* Dropdown Triggers (Obsidian Glass with defined high-precision borders) */
.vn-dropdown-trigger,
#vnServiceTrigger,
#vnCountryTrigger {
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 12px 16px !important;
    background: linear-gradient(180deg, rgba(24, 26, 36, 0.95) 0%, rgba(15, 16, 24, 0.98) 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.16) !important;
    border-radius: 14px !important;
    cursor: pointer !important;
    transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1) !important;
    color: #ffffff !important;
    gap: 12px !important;
    outline: none !important;
    text-align: left !important;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
    box-sizing: border-box !important;
}

.vn-dropdown-trigger:hover,
#vnServiceTrigger:hover,
#vnCountryTrigger:hover {
    background: linear-gradient(180deg, rgba(30, 32, 44, 0.96) 0%, rgba(20, 21, 30, 0.98) 100%) !important;
    border-color: rgba(255, 138, 0, 0.5) !important;
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.5), 0 0 14px rgba(255, 138, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.12) !important;
    transform: translateY(-1px) !important;
}

.vn-dropdown-trigger[aria-expanded="true"],
#vnServiceTrigger[aria-expanded="true"],
#vnCountryTrigger[aria-expanded="true"] {
    border-color: #ff8a00 !important;
    background: linear-gradient(180deg, rgba(32, 34, 48, 0.98) 0%, rgba(22, 23, 34, 0.99) 100%) !important;
    box-shadow: 0 0 0 1px rgba(255, 138, 0, 0.45), 0 8px 24px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
}

/* Trigger Chevron Smooth Rotation */
#vnCountryTrigger .vn-dropdown-chevron,
#vnServiceTrigger .vn-dropdown-chevron,
.vn-dropdown-trigger .vn-dropdown-chevron {
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), color 0.2s ease !important;
}

#vnCountryTrigger[aria-expanded="true"] .vn-dropdown-chevron,
#vnServiceTrigger[aria-expanded="true"] .vn-dropdown-chevron,
.vn-dropdown-trigger[aria-expanded="true"] .vn-dropdown-chevron {
    transform: rotate(180deg) !important;
    color: #ff8a00 !important;
}

/* Phone Number Badges (Borderless Sleek Pill) */
.vn-item-phone-badge {
    display: inline-flex !important;
    align-items: center !important;
    margin-left: 6px !important;
    padding: 2px 7px !important;
    border-radius: 6px !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
    font-size: 11.5px !important;
    font-weight: 600 !important;
    letter-spacing: 0.01em !important;
    background: rgba(255, 255, 255, 0.08) !important;
    color: #cbd5e1 !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    font-variant-numeric: tabular-nums !important;
    vertical-align: middle !important;
}

.vn-country-item:hover .vn-item-phone-badge {
    background: rgba(255, 138, 0, 0.12) !important;
    color: #ff9e3b !important;
    border: none !important;
}

.vn-country-item.active .vn-item-phone-badge,
.vn-trigger-title .vn-item-phone-badge {
    background: rgba(255, 138, 0, 0.16) !important;
    color: #ffb066 !important;
    border: none !important;
}

.vn-country-code,
.vn-trigger-sub {
    display: none !important;
}

@media (max-width: 480px) {
    .vn-dropdown-trigger,
    #vnServiceTrigger,
    #vnCountryTrigger {
        padding: 10px 10px !important;
        gap: 6px !important;
    }
    .vn-trigger-left {
        gap: 8px !important;
        min-width: 0 !important;
        flex: 1 !important;
    }
    .vn-trigger-icon,
    .vn-dropdown-trigger .vn-country-flag {
        width: 32px !important;
        height: 32px !important;
    }
    .vn-trigger-text {
        min-width: 0 !important;
        flex: 1 !important;
    }
    .vn-trigger-title {
        font-size: 13px !important;
        display: flex !important;
        align-items: center !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }
    .vn-trigger-right {
        gap: 5px !important;
        flex-shrink: 0 !important;
    }
    .vn-trigger-badge,
    .vn-badge-chip {
        padding: 2px 6px !important;
        font-size: 9.5px !important;
    }
    .vn-trigger-price {
        font-size: 13.5px !important;
    }
    .vn-item-phone-badge {
        font-size: 10.5px !important;
        padding: 1.5px 5px !important;
        margin-left: 5px !important;
    }
}

/* ==========================================================================
   LIVE CONNECTION TERMINAL - PRECISE VERTICAL RHYTHM & REFINED SPACING
   ========================================================================== */
.vn-card-terminal {
    padding: 24px 26px !important;
}

.vn-card-terminal .vn-console-header {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    padding-bottom: 14px !important;
    margin-bottom: 12px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.vn-card-terminal .vn-console-meta-row {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    box-sizing: border-box !important;
    gap: 10px !important;
}

.vn-card-terminal .vn-number-display {
    font-size: 20px !important;
    font-weight: 700 !important;
    padding: 10px 14px !important;
    border-radius: 12px !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    gap: 10px !important;
}

.vn-card-terminal .vn-preview-mode-banner {
    margin-bottom: 12px !important;
    padding: 9px 13px !important;
    font-size: 12px !important;
    line-height: 1.45 !important;
    color: rgba(255, 255, 255, 0.85) !important;
    border-radius: 10px !important;
}

.vn-card-terminal .vn-spec-list {
    margin: 0 0 12px 0 !important;
    gap: 8px !important;
}

.vn-card-terminal .vn-spec-item {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 9px 12px !important;
    background: rgba(255, 255, 255, 0.025) !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    border-radius: 10px !important;
    transition: all 0.2s ease !important;
}

.vn-card-terminal .vn-spec-item:hover {
    background: rgba(255, 255, 255, 0.04) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.vn-card-terminal .vn-spec-icon {
    width: 32px !important;
    height: 32px !important;
    border-radius: 8px !important;
    font-size: 13.5px !important;
    flex-shrink: 0 !important;
}

.vn-card-terminal .vn-spec-title {
    font-size: 12.5px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    line-height: 1.3 !important;
    margin-bottom: 2px !important;
}

.vn-card-terminal .vn-spec-desc {
    font-size: 11.5px !important;
    color: #94a3b8 !important;
    line-height: 1.4 !important;
    margin: 0 !important;
}

.vn-card-terminal .vn-cta-action-wrap {
    margin-top: 4px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 7px !important;
}

.vn-card-terminal .vn-trust-chips-row {
    margin-bottom: 2px !important;
    gap: 7px !important;
}

.vn-card-terminal .vn-trust-chip {
    padding: 3px 9px !important;
    font-size: 11px !important;
    gap: 5px !important;
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 20px !important;
}

.vn-card-terminal .vn-btn-generate,
.vn-card-terminal .vn-btn-wallet-instant {
    margin: 0 auto !important;
    width: 100% !important;
    max-width: 320px !important;
    min-height: 44px !important;
    padding: 11px 22px !important;
}

/* Guest Wallet Micro-Hint Line (Sleek 1-line prompt, no heavy box) */
.vn-wallet-guest-line {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 7px !important;
    margin-top: 6px !important;
    margin-bottom: 0 !important;
    font-size: 11.5px !important;
    color: #94a3b8 !important;
    line-height: 1.4 !important;
    text-align: center !important;
}

.vn-wallet-guest-line i {
    font-size: 13px !important;
    color: #10b981 !important;
}

.vn-wallet-guest-line a {
    color: #10b981 !important;
    font-weight: 600 !important;
    text-decoration: underline !important;
    text-underline-offset: 2px !important;
    transition: color 0.15s ease, text-shadow 0.15s ease !important;
}

.vn-wallet-guest-line a:hover {
    color: #34d399 !important;
    text-shadow: 0 0 8px rgba(16, 185, 129, 0.4) !important;
}

/* Streamlined Trust & Compliance Micro-Footer */
.vn-terminal-micro-footer {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    margin-top: 6px !important;
    padding-top: 8px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
    font-size: 11px !important;
    color: #64748b !important;
    line-height: 1.4 !important;
    text-align: center !important;
}

.vn-tmf-guarantee {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    color: #94a3b8 !important;
    font-weight: 500 !important;
}

.vn-tmf-guarantee i {
    font-size: 12px !important;
}

.vn-tmf-dot {
    color: #475569 !important;
    user-select: none !important;
    font-size: 10px !important;
}

.vn-tmf-terms a {
    color: #64748b !important;
    text-decoration: underline !important;
    text-underline-offset: 2px !important;
    font-weight: 500 !important;
    transition: color 0.15s ease !important;
}

.vn-tmf-terms a:hover {
    color: #38bdf8 !important;
}

@media (max-width: 640px) {
    .vn-card-terminal {
        padding: 20px 18px !important;
    }
    .vn-wallet-guest-line {
        font-size: 11px !important;
        gap: 6px !important;
        margin-top: 5px !important;
    }
    .vn-terminal-micro-footer {
        font-size: 10.5px !important;
        gap: 6px !important;
        margin-top: 5px !important;
        padding-top: 6px !important;
    }
}

/* Rates Card Terms Link */
.vn-rates-note .vn-terms-link {
    color: #34d399 !important;
    text-decoration: underline !important;
    text-underline-offset: 2px !important;
    margin-left: 4px !important;
    font-weight: 600 !important;
}

.vn-rates-note .vn-terms-link:hover {
    color: #6ee7b7 !important;
}

/* Mode 3 Card Rates Pill */
.vn-mode-card-footer {
    margin-top: auto !important;
    padding-top: 14px !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    flex-wrap: wrap !important;
}

.vn-mode-card-footer .vn-mode-pill {
    margin: 0 !important;
}

.vn-mode-pill.vn-rate-pill {
    background: rgba(255, 138, 0, 0.1) !important;
    color: #ff9800 !important;
    border: 1px solid rgba(255, 138, 0, 0.25) !important;
}

/* ==========================================================================
   UNIFIED MODE NAVIGATION & SINGLE CONFIGURATOR CARD REDESIGN
   ========================================================================== */
.vn-mode-nav-wrap {
    max-width: 580px !important;
    margin: 0 auto 16px auto !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.vn-mode-nav-bar {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    background: rgba(15, 23, 42, 0.88) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 16px !important;
    padding: 5px !important;
    gap: 6px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45) !important;
    backdrop-filter: blur(24px) !important;
    -webkit-backdrop-filter: blur(24px) !important;
    box-sizing: border-box !important;
    width: 100% !important;
    height: 48px !important;
}

.vn-mode-nav-item {
    flex: 1 1 0 !important;
    min-width: 0 !important;
    min-height: 0 !important;
    height: 100% !important;
    max-height: 100% !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    padding: 0 6px !important;
    border-radius: 12px !important;
    border: 1px solid transparent !important;
    background: transparent !important;
    cursor: pointer !important;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
    text-align: center !important;
    user-select: none !important;
    -webkit-tap-highlight-color: transparent !important;
    box-sizing: border-box !important;
    margin: 0 !important;
    outline: none !important;
    color: #94a3b8 !important;
}

.vn-mode-nav-item:hover {
    background: rgba(255, 255, 255, 0.05) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
    color: #f1f5f9 !important;
}

.vn-mode-nav-item.active {
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.18) 0%, rgba(255, 90, 0, 0.08) 100%) !important;
    border-color: rgba(255, 140, 0, 0.5) !important;
    box-shadow: 0 0 16px rgba(255, 122, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
    color: #ffffff !important;
}

.vn-mode-nav-item .vn-mode-icon {
    width: auto !important;
    height: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    font-size: 13px !important;
    display: inline-block !important;
    line-height: 1 !important;
    color: #64748b !important;
    transition: color 0.2s ease !important;
    flex-shrink: 0 !important;
}

.vn-mode-nav-item:hover .vn-mode-icon {
    color: #cbd5e1 !important;
}

.vn-mode-nav-item.active .vn-mode-icon {
    color: #f97316 !important;
}

.vn-mode-text {
    font-size: 13px !important;
    font-weight: 600 !important;
    white-space: nowrap !important;
    overflow: visible !important;
    letter-spacing: -0.2px !important;
    flex-shrink: 0 !important;
}

.vn-mode-name-short {
    display: none !important;
}
.vn-mode-name-full {
    display: inline !important;
}

.vn-mode-price-badge {
    font-size: 11px !important;
    font-weight: 700 !important;
    padding: 2px 6px !important;
    border-radius: 6px !important;
    background: rgba(255, 255, 255, 0.07) !important;
    color: #cbd5e1 !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    letter-spacing: 0.2px !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
    transition: all 0.2s ease !important;
}

.vn-mode-nav-item.active .vn-mode-price-badge {
    background: rgba(249, 115, 22, 0.25) !important;
    color: #fdba74 !important;
    border-color: rgba(249, 115, 22, 0.45) !important;
}

.vn-price-suffix {
    display: inline !important;
}

/* Configurator Card Wrap */
.vn-configurator-wrap {
    max-width: 580px !important;
    margin: 0 auto 48px auto !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.vn-configurator-card {
    background: rgba(14, 18, 27, 0.88) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 22px !important;
    padding: 26px 22px !important;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7), 0 0 40px rgba(255, 122, 0, 0.04) !important;
    backdrop-filter: blur(24px) !important;
    -webkit-backdrop-filter: blur(24px) !important;
    width: 100% !important;
    box-sizing: border-box !important;
    position: relative !important;
    overflow: visible !important;
}

.vn-configurator-card .vn-card-title {
    font-size: 16px !important;
    font-weight: 700 !important;
    margin-bottom: 4px !important;
}
.vn-configurator-card .vn-card-subtitle {
    font-size: 12.5px !important;
    margin-bottom: 14px !important;
}

/* CTA Action Area */
.vn-config-action-wrap {
    margin-top: 22px !important;
    padding-top: 18px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
}

.vn-config-action-wrap .vn-btn-generate,
.vn-config-action-wrap .vn-btn-wallet-instant {
    max-width: 380px !important;
    width: 100% !important;
    margin: 0 auto !important;
    min-height: 48px !important;
    padding: 12px 20px !important;
    border-radius: 14px !important;
    font-size: 15px !important;
    font-weight: 700 !important;
}

/* Responsive Overrides */
@media (max-width: 640px) {
    .vn-mode-nav-wrap,
    .vn-configurator-wrap {
        max-width: 100% !important;
        margin-bottom: 28px !important;
    }
    .vn-configurator-card {
        padding: 20px 14px !important;
        border-radius: 18px !important;
    }
    .vn-config-action-wrap .vn-btn-generate,
    .vn-config-action-wrap .vn-btn-wallet-instant {
        max-width: 100% !important;
    }
}

@media (max-width: 520px) {
    .vn-mode-nav-bar {
        height: 42px !important;
        padding: 3px !important;
        gap: 4px !important;
        border-radius: 14px !important;
    }
    .vn-mode-nav-item {
        padding: 0 4px !important;
        gap: 4px !important;
        border-radius: 10px !important;
    }
    .vn-mode-icon {
        font-size: 11px !important;
    }
    .vn-mode-name-full {
        display: none !important;
    }
    .vn-mode-name-short {
        display: inline !important;
        font-size: 11.5px !important;
        font-weight: 700 !important;
    }
    .vn-mode-price-badge {
        font-size: 10px !important;
        padding: 1.5px 5px !important;
        border-radius: 5px !important;
    }
    .vn-price-suffix {
        display: none !important;
    }
}
