@import url('https://fonts.geekzu.org/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #0071e3;
    --primary-glow: rgba(0, 113, 227, 0.4);
    --secondary: #5e5ce6;
    --accent: #64d2ff;
    --background: #000000;
    --card-bg: rgba(22, 22, 24, 0.7);
    --text-main: #f5f5f7;
    --text-muted: #86868b;
    --glass-border: rgba(255, 255, 255, 0.12);
    --glass-grad: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
    --safe-area-inset-bottom: env(safe-area-inset-bottom, 0px);

    /* New premium tokens */
    --gold: #d4af37;
    --success: #34d399;
    --warning: #fbbf24;
    --danger: #ef4444;
    --link: #2997ff;
    --safe-area-bottom: env(safe-area-inset-bottom, 20px);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    max-width: 100%;
}

body {
    background-color: var(--background);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.5;
    width: 100%;
    position: relative;
    -webkit-text-size-adjust: 100%;
    /* Sticky footer setup */
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
}

header,
main,
footer {
    width: 100%;
    flex-shrink: 0;
}

main {
    flex-grow: 1;
}


img,
video,
canvas,
svg {
    max-width: 100%;
    height: auto;
}

/* Background effects */
.mesh-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background:
        radial-gradient(circle at 0% 0%, rgba(94, 92, 230, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 100% 100%, rgba(100, 210, 255, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(0, 113, 227, 0.05) 0%, transparent 50%);
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-weight: 700;
    letter-spacing: -0.015em;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, #fff 0%, var(--text-muted) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-text-blue {
    background: linear-gradient(135deg, #64d2ff 0%, #0071e3 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Shipping Region Selector */
.region-select-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: 1rem;
}

@media (max-width: 480px) {
    .region-select-group {
        grid-template-columns: 1fr;
    }
}

.region-select-group select {
    width: 100%;
}

/* Enhanced Dashboard Layout */
.dashboard-layout {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.sim-switcher {
    position: relative;
    z-index: 10;
}

.sim-selector-active {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 0.85rem 1.25rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s var(--ease-out-expo);
    min-height: 64px;
}

.sim-selector-active:hover {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.05);
}

.sim-selector-active.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
    filter: grayscale(0.5);
}

.sim-selector-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    right: 0;
    background: rgba(20, 20, 22, 0.95);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    display: none;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    animation: dropdownFade 0.3s var(--ease-out-expo);
    max-height: 60vh;
    overflow-y: auto;
}

@keyframes dropdownFade {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sim-selector-dropdown.show {
    display: flex;
}

.selector-option {
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    border-bottom: 1px solid var(--glass-border);
    transition: background 0.2s;
}

.selector-option:last-child {
    border-bottom: none;
}

.selector-option:hover {
    background: rgba(255, 255, 255, 0.05);
}

.selector-option.active {
    background: rgba(0, 113, 227, 0.1);
}

.selector-option .sim-info {
    display: flex;
    flex-direction: column;
}

.selector-option .sim-type {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
}

.selector-option .sim-number {
    font-size: 0.95rem;
    font-weight: 500;
}

.sim-detail-view {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.detail-card {
    padding: 2rem;
}

.usage-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.stat-item label {
    display: block;
    color: var(--text-muted);
    font-size: 0.75rem;
    margin-bottom: 0.25rem;
}

.stat-item .value {
    font-size: 1.25rem;
    font-weight: 700;
}

.action-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

/* Data Package Grid in SIM Detail */
.data-packages-view {
    margin-top: 1rem;
}

.data-pkg-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.sim-limit-warning {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #ef4444;
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Components */
.glass-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 1.5rem;
    transition: transform 0.4s var(--ease-out-expo), border-color 0.4s var(--ease-out-expo);
}

.glass-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
    /* Pill shape */
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s var(--ease-out-expo);
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: #0077ed;
    transform: scale(1.02);
}

.btn-hero {
    padding: 1.15rem 2.5rem;
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    box-shadow: 0 10px 30px rgba(var(--primary-rgb), 0.4);
    position: relative;
    overflow: hidden;
}

.btn-hero:hover {
    transform: scale(1.04) translateY(-2px);
    box-shadow: 0 15px 40px rgba(var(--primary-rgb), 0.5);
}

.btn-hero:active {
    transform: scale(0.98);
}

.btn-outline {
    background: transparent;
    border: 1.5px solid var(--glass-border);
    color: var(--text-main);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.08);
}

.btn-outline-primary:hover {
    background: rgba(0, 113, 227, 0.05);
}

.action-btn-sm {
    padding: 0.45rem 1rem !important;
    font-size: 0.75rem !important;
    border-radius: 8px !important;
    font-weight: 700 !important;
}

.btn-outline-primary {
    background: transparent;
    border: 1.5px solid var(--primary);
    color: var(--primary);
}

/* Layout */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

header {
    height: 64px;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 0.5px solid var(--glass-border);
    padding-top: env(safe-area-inset-top, 0px);
    height: calc(64px + env(safe-area-inset-top, 0px));
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    letter-spacing: -0.02em;
    text-decoration: none !important;
}

.nav-links {
    display: none;
    /* Mobile first */
    gap: 1.5rem;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.nav-links a:hover {
    opacity: 1;
}

.mobile-menu-toggle {
    display: block;
    background: none;
    border: none;
    color: var(--text-main);
    cursor: pointer;
    padding: 0.5rem;
}

.nav-links.mobile-active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 64px;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    padding: 2rem;
    gap: 2rem;
    border-bottom: 0.5px solid var(--glass-border);
    animation: fadeIn 0.3s var(--ease-out-expo);
}

/* Sections */
.page {
    padding-top: 1rem;
    padding-bottom: 2rem;
}

/* Hero Section */
.hero-section {
    display: flex;
    gap: 4rem;
    padding-top: 4rem;
    min-height: 0;
    align-items: center;
    width: 100%;
}

@media (max-width: 1024px) {
    .hero-section {
        flex-direction: column;
        padding-top: 2rem;
        gap: 1.5rem;
        text-align: center;
    }
}

.hero-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

@media (max-width: 1024px) {
    .hero-text {
        align-items: center;
        text-align: center;
    }
}

.hero-text h1 {
    font-size: clamp(1.75rem, 8vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}



.hero-plan-container {
    flex: 1;
    width: 100%;
    max-width: 500px;
}

.hero-plan-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
}

.hero-plan-grid .plan-card {
    max-width: 100%;
    padding: 2rem;
}

@media (max-width: 1024px) {
    .hero-plan-container {
        max-width: 600px;
    }

    .hero-plan-grid {
        flex-direction: row;
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .hero-plan-grid {
        flex-direction: column;
    }
}

.hero-image-container {
    perspective: 1000px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 2rem;
}

.tech-card-bg {
    width: 380px;
    height: 240px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    position: relative;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    transform: rotateX(10deg) rotateY(-15deg);
}

.tech-card-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 113, 227, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.tech-card-bg .chip {
    width: 60px;
    height: 50px;
    background: linear-gradient(135deg, #d4af37 0%, #f1c40f 50%, #d4af37 100%);
    border-radius: 8px;
    position: absolute;
    top: 40px;
    left: 40px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.tech-card-bg .chip::after {
    content: '';
    position: absolute;
    inset: 4px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    background-image: linear-gradient(90deg, transparent 48%, rgba(0, 0, 0, 0.1) 50%),
        linear-gradient(0deg, transparent 48%, rgba(0, 0, 0, 0.1) 50%);
    background-size: 10px 10px;
}

.tech-card-bg .sim-brand {
    position: absolute;
    bottom: 30px;
    right: 30px;
    font-size: 1.5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.2);
    letter-spacing: 0.2em;
    font-style: italic;
}

.tech-card-bg .circuit-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(0, 113, 227, 0.2), transparent);
    height: 1px;
    width: 100%;
}

.tech-card-bg .circuit-line:nth-child(2) {
    top: 120px;
    animation: scan 3s linear infinite;
}

.tech-card-bg .circuit-line:nth-child(3) {
    top: 160px;
    animation: scan 3s linear infinite 1.5s;
    opacity: 0.5;
}

@keyframes scan {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

@media (max-width: 768px) {
    .tech-card-bg {
        width: 300px;
        height: 190px;
    }
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 1.5rem auto;
    width: 100%;
    max-width: 600px;
    text-align: left;
}

@media (max-width: 600px) {
    .feature-grid {
        grid-template-columns: 1fr;
        width: 100%;
        padding: 0 1rem;
    }
}

.feature-pill {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 1.25rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    min-height: 100px;
    justify-content: flex-start;
    width: 100%;
}

.feature-pill:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 113, 227, 0.3);
    transform: translateY(-2px);
}

.feature-pill svg {
    color: var(--primary);
    width: 20px;
    height: 20px;
}

.feature-pill span {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-main);
}

.feature-pill label {
    font-size: 0.65rem;
    color: var(--text-muted);
    line-height: 1.3;
}

/* Auth */
.auth-container {
    max-width: 400px;
    margin: 4rem auto;
}

.auth-container h2 {
    margin-bottom: 0.5rem;
}

/* Checkout Addons */
.addon-group {
    border-radius: 12px;
    border: 1px solid var(--glass-border);
}

.addon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 0.5rem;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid transparent;
    border-radius: 8px;
    transition: all 0.2s ease;
    text-align: center;
}

.addon-item:hover {
    background: rgba(255, 255, 255, 0.06);
}

.addon-item.active {
    background: rgba(0, 113, 227, 0.1);
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(0, 113, 227, 0.2);
}

.addon-item input[type="radio"] {
    display: none;
    /* Hide real radio */
}

.addon-name {
    font-size: 0.75rem;
    font-weight: 700;
    display: block;
    color: var(--text-main);
    margin-bottom: 0.25rem;
}

.addon-desc {
    font-size: 0.6rem;
    color: var(--text-muted);
    display: block;
    margin-bottom: 4px;
    line-height: 1.2;
}

.addon-price {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.addon-item.active .addon-name {
    color: var(--primary);
}

.addon-item.active .addon-price {
    color: var(--primary);
    opacity: 0.8;
}

/* Shop */
.shop-header {
    text-align: center;
    margin-bottom: 3rem;
}

.shop-header h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.plan-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.plan-card {
    width: 100%;
    max-width: 400px;
}

@media (max-width: 640px) {
    .plan-card {
        max-width: 100%;
        padding: 2rem 1.5rem;
    }
}

.plan-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid var(--glass-border);
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    transition: all 0.6s var(--ease-out-expo);
}

.plan-card:hover {
    transform: translateY(-12px);
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.plan-card.featured {
    border-color: var(--primary-glow);
    background: linear-gradient(180deg, rgba(0, 113, 227, 0.12) 0%, rgba(22, 22, 24, 0.8) 100%);
    box-shadow: 0 0 50px rgba(0, 113, 227, 0.15);
}

.plan-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.plan-type {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
    opacity: 0.9;
}

.plan-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
    background: linear-gradient(135deg, #fff 0%, #888 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
}

.plan-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.price-container {
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
    margin-bottom: 2.5rem;
}

.plan-card .price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: -0.02em;
}

.price-unit {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 500;
}

.badge {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    padding: 0.35rem 0.75rem;
    background: var(--primary);
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 4px 12px var(--primary-glow);
}

.badge-status {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
}

.qr-container {
    padding: 2.5rem 0;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    border: 1px dashed var(--glass-border);
    text-align: center;
    margin: 1.5rem 0;
    transition: background 0.3s;
}

.qr-container:hover {
    background: rgba(255, 255, 255, 0.04);
}

.qr-image {
    width: 180px;
    height: 180px;
    border-radius: 12px;
    background: white;
    padding: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Data Packages */
.data-pkg-card {
    text-align: left;
}

.pkg-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.pkg-size {
    font-size: 1.5rem;
    font-weight: 700;
}

.pkg-validity {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Dashboard & Common Grids */
.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-top: 2rem;
}

.sim-grid,
.orders-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Profile */
.profile-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem !important;
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.profile-avatar {
    width: 64px;
    height: 64px;
    background: var(--glass-grad);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    box-shadow: 0 5px 15px rgba(0, 0, 113, 0.2);
}

.profile-details h3 {
    margin-bottom: 0.25rem;
    font-size: 1.2rem;
    word-break: break-all;
}

@media (max-width: 480px) {
    .profile-details h3 {
        font-size: 1.05rem;
    }
}

.profile-details p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.profile-info-row {
    margin-top: 0.25rem;
}

@media (max-width: 480px) {
    .profile-header {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .profile-avatar {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }
}

.profile-menu {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.menu-group {
    padding: 0 !important;
    overflow: hidden;
}

.menu-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.15rem 1.5rem;
    cursor: pointer;
    transition: background 0.3s var(--ease-out-expo);
    border-bottom: 1px solid var(--glass-border);
    background: transparent;
    border-radius: 0;
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.menu-item .item-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.menu-item .item-left svg {
    color: var(--primary);
    opacity: 0.9;
}

.menu-item .item-label {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-main);
}

.menu-badge {
    padding: 0.2rem 0.5rem;
    background: rgba(0, 113, 227, 0.15);
    color: var(--primary);
    border-radius: 6px;
    font-size: 0.65rem;
    font-weight: 700;
    margin-left: 0.5rem;
}

.menu-item .chevron {
    color: var(--text-muted);
    opacity: 0.4;
    transition: transform 0.3s var(--ease-out-expo);
}

.menu-item:hover .chevron {
    transform: translateX(3px);
    opacity: 0.8;
}

.info-group label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.info-group p {
    font-weight: 600;
}

/* Checkout */
.checkout-container {
    max-width: 500px;
    margin: 2rem auto;
    width: 100%;
    transition: max-width 0.3s ease;
}

.checkout-layout {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

@media (min-width: 992px) {
    .checkout-container {
        max-width: 900px;
    }

    .checkout-layout {
        flex-direction: row;
        align-items: flex-start;
        gap: 2.5rem;
        justify-content: center;
    }

    /* Target direct children to create columns */
    .checkout-layout>#shipping-info {
        flex: 0.8;
        margin-bottom: 0 !important;
        border-right: 1px solid var(--glass-border);
        padding-right: 2.5rem;
    }

    .checkout-layout>.checkout-summary {
        flex: 1.2;
        border-top: none !important;
        margin-top: 0 !important;
        padding-top: 0 !important;
    }

    .shipping-contact-grid {
        grid-template-columns: 0.8fr 1.2fr !important;
    }
}

.checkout-summary {
    border-top: 1px solid var(--glass-border);
    padding-top: 1rem;
    margin-top: 0.5rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.summary-item.total {
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--text-main);
}

/* Page transitions */
.page {
    display: none;
    animation: fadeIn 0.5s var(--ease-out-expo);
}

.page.active {
    display: block;
    animation: fadeIn 0.6s var(--ease-out-expo);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes entranceFade {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-entrance {
    animation: entranceFade 0.8s var(--ease-out-expo) forwards;
}

.stagger-1 {
    animation-delay: 0.1s;
}

.stagger-2 {
    animation-delay: 0.2s;
}

.stagger-3 {
    animation-delay: 0.3s;
}

/* Form Elements */
.input-group {
    margin-bottom: 1.25rem;
}

.input-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
    font-size: 0.85rem;
}

input,
select {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    color: white;
    outline: none;
    transition: all 0.2s var(--ease-out-expo);
    font-size: 1rem;
    appearance: none;
}

select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.5)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.2rem;
    padding-right: 2.5rem;
    cursor: pointer;
}

input:focus,
select:focus {
    border-color: var(--primary);
    background-color: rgba(255, 255, 255, 0.08);
}

select option {
    background: #1c1c1e;
    color: white;
}

/* Data Usage Progress Bar */
.data-progress-bg {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    margin-top: 1rem;
    overflow: hidden;
    position: relative;
}

.data-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary) 0%, #00d4ff 100%);
    border-radius: 4px;
    transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 10px rgba(0, 113, 227, 0.4);
}

/* Responsive Queries */
@media (min-width: 768px) {
    .hero-section {
        flex-direction: row;
        text-align: left;
        padding-top: 6rem;
        gap: 4rem;
    }

    .hero-text h1 {
        font-size: 4.5rem;
    }

    .subtitle {
        margin-left: 0;
        font-size: 1.25rem;
    }

    .hero-btns {
        flex-direction: row;
    }

    .mobile-menu-toggle {
        display: none;
    }

    .nav-links {
        display: flex;
    }

    .plan-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sim-grid {
        grid-template-columns: 1fr;
    }

    .page {
        padding-top: 4rem;
    }
}

@media (min-width: 1024px) {
    .plan-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Footer */
footer {
    padding: 3rem 0;
    border-top: 0.5px solid var(--glass-border);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    background: rgba(0, 0, 0, 0.4);
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-partnership {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: 0.02em;
}

.footer-partnership-badge {
    background: rgba(0, 113, 227, 0.1);
    color: var(--primary);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-size: 0.7rem;
    text-transform: uppercase;
}

.footer-corporate {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    line-height: 1.6;
}

.footer-legal {
    margin-top: 0.5rem;
    font-size: 0.75rem;
    opacity: 0.6;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-legal a {
    color: inherit;
    text-decoration: none;
}

.footer-legal a:hover {
    color: var(--primary);
    text-decoration: underline;
}

@media (max-width: 640px) {
    footer {
        padding: 2.5rem 1rem;
    }
}

/* Invitation Section */
.invite-section {
    animation: slideUp 0.4s var(--ease-out-expo);
    border-left: 4px solid var(--primary);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#invite-qr {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s var(--ease-out-expo);
}

#invite-qr:hover {
    transform: scale(1.05);
}

/* Modal System */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    padding: 1.25rem;
    animation: fadeIn 0.3s var(--ease-out-expo);
}

.modal-content {
    width: 100%;
    max-width: 440px;
    padding: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: modalSlideUp 0.4s var(--ease-out-expo);
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Secondary Info Pages */
.container-small {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.btn-back {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 0.9rem;
    cursor: pointer;
    margin-bottom: 1.5rem;
    padding: 0.5rem 0;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-back:hover {
    color: var(--primary);
}

.btn-back-floating {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0.5rem;
    margin-left: -0.5rem;
    margin-bottom: 0.5rem;
    transition: all 0.2s var(--ease-out-expo);
    z-index: 100;
}

.btn-back-floating:hover {
    color: var(--primary);
    transform: translateX(-3px);
}

.btn-back-floating svg {
    width: 24px;
    height: 24px;
}

/* Custom Checkbox Styling */
.checkbox-container input[type="checkbox"] {
    appearance: none !important;
    -webkit-appearance: none !important;
    width: 16px !important;
    height: 16px !important;
    border: 1.5px solid var(--glass-border) !important;
    border-radius: 4px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    cursor: pointer !important;
    position: relative !important;
    transition: all 0.2s var(--ease-out-expo) !important;
    flex-shrink: 0 !important;
    margin-top: 0.15rem !important;
    padding: 0 !important;
    box-sizing: border-box !important;
}

.checkbox-container input[type="checkbox"]:checked {
    background: var(--primary);
    border-color: var(--primary);
}

.checkbox-container input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 1px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-container input[type="checkbox"]:focus {
    outline: none;
    box-shadow: 0 0 0 2px var(--primary-glow);
}

.checkbox-container:hover input[type="checkbox"] {
    border-color: var(--primary);
}

/* Legal Modal Adjustments */
#legal-modal-body h3 {
    font-size: 1.1rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-main);
}

#legal-modal-body p {
    margin-bottom: 1rem;
}

#legal-modal-body ul {
    padding-left: 1.25rem;
    margin-bottom: 1.5rem;
}

#legal-modal-body li {
    margin-bottom: 0.5rem;
}

#legal-modal-body::-webkit-scrollbar {
    width: 4px;
}

#legal-modal-body::-webkit-scrollbar-track {
    background: transparent;
}

#legal-modal-body::-webkit-scrollbar-thumb {
    background: var(--glass-border);
    border-radius: 10px;
}

.info-page h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.info-content {
    line-height: 1.8;
    color: var(--text-main);
    max-height: 65vh;
    overflow-y: auto;
    padding-right: 1rem;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) transparent;
}

.info-content::-webkit-scrollbar {
    width: 4px;
}

.info-content::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

.info-content h3 {
    font-size: 1.1rem;
    margin: 2rem 0 0.75rem 0;
    color: var(--primary);
}

.info-content p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.lang-block {
    border-bottom: 1px solid var(--glass-border);
    padding: 2rem 0;
}

.lang-block:last-child {
    border-bottom: none;
}

.lang-label {
    display: inline-block;
    background: rgba(var(--primary-rgb, 0, 113, 227), 0.1);
    color: var(--primary);
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(0.95);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.05);
        opacity: 1;
    }

    100% {
        transform: scale(0.95);
        opacity: 0.5;
    }
}

.pulse {
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.rotating {
    animation: spin 1s linear infinite;
}

@media (max-width: 480px) {
    * {
        box-sizing: border-box !important;
    }

    html,
    body {
        overflow-x: hidden !important;
        width: 100% !important;
        position: relative;
    }

    .container {
        padding: 0 1rem;
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden;
    }

    header {
        height: auto;
        min-height: 56px;
        padding-top: env(safe-area-inset-top, 0px);
    }

    .nav-links.mobile-active {
        top: 0;
        height: 100vh;
        z-index: 2000;
        padding-top: calc(80px + env(safe-area-inset-top, 0px));
        padding-bottom: env(safe-area-inset-bottom, 20px);
    }

    .hero-section {
        padding-top: 1rem;
        padding-bottom: 2rem;
        min-height: auto !important;
        width: 100% !important;
        overflow-x: hidden;
    }

    .page {
        padding-top: 0.75rem !important;
        padding-bottom: 2rem !important;
    }

    .hero-text {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 auto !important;
    }

    .hero-text h1 {
        font-size: clamp(1.8rem, 8vw, 2.2rem) !important;
        margin-bottom: 0.75rem;
        width: 100% !important;
        max-width: 100% !important;
        overflow-wrap: break-word;
        line-height: 1.1;
    }

    .feature-grid {
        grid-template-columns: 1fr !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        gap: 0.75rem !important;
        margin: 1.5rem 0 !important;
    }

    .orders-grid {
        padding: 0 0.25rem !important;
        width: 100% !important;
    }

    .orders-grid .glass-card {
        padding: 1.25rem 1rem !important;
    }

    .feature-pill {
        width: 100% !important;
        min-width: 0 !important;
        min-height: auto !important;
        padding: 1rem !important;
    }

    .hero-btns {
        width: 100% !important;
        max-width: 280px !important;
        padding: 0 !important;
        margin: 1.5rem auto !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 0.75rem !important;
    }

    .checkout-container {
        margin-top: 0.5rem !important;
        margin-bottom: 1.5rem !important;
    }

    .hero-btns .btn {
        width: 100% !important;
        margin: 0 !important;
    }

    .hero-image-container {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        margin-top: 1rem !important;
    }

    .tech-card-bg {
        width: 260px !important;
        height: 160px !important;
        transform: rotateX(5deg) rotateY(-5deg) scale(0.9) !important;
        margin: 0 auto !important;
    }

    #auth-nav {
        display: none !important;
    }

    #auth-nav-mobile {
        display: block !important;
    }

    .dashboard-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        width: 100%;
    }

    .dashboard-header .btn {
        width: 100%;
        white-space: nowrap !important;
        font-size: 0.9rem !important;
    }

    .usage-stats-container div[style*="display: grid; grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }

    .modal-content {
        max-width: 95% !important;
        padding: 1.5rem !important;
        margin: 0 auto;
    }

    .qr-image,
    #modal-invite-qr {
        width: 150px !important;
        height: 150px !important;
    }

    /* SIM Details Specific Mobile Adjustments */
    .sim-details-grid {
        grid-template-columns: 1fr !important;
        gap: 1.25rem !important;
        text-align: center !important;
    }

    .sim-details-column {
        border-left: none !important;
        padding-left: 0 !important;
        align-items: center !important;
    }

    .sim-details-actions {
        grid-template-columns: 1fr !important;
        gap: 1.25rem !important;
        margin-top: 0.5rem !important;
    }

    .sim-details-action-group {
        flex-direction: column !important;
        align-items: center !important;
        gap: 0.75rem !important;
        border-left: none !important;
        padding-left: 0 !important;
        padding-top: 1.25rem !important;
        border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
    }

    .sim-details-action-group .btn {
        width: 100% !important;
        max-width: 280px !important;
        margin: 0 auto !important;
    }

    .sim-details-action-group span {
        font-size: 0.75rem !important;
        opacity: 0.8;
    }

    .detail-card h2 {
        font-size: 1.6rem !important;
        text-align: center;
    }

    .detail-card .badge-status {
        margin: 0;
    }
}

/* Base SIM details classes */
.sim-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.sim-stat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    transition: transform 0.2s ease;
}

.sim-stat-card:hover {
    background: rgba(255, 255, 255, 0.05);
}

.sim-stat-label {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.8;
}

.sim-stat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    width: 100%;
}

.sim-stat-info {
    display: flex;
    align-items: baseline;
    gap: 0.6rem;
}

.sim-stat-value {
    color: var(--text-main);
    font-weight: 800;
    font-size: 1.15rem;
}

.sim-stat-value.large {
    font-size: 1.75rem;
}

.sim-stat-value.medium {
    font-size: 1.15rem;
    font-family: 'JetBrains Mono', monospace;
}

.sim-details-actions {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 1rem;
}

.sim-action-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    padding: 0.75rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.sim-action-info {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.sim-action-label {
    font-size: 0.65rem;
    color: var(--text-muted);
    font-weight: 600;
}

.sim-action-status {
    font-size: 0.8rem;
    color: var(--text-main);
    font-weight: 700;
}

.action-btn-sm {
    padding: 0.5rem 1rem !important;
    font-size: 0.8rem !important;
    font-weight: 700 !important;
    border-radius: 8px !important;
    white-space: nowrap;
}

/* Mobile overrides */
@media (max-width: 480px) {
    .sim-stats-grid {
        grid-template-columns: 1fr !important;
    }

    .sim-stat-card {
        padding: 1.25rem 1rem !important;
        align-items: flex-start !important;
        text-align: left !important;
        gap: 0.6rem !important;
    }

    .sim-stat-header {
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
    }

    .sim-stat-info {
        flex: 1;
        min-width: 140px;
        display: flex;
        align-items: baseline;
        gap: 0.5rem;
    }

    .sim-stat-card .btn {
        margin-top: 0.2rem !important;
        width: auto !important;
        min-width: 80px;
    }

    .sim-stat-label {
        font-size: 0.65rem !important;
        white-space: nowrap;
    }

    .sim-stat-value {
        font-size: 1.1rem !important;
    }
}

/* Payment Methods */
.payment-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.pay-method-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s var(--ease-out-expo);
    min-height: 80px;
    overflow: hidden;
    position: relative;
}

.pay-method-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.3);
}

.pay-method-card.active {
    background: rgba(var(--primary-rgb), 0.2);
    border-color: var(--primary);
    border-width: 2px;
    box-shadow: 0 10px 30px rgba(var(--primary-rgb), 0.3),
        inset 0 0 20px rgba(var(--primary-rgb), 0.1);
}

.pay-method-card img {
    height: 42px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    opacity: 0.85;
    transition: all 0.3s var(--ease-out-expo);
    pointer-events: none;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
}

.pay-method-label {
    font-size: 0.95rem;
    font-weight: 600;
    opacity: 0.9;
    color: var(--text-main);
}

.pay-method-card.active img {
    opacity: 1;
    transform: scale(1.1);
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.4));
}

/* Glass highlight for interactive feel */
.pay-method-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

@media (min-width: 992px) {
    .payment-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
    }

    .pay-method-card {
        flex-direction: column;
        padding: 1.5rem 0.5rem;
        min-height: 130px;
        text-align: center;
    }

    .pay-method-card img {
        height: 48px;
        max-width: 90%;
    }

    .pay-method-label {
        font-size: 0.85rem;
        margin-top: 0.25rem;
    }
}

/* Utilities */
@media (max-width: 768px) {
    .pay-method-card {
        padding: 0.85rem 1.25rem;
        min-height: 70px;
        gap: 1rem;
    }

    .pay-method-card img {
        height: 32px;
    }

    .pay-method-label {
        font-size: 0.9rem;
    }

    .hide-mobile {
        display: none !important;
    }
}

/* Toast Notification */
.toast {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: rgba(0, 113, 227, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 99px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 9999;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s var(--ease-out-expo), opacity 0.4s;
    opacity: 0;
    pointer-events: none;
    white-space: nowrap;
}

.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

/* Pulse Dot Animation for payment sync */
.pulse-dot {
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    margin-right: 6px;
    animation: dotPulse 1.5s infinite ease-in-out;
}

@keyframes dotPulse {
    0% {
        transform: scale(0.8);
        opacity: 0.5;
        box-shadow: 0 0 0 0 rgba(0, 113, 227, 0.7);
    }

    50% {
        transform: scale(1.2);
        opacity: 1;
        box-shadow: 0 0 0 6px rgba(0, 113, 227, 0);
    }

    100% {
        transform: scale(0.8);
        opacity: 0.5;
        box-shadow: 0 0 0 0 rgba(0, 113, 227, 0);
    }
}

#payment-qr-modal .modal-content {
    animation: modalSlideUp 0.5s var(--ease-out-expo);
}

@keyframes modalSlideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Payment Modal Premium Enhancements */
.pulse-dot {
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(0, 113, 227, 0.7);
    animation: pulse-dot-key 1.5s infinite;
}

@keyframes pulse-dot-key {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 113, 227, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(0, 113, 227, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 113, 227, 0);
    }
}