:root {
    --bg-color: #f8fafc; --text-color: #1e293b; --text-muted: #475569;
    --card-bg: #ffffff; --card-border: #e2e8f0; --item-bg: #f8fafc;
    --item-border: #cbd5e1; --neon-box-bg: #090d16; --neon-box-text: #ffffff;
    --neon-shadow: rgba(0, 198, 255, 0.3); --btn-gradient: linear-gradient(135deg, #0072ff, #00c6ff);
    --support-bg: #ffffff; --footer-text: #64748b;
}
body.dark-mode {
    --bg-color: #070b14; --text-color: #f1f5f9; --text-muted: #94a3b8;
    --card-bg: #0f172a; --card-border: #1e293b; --item-bg: #090d16;
    --item-border: #1e293b; --neon-box-bg: #090d16; --neon-box-text: #38bdf8;
    --neon-shadow: rgba(56, 189, 248, 0.4); --btn-gradient: linear-gradient(135deg, #3b82f6, #8b5cf6);
    --support-bg: #0f172a; --footer-text: #94a3b8;
}

* { box-sizing: border-box; transition: background-color 0.4s ease, color 0.4s ease, border-color 0.4s ease; }
body { 
    background-color: var(--bg-color); font-family: 'Vazirmatn', sans-serif; margin: 0; padding: 0; 
    display: flex; flex-direction: column; align-items: center; min-height: 100vh; color: var(--text-color); 
    overflow-x: hidden; position: relative;
}

/* افکت شفق پس‌زمینه برای بازتاب شیشه‌ای */
body::before, body::after {
    content: ""; position: fixed; border-radius: 50%; pointer-events: none; z-index: -3;
    filter: blur(90px); opacity: 0.35; animation: nebulaFloat 14s infinite alternate ease-in-out;
}
body::before { width: 350px; height: 350px; background: rgba(56, 189, 248, 0.4); top: 5%; left: 10%; }
body::after { width: 400px; height: 400px; background: rgba(168, 85, 247, 0.3); bottom: 10%; right: 10%; animation-delay: -6s; }

/* کلید انیمیشن‌های اصلی */
@keyframes rotateNeon { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes glassShine { 0% { left: -150%; } 30% { left: 200%; } 100% { left: 200%; } }
@keyframes nebulaFloat {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(40px, -30px) scale(1.15); }
    100% { transform: translate(-30px, 40px) scale(0.9); }
}
@keyframes headerGlowPulse {
    0%, 100% { box-shadow: 0 0 25px rgba(0, 198, 255, 0.35), 0 0 60px rgba(139, 92, 246, 0.2); }
    50% { box-shadow: 0 0 45px rgba(0, 198, 255, 0.75), 0 0 85px rgba(236, 72, 153, 0.45); }
}
@keyframes textShimmer { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
@keyframes pulseDot { 0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); } 70% { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); } 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); } }
@keyframes toastIn { from { transform: translateY(100px) scale(0.9); opacity: 0; } to { transform: translateY(0) scale(1); opacity: 1; } }
@keyframes toastOut { from { transform: translateY(0) scale(1); opacity: 1; } to { transform: translateY(50px) scale(0.9); opacity: 0; } }
@keyframes spinGlobeSmooth { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
@keyframes auroraWave { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
@keyframes floatShapes {
    0% { transform: translateY(0px) rotate(0deg); opacity: 0.35; }
    50% { transform: translateY(-12px) rotate(180deg); opacity: 0.8; }
    100% { transform: translateY(0px) rotate(360deg); opacity: 0.35; }
}
@keyframes floatOrbitCircles {
    0% { transform: translate(0, 0) scale(0.8); }
    50% { transform: translate(25px, -15px) scale(1.2); }
    100% { transform: translate(0, 0) scale(0.8); }
}

@keyframes pulseGreenCard {
    0% { border-color: rgba(16, 185, 129, 0.4); box-shadow: 0 0 8px rgba(16, 185, 129, 0.25); }
    100% { border-color: #10b981; box-shadow: 0 0 20px rgba(16, 185, 129, 0.75); }
}
@keyframes pulseGoldCard {
    0% { border-color: rgba(245, 158, 11, 0.4); box-shadow: 0 0 8px rgba(245, 158, 11, 0.25); }
    100% { border-color: #f59e0b; box-shadow: 0 0 20px rgba(245, 158, 11, 0.75); }
}
@keyframes pulseRedCard {
    0% { border-color: rgba(239, 68, 68, 0.4); box-shadow: 0 0 10px rgba(239, 68, 68, 0.3); }
    100% { border-color: #ef4444; box-shadow: 0 0 25px rgba(239, 68, 68, 0.9); }
}
@keyframes goldPulseBg {
    0%, 100% { box-shadow: 0 0 12px rgba(251, 191, 36, 0.2); background: rgba(251, 191, 36, 0.04); }
    50% { box-shadow: 0 0 24px rgba(251, 191, 36, 0.6); background: rgba(251, 191, 36, 0.22); }
}

.header-actions { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 15px 20px 10px; max-width: 900px; margin: 0 auto; }

/* دکمه تم کپسولی */
.theme-switch-wrapper {
    position: relative; width: 76px; height: 38px; background: #090e1a; border-radius: 40px; cursor: pointer;
    border: 2px solid rgba(56, 189, 248, 0.4); box-shadow: 0 4px 15px rgba(0, 0, 0, 0.35), inset 0 2px 6px rgba(0,0,0,0.6);
    overflow: hidden; display: flex; align-items: center; padding: 3px; transition: all 0.4s ease; user-select: none;
}
body:not(.dark-mode) .theme-switch-wrapper { background: linear-gradient(135deg, #38bdf8, #60a5fa); border-color: #38bdf8; box-shadow: 0 4px 15px rgba(56, 189, 248, 0.35); }
.theme-stars-container { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; transition: opacity 0.4s ease; }
body:not(.dark-mode) .theme-stars-container { opacity: 0; }
.theme-star { position: absolute; color: #ffffff; font-size: 8px; animation: starBlink 2s infinite ease-in-out alternate; }
.theme-star.s1 { top: 7px; right: 14px; font-size: 11px; } .theme-star.s2 { top: 20px; right: 26px; font-size: 7px; animation-delay: 0.6s; } .theme-star.s3 { top: 8px; right: 38px; font-size: 9px; animation-delay: 1.2s; }
@keyframes starBlink { 0% { opacity: 0.2; transform: scale(0.8); } 100% { opacity: 1; transform: scale(1.15); filter: drop-shadow(0 0 3px #fff); } }
.theme-cloud { position: absolute; left: 10px; bottom: 4px; color: rgba(255, 255, 255, 0.9); font-size: 14px; opacity: 0; transform: translateY(10px); transition: all 0.4s ease; }
body:not(.dark-mode) .theme-cloud { opacity: 1; transform: translateY(0); }
.theme-knob { width: 30px; height: 30px; border-radius: 50%; background: #ffffff; position: relative; transform: translateX(0); transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55), background-color 0.4s ease; box-shadow: 0 2px 8px rgba(0,0,0,0.4); display: flex; align-items: center; justify-content: center; z-index: 2; }
body.dark-mode .theme-knob { transform: translateX(-38px); background: #e2e8f0; box-shadow: 0 0 12px rgba(255,255,255,0.7), inset -2px -2px 4px rgba(0,0,0,0.25); }
.moon-craters { position: absolute; inset: 0; border-radius: 50%; opacity: 0; transition: opacity 0.3s; }
body.dark-mode .moon-craters { opacity: 1; }
.crater { position: absolute; background: #94a3b8; border-radius: 50%; }
.crater.c1 { width: 7px; height: 7px; top: 6px; left: 6px; } .crater.c2 { width: 5px; height: 5px; bottom: 6px; left: 10px; } .crater.c3 { width: 4px; height: 4px; top: 12px; right: 7px; }
.sun-rays { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: #f59e0b; font-size: 19px; opacity: 1; transition: opacity 0.3s; }
body.dark-mode .sun-rays { opacity: 0; }

/* دکمه ورود شیشه‌ای سبز سایبری */
@keyframes borderGlowGreen {
    0%, 100% { box-shadow: 0 0 14px rgba(16, 185, 129, 0.35); border-color: #10b981; }
    50% { box-shadow: 0 0 28px rgba(52, 211, 153, 0.7); border-color: #34d399; }
}
.btn-dashboard {
    position: relative; overflow: hidden;
    background: rgba(16, 185, 129, 0.12);
    backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    border: 1.5px solid #10b981; color: #10b981; padding: 10px 22px; border-radius: 14px; font-weight: 900;
    text-decoration: none; display: flex; align-items: center; gap: 8px;
    animation: borderGlowGreen 3s ease-in-out infinite; transition: all 0.3s ease; font-size: 14px; z-index: 1;
}
body.dark-mode .btn-dashboard { color: #34d399; } body:not(.dark-mode) .btn-dashboard { color: #047857; }
.btn-dashboard::before {
    content: ""; position: absolute; top: 0; left: -150%; width: 50%; height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.5) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg); animation: glassShine 3.5s infinite linear; z-index: -1;
}
.btn-dashboard:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5); background: rgba(16, 185, 129, 0.22); color: #ffffff; }

/* هدر سایت */
.site-header { width: 100%; display: flex; flex-direction: column; align-items: center; padding-top: 8px; }
.smooth-welcome-box {
    position: relative; margin: 0 auto 20px; padding: 3px; border-radius: 22px; overflow: hidden;
    display: inline-flex; animation: headerGlowPulse 4s infinite alternate ease-in-out; z-index: 1;
}
.smooth-welcome-box::before {
    content: ""; position: absolute; top: -100%; left: -100%; width: 300%; height: 300%;
    background: conic-gradient(#00f0ff 0deg, #7000ff 60deg, #ff007b 120deg, #ff9900 180deg, #00ff66 240deg, #00f0ff 300deg, #7000ff 360deg);
    animation: rotateNeon 3s linear infinite; will-change: transform; z-index: -2;
}
.smooth-welcome-box::after { content: ""; position: absolute; inset: 3px; background: var(--card-bg); border-radius: 19px; z-index: -1; }
.welcome-text {
    position: relative; z-index: 1; padding: 14px 34px; font-size: 18px; font-weight: 900;
    background: linear-gradient(135deg, #00c6ff, #0072ff, #a855f7, #ec4899);
    background-size: 300% 300%; -webkit-background-clip: text; background-clip: text;
    color: transparent; animation: textShimmer 4s ease infinite; letter-spacing: 0.6px;
}

/* وضعیت پینگ */
.live-ping-container {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-bottom: 20px;
    background: rgba(15, 23, 42, 0.05); padding: 9px 22px; border-radius: 30px;
    border: 1px solid var(--card-border); backdrop-filter: blur(10px);
}
body.dark-mode .live-ping-container { background: rgba(255, 255, 255, 0.04); }
.ping-item { display: flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 800; color: var(--text-color); }
.ping-dot { width: 8px; height: 8px; background-color: #22c55e; border-radius: 50%; animation: pulseDot 1.5s infinite; }
.ping-value { color: #0284c7; font-family: monospace; font-size: 13.5px; font-weight: bold; width: 44px; text-align: left; }
body.dark-mode .ping-value { color: #38bdf8; }

.date-box { margin: -10px auto 14px; padding: 10px 22px; border: 1px solid var(--card-border); background: var(--card-bg); border-radius: 13px; color: var(--text-color); font-size: 15px; font-weight: 800; box-shadow: 0 5px 18px rgba(0,0,0,0.06); width: fit-content; direction: rtl; }
.date-label { margin-left: 8px; color: var(--text-muted); }
#persian-date { direction: ltr; display: inline-block; letter-spacing: .4px; }

.site-qr-box { background: var(--card-bg); border: 2px solid var(--card-border); border-radius: 20px; padding: 15px; margin: 10px auto 20px; text-align: center; max-width: 250px; box-shadow: 0 8px 25px rgba(0,0,0,0.05); transition: transform 0.3s; }
.site-qr-box:hover { transform: translateY(-5px); }
.site-qr-box img { width: 100%; height: auto; border-radius: 12px; }
.site-qr-text { font-size: 13px; font-weight: 800; color: var(--text-muted); margin-top: 10px; }

/* کارت رزرو تبلیغات */
.spot-reserve-card { direction: rtl; border: 2px dashed rgba(56, 189, 248, 0.5); border-radius: 18px; background: rgba(56, 189, 248, 0.05); padding: 18px 24px; margin: 0 auto 20px; width: 100%; max-width: 760px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; transition: all 0.3s ease; }
body.dark-mode .spot-reserve-card { background: rgba(15, 23, 42, 0.6); border-color: rgba(56, 189, 248, 0.35); }
.spot-reserve-card:hover { border-color: #38bdf8; transform: translateY(-2px); }
.spot-info { display: flex; flex-direction: column; gap: 5px; text-align: right; }
.spot-badge { align-self: flex-start; font-size: 0.75rem; font-weight: 900; color: #f59e0b; background: rgba(245, 158, 11, 0.12); border: 1px solid rgba(245, 158, 11, 0.35); padding: 3px 12px; border-radius: 14px; }
.spot-title { margin: 0; font-size: 1.05rem; font-weight: 900; color: var(--text-color); }
.spot-desc { margin: 0; font-size: 0.85rem; color: var(--text-muted); font-weight: 600; }
.spot-action-btn { 
    position: relative; overflow: hidden;
    text-decoration: none; font-size: 0.9rem; font-weight: 900; color: #0f172a; 
    background: linear-gradient(135deg, #38bdf8, #0ea5e9); padding: 10px 22px; 
    border-radius: 14px; display: inline-flex; align-items: center; gap: 6px; 
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.35); backdrop-filter: blur(8px);
}
.spot-action-btn:hover { transform: translateY(-2px) scale(1.03); box-shadow: 0 6px 20px rgba(14, 165, 233, 0.55); color: #ffffff; }

/* کافی نت */
.cn-service-card { direction: rtl; background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 20px; padding: 22px; margin: 0 auto 20px; width: 100%; max-width: 760px; position: relative; overflow: hidden; transition: all 0.3s ease; }
body.dark-mode .cn-service-card { background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%); border-color: rgba(255, 255, 255, 0.1); }
.cn-service-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, #38bdf8, #818cf8, #c084fc); }
.cn-close-btn { position: absolute; top: 14px; left: 14px; width: 28px; height: 28px; border-radius: 50%; background: rgba(0,0,0,0.06); border: 1px solid var(--card-border); color: var(--text-muted); cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 900; transition: all 0.2s ease; z-index: 5; }
body.dark-mode .cn-close-btn { background: rgba(255,255,255,0.1); color: #94a3b8; }
.cn-close-btn:hover { background: #ef4444; color: #fff; border-color: #ef4444; transform: rotate(90deg); }
.cn-header { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; margin-bottom: 14px; padding-left: 35px; }
.cn-badge { background: rgba(56, 189, 248, 0.15); color: #0284c7; border: 1px solid rgba(56, 189, 248, 0.3); font-size: 0.8rem; padding: 4px 12px; border-radius: 20px; font-weight: bold; }
body.dark-mode .cn-badge { color: #38bdf8; }
.cn-title { margin: 0; font-size: 1.15rem; font-weight: 900; color: var(--text-color); }
.cn-description { margin: 0 0 16px 0; font-size: 0.92rem; line-height: 1.8; color: var(--text-muted); font-weight: 600; text-align: right; }
.cn-features { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 10px; padding: 0; margin: 0 0 18px 0; list-style: none; }
.cn-features li { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; color: var(--text-muted); font-weight: 700; text-align: right; }
.cn-check-icon { display: inline-flex; justify-content: center; align-items: center; width: 20px; height: 20px; background-color: #22c55e; color: #ffffff; border-radius: 50%; font-size: 11px; flex-shrink: 0; }
.cn-footer { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; padding-top: 14px; border-top: 1px solid var(--card-border); }
.cn-contact-hint { font-size: 0.85rem; color: var(--text-muted); font-weight: bold; }
.cn-btn-group { display: flex; gap: 10px; flex-wrap: wrap; }
.cn-btn { text-decoration: none; font-size: 0.88rem; font-weight: 800; padding: 9px 18px; border-radius: 10px; transition: all 0.2s ease; display: inline-flex; align-items: center; gap: 8px; }
.cn-btn-rubika { background: #ff5a00; color: #ffffff; box-shadow: 0 4px 12px rgba(255, 90, 0, 0.3); }
.cn-btn-rubika:hover { background: #e04f00; transform: translateY(-2px); }
.cn-btn-secondary { background: var(--item-bg); color: var(--text-color); border: 1.5px solid var(--card-border); }
.cn-btn-secondary:hover { border-color: #0284c7; transform: translateY(-2px); }

/* بنر تلگرام */
.channel-banner-box { width: 100%; max-width: 760px; margin: 0 auto 25px; }
.channel-banner-link {
    position: relative; display: flex; align-items: center; justify-content: space-between; gap: 12px;
    padding: 12px 18px; border-radius: 18px; text-decoration: none;
    background: linear-gradient(135deg, rgba(2, 132, 199, 0.15), rgba(56, 189, 248, 0.08));
    border: 1.5px solid rgba(56, 189, 248, 0.5); backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(2, 132, 199, 0.25); transition: all 0.3s ease; overflow: hidden;
}
.channel-banner-link:hover { transform: translateY(-2px); border-color: #38bdf8; box-shadow: 0 0 30px rgba(56, 189, 248, 0.5); }
.channel-icon-circle { width: 42px; height: 42px; border-radius: 14px; background: linear-gradient(135deg, #0284c7, #38bdf8); display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: 0 4px 12px rgba(2, 132, 199, 0.4); }
.channel-icon-circle svg { width: 22px; height: 22px; fill: #ffffff; }
.channel-info-text { text-align: right; flex: 1; }
.channel-title { display: block; font-size: 14px; font-weight: 900; color: #38bdf8; }
.channel-desc { display: block; font-size: 11.5px; font-weight: 600; color: var(--text-muted); margin-top: 2px; }
.channel-action-badge { font-size: 12px; font-weight: 900; background: #0284c7; color: #fff; padding: 6px 14px; border-radius: 10px; white-space: nowrap; }

/* اطلاعیه سایت */
.site-notice-container { width: 100%; max-width: 650px; margin: 0 auto 20px; }
.site-notice-card { background: rgba(245, 158, 11, 0.1); border: 1.5px solid rgba(245, 158, 11, 0.6); border-radius: 16px; padding: 12px 18px; text-align: right; box-shadow: 0 0 20px rgba(245, 158, 11, 0.2); animation: goldPulseBg 3s infinite ease-in-out; }
.notice-badge { display: inline-block; background: #f59e0b; color: #000; font-size: 11px; font-weight: 900; padding: 2px 8px; border-radius: 6px; margin-bottom: 6px; }
.notice-text { font-size: 13px; font-weight: 700; color: var(--text-color); margin: 0; line-height: 1.8; }

.container { text-align: center; width: 95%; max-width: 900px; flex: 1; }

/* دکمه مشاهده پلن‌ها (اشکال متحرک داخلی + امواج آرورا) */
.cyber-action-trigger {
    position: relative; width: 100%; padding: 20px 24px; font-size: 18.5px;
    font-family: 'Vazirmatn', sans-serif; font-weight: 900; border-radius: 20px;
    cursor: pointer; margin-bottom: 18px; display: flex; align-items: center;
    justify-content: space-between; color: #ffffff; border: 1.8px solid rgba(56, 189, 248, 0.5);
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.3), rgba(99, 102, 241, 0.3), rgba(236, 72, 153, 0.3));
    background-size: 300% 300%; animation: auroraWave 6s ease infinite;
    backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 10px 35px rgba(14, 165, 233, 0.25), inset 0 0 20px rgba(255, 255, 255, 0.15);
    overflow: hidden; isolation: isolate; transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
body:not(.dark-mode) .cyber-action-trigger {
    color: #0f172a; border-color: rgba(2, 132, 199, 0.4);
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.2), rgba(168, 85, 247, 0.2), rgba(244, 114, 182, 0.2));
    background-size: 300% 300%; box-shadow: 0 10px 30px rgba(2, 132, 199, 0.18);
}
.cyber-action-trigger:hover {
    transform: translateY(-3px) scale(1.01); border-color: #38bdf8;
    box-shadow: 0 15px 45px rgba(56, 189, 248, 0.4), inset 0 0 25px rgba(255, 255, 255, 0.25);
}
.floating-particles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: -1; }
.particle-shape {
    position: absolute; width: 14px; height: 14px; border: 1.5px solid rgba(56, 189, 248, 0.5);
    border-radius: 4px; animation: floatShapes 4s ease-in-out infinite alternate;
}
.particle-shape.p1 { top: 20%; left: 15%; animation-delay: 0s; }
.particle-shape.p2 { top: 60%; right: 25%; border-radius: 50%; border-color: rgba(236, 72, 153, 0.5); animation-delay: 1.2s; }
.particle-shape.p3 { top: 30%; right: 50%; width: 10px; height: 10px; border-color: rgba(250, 204, 21, 0.5); animation-delay: 2.1s; }

/* سوئیچ کپسولی سرویس‌ها */
.plans-tab-wrapper {
    display: inline-flex; align-items: center; background: rgba(15, 23, 42, 0.06);
    border: 1.5px solid rgba(56, 189, 248, 0.25); padding: 6px; border-radius: 22px;
    margin: 22px auto 28px; box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(14px); max-width: 100%; position: relative;
}
body.dark-mode .plans-tab-wrapper {
    background: rgba(15, 23, 42, 0.85); border-color: rgba(56, 189, 248, 0.35);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.5), inset 0 0 15px rgba(56, 189, 248, 0.1);
}
.plan-tab-btn {
    background: transparent; border: none; color: var(--text-muted);
    padding: 12px 24px; border-radius: 16px; font-size: 15px; font-weight: 900;
    font-family: inherit; cursor: pointer; transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex; align-items: center; gap: 8px; user-select: none; position: relative; z-index: 1;
}
.plan-tab-btn.active {
    color: #ffffff !important;
    background: linear-gradient(135deg, #0284c7 0%, #38bdf8 50%, #818cf8 100%);
    background-size: 200% 200%; animation: auroraWave 4s ease infinite;
    box-shadow: 0 6px 20px rgba(2, 132, 199, 0.45); transform: scale(1.02);
}

.plans-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; margin-bottom: 25px; }

/* کارت پلن */
.plan-card {
    background: var(--item-bg); border: 2px solid var(--card-border); padding: 25px 20px;
    border-radius: 20px; text-align: center; position: relative; overflow: hidden; transition: transform 0.3s;
}
.plan-card:hover { transform: translateY(-5px); }

.neon-green { border: 2px solid #10b981 !important; animation: pulseGreenCard 2.4s infinite alternate ease-in-out; }
.neon-green .location-badge { background: rgba(16, 185, 129, 0.1); color: #10b981; border: 1px solid rgba(16, 185, 129, 0.5); box-shadow: 0 0 12px rgba(16, 185, 129, 0.3); }

.neon-gold { border: 2px solid #f59e0b !important; animation: pulseGoldCard 2.4s infinite alternate ease-in-out; }
.neon-gold .location-badge { background: rgba(245, 158, 11, 0.1); color: #f59e0b; border: 1px solid rgba(245, 158, 11, 0.5); box-shadow: 0 0 12px rgba(245, 158, 11, 0.3); }

.neon-red { border: 2px solid #ef4444 !important; animation: pulseRedCard 2.2s infinite alternate ease-in-out; }
.neon-red .location-badge { background: rgba(239, 68, 68, 0.1); color: #ef4444; border: 1px solid rgba(239, 68, 68, 0.5); box-shadow: 0 0 12px rgba(239, 68, 68, 0.3); }

.plan-badge { position: absolute; top: 15px; right: -35px; padding: 5px 35px; transform: rotate(45deg); font-size: 12px; font-weight: 900; color: white; box-shadow: 0 2px 10px rgba(0,0,0,0.2); }

/* بج ۷ لوکیشن با کره زمین چرخنده */
.location-badge {
    display: inline-flex; align-items: center; justify-content: center; gap: 7px;
    padding: 5px 14px; border-radius: 20px; font-size: 12.5px; font-weight: 900;
    margin-top: 10px; letter-spacing: 0.5px; transition: all 0.3s ease;
    cursor: pointer; user-select: none; position: relative;
}
.globe-icon-spin { display: inline-block; animation: spinGlobeSmooth 9s linear infinite; filter: drop-shadow(0 0 4px rgba(56, 189, 248, 0.6)); }

/* پاپ‌آپ ۷ لوکیشن */
#locationGlobalPopup {
    position: fixed; z-index: 99999; width: 330px;
    background: rgba(15, 23, 42, 0.94); color: #f8fafc;
    border: 1.8px solid #00c6ff; border-radius: 22px; padding: 18px 20px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9), 0 0 25px rgba(0, 198, 255, 0.3);
    font-size: 12.5px; line-height: 1.85; text-align: right;
    pointer-events: none; opacity: 0; transform: scale(0.92) translateY(10px);
    transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1), transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
}
#locationGlobalPopup.active { opacity: 1; transform: scale(1) translateY(0); pointer-events: auto; }
.popup-header-title {
    font-weight: 900; color: #38bdf8; border-bottom: 1.5px solid rgba(56, 189, 248, 0.3);
    padding-bottom: 8px; margin-bottom: 10px; font-size: 13.5px;
}
.loc-row { padding: 4px 6px; border-radius: 8px; transition: background 0.2s; }
.loc-row:hover { background: rgba(56, 189, 248, 0.12); }

.plan-price { font-size: 26px; font-weight: 900; margin: 15px 0; color: var(--text-color); letter-spacing: 1px;}
.plan-code { color: var(--text-muted); font-size: 13px; margin-bottom: 20px; font-weight: bold; background: rgba(0,0,0,0.05); padding: 5px; border-radius: 8px;}

/* ================= دکمه خرید طلایی شیشه‌ای با اشکال شناور داخلی ================= */
.btn-buy:not(.btn-disabled) {
    position: relative; overflow: hidden;
    background: rgba(251, 191, 36, 0.15) !important;
    backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    border: 1.5px solid #fbbf24 !important; color: #fbbf24 !important;
    padding: 13px; width: 100%; border-radius: 14px; font-weight: 900; cursor: pointer;
    text-decoration: none; display: inline-block; transition: all 0.35s ease;
    box-shadow: 0 4px 18px rgba(251, 191, 36, 0.25) !important; text-shadow: 0 1px 5px rgba(0,0,0,0.5); z-index: 1;
}
/* حباب‌های نوری شناور داخلی */
.btn-buy:not(.btn-disabled)::after {
    content: ""; position: absolute; inset: 0; pointer-events: none;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(251, 191, 36, 0.45) 0%, transparent 22%),
        radial-gradient(circle at 80% 70%, rgba(245, 158, 11, 0.4) 0%, transparent 25%),
        radial-gradient(circle at 50% 50%, rgba(254, 240, 138, 0.3) 0%, transparent 18%);
    background-size: 160% 160%;
    animation: floatOrbitCircles 5s infinite alternate ease-in-out;
    z-index: -1;
}
.btn-buy:not(.btn-disabled)::before {
    content: ""; position: absolute; top: 0; left: -150%; width: 50%; height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.45) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg); animation: glassShine 3.5s infinite linear; z-index: -1;
}
.btn-buy:not(.btn-disabled):hover {
    background: rgba(251, 191, 36, 0.92) !important; color: #000000 !important;
    text-shadow: none; transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.6) !important;
}
body:not(.dark-mode) .btn-buy:not(.btn-disabled) { color: #b45309 !important; text-shadow: none; background: rgba(251, 191, 36, 0.25) !important; }

.btn-disabled {
    background: rgba(239, 68, 68, 0.08) !important; color: #ef4444 !important;
    border: 1.5px solid rgba(239, 68, 68, 0.6) !important; padding: 12px; width: 100%;
    border-radius: 12px; font-weight: 900; cursor: not-allowed !important;
    pointer-events: none !important; display: inline-block;
}

.payment-box { background: var(--item-bg); border: 1px solid var(--card-border); border-radius: 18px; padding: 25px; display: flex; flex-direction: column; gap: 30px; margin-bottom: 15px; box-shadow: 0 5px 15px rgba(0,0,0,0.03); text-align: right; }
@media (min-width: 768px) { .payment-box { flex-direction: row; align-items: center; } .payment-box > div { flex: 1; } }

.custom-req-box { background: var(--item-bg); border: 2px solid #00c6ff; border-radius: 18px; padding: 25px; margin-top: 30px; margin-bottom: 20px; box-shadow: 0 5px 25px rgba(0, 198, 255, 0.15); display: flex; flex-direction: column; gap: 20px; text-align: right; }
@media (min-width: 768px) { .custom-req-box { flex-direction: row; align-items: flex-start; } .custom-req-box > div { flex: 1; } }

/* کارت بانکی سه‌بعدی */
.card-wrapper { cursor: pointer; position: relative; text-align: center; perspective: 1000px; transform-style: preserve-3d; }
.card-wrapper svg { transition: transform 0.1s; transform-style: preserve-3d; will-change: transform; }
.card-wrapper.leave-anim svg { transition: transform 0.5s ease-out; transform: rotateX(0) rotateY(0); }
.copy-hint { background: rgba(0, 114, 255, 0.1); color: #0072ff; padding: 8px 15px; border-radius: 20px; font-size: 13px; font-weight: bold; margin-top: 15px; border: 1px solid rgba(0, 114, 255, 0.2); display: inline-block; }

.form-group { margin-bottom: 15px; }
.form-group label { display: block; color: var(--text-muted); font-size: 14px; margin-bottom: 8px; font-weight: bold; }
.form-control { width: 100%; background: var(--bg-color); border: 1px solid var(--card-border); color: var(--text-color); padding: 12px 15px; border-radius: 12px; font-family: inherit; font-size: 14px; outline: none; transition: border-color 0.3s; }
.form-control:focus { border-color: #0072ff; }
.form-control:read-only { background: rgba(0,0,0,0.08); cursor: not-allowed; opacity: 0.9; }
textarea.form-control { resize: vertical; min-height: 100px; }

/* ================= دکمه ثبت و ارسال فیش با امواج شیشه‌ای ================= */
.btn-submit {
    position: relative; overflow: hidden;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white; border: none; width: 100%; padding: 15px; border-radius: 14px;
    font-size: 16px; font-weight: 900; cursor: pointer;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.35); transition: all 0.3s ease;
    font-family: inherit; margin-top: 10px; z-index: 1;
}
.btn-submit::after {
    content: ""; position: absolute; inset: 0; pointer-events: none;
    background: radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.3) 0%, transparent 40%);
    animation: floatOrbitCircles 4s infinite alternate ease-in-out;
}
.btn-submit::before {
    content: ""; position: absolute; top: 0; left: -150%; width: 50%; height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.4), transparent);
    transform: skewX(-25deg); animation: glassShine 4s infinite linear;
}
.btn-submit:hover { transform: translateY(-2px) scale(1.01); box-shadow: 0 8px 25px rgba(16, 185, 129, 0.55); }
.btn-submit:disabled { background: #fbbf24; cursor: not-allowed; box-shadow: none; transform: none; }

/* ویدیوی آموزشی */
.tutorial-video-card {
    width: 100%; max-width: 760px; margin: 35px auto 25px;
    background: var(--item-bg); border: 1.5px solid var(--card-border);
    border-radius: 24px; padding: 24px 20px; text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06); position: relative; overflow: hidden;
}
body.dark-mode .tutorial-video-card {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.85), rgba(30, 41, 59, 0.6));
    border-color: rgba(56, 189, 248, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 25px rgba(56, 189, 248, 0.12);
}
.video-card-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 5px 16px; border-radius: 20px;
    background: rgba(56, 189, 248, 0.12); border: 1px solid rgba(56, 189, 248, 0.35);
    color: #38bdf8; font-size: 12.5px; font-weight: 900; margin-bottom: 10px;
}
.video-card-title { margin: 0 0 6px 0; font-size: 19px; font-weight: 900; color: var(--text-color); }
.video-card-subtitle { margin: 0 0 18px 0; font-size: 13px; color: var(--text-muted); font-weight: 600; }
.video-player-frame {
    position: relative; border-radius: 18px; overflow: hidden;
    background: #000000; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
}
.video-player-frame video { width: 100%; height: auto; max-height: 420px; display: block; outline: none; }

/* سوالات متداول */
.faq-section { width: 100%; max-width: 760px; margin: 35px auto 10px; text-align: right; }
.faq-title { font-size: 20px; font-weight: 900; color: var(--text-color); margin-bottom: 16px; text-align: center; }
.faq-item { background: var(--item-bg); border: 1px solid var(--card-border); border-radius: 14px; margin-bottom: 10px; overflow: hidden; transition: all 0.3s ease; }
body.dark-mode .faq-item { background: rgba(15, 23, 42, 0.7); border-color: rgba(255, 255, 255, 0.08); }
.faq-question { padding: 15px 18px; font-size: 14px; font-weight: 800; cursor: pointer; display: flex; align-items: center; justify-content: space-between; color: var(--text-color); user-select: none; }
.faq-arrow { transition: transform 0.3s ease; font-size: 12px; color: var(--text-muted); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; font-size: 13px; line-height: 1.8; color: var(--text-muted); padding: 0 18px; background: rgba(0, 0, 0, 0.02); }
.faq-item.active .faq-arrow { transform: rotate(180deg); color: #0284c7; }
.faq-item.active .faq-answer { max-height: 300px; padding: 12px 18px 16px; border-top: 1px solid var(--card-border); }

.divider { width: 100%; height: 1px; background: var(--card-border); margin: 40px 0; display: block; }
.download-guide h2 { font-size: 24px; margin-bottom: 8px; font-weight: 900; }
.download-guide p { color: var(--text-muted); font-size: 16px; font-weight: bold; margin-bottom: 20px; }

.arrows-wrapper { display: flex; flex-direction: column; align-items: center; margin-bottom: 25px; }
.chevron { width: 20px; height: 20px; border-right: 4px solid #ef4444; border-bottom: 4px solid #ef4444; transform: rotate(45deg); animation: arrowDown 1.6s infinite; margin-top: -8px; }
.chevron:nth-child(1) { animation-delay: 0s; } .chevron:nth-child(2) { animation-delay: 0.18s; } .chevron:nth-child(3) { animation-delay: 0.36s; } .chevron:nth-child(4) { animation-delay: 0.54s; }

/* ================= دکمه‌های دانلود سیستم‌عامل (اشکال شناور + درخشش بنفش روز) ================= */
.os-btn { 
    position: relative; overflow: hidden;
    background: rgba(255, 255, 255, 0.06); backdrop-filter: blur(14px); 
    -webkit-backdrop-filter: blur(14px); border: 1.5px solid rgba(255, 255, 255, 0.14); color: var(--text-color); 
    width: 100%; padding: 19px 22px; font-size: 18px; font-family: 'Vazirmatn', sans-serif; font-weight: 900; 
    border-radius: 18px; cursor: pointer; margin-bottom: 16px; display: flex; align-items: center; 
    justify-content: space-between; box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12); transition: all 0.35s ease; z-index: 1; 
}
/* الگوهای هندسی و چندضلعی شناور متحرک در پس‌زمینه دکمه‌ها */
.os-btn::after {
    content: ""; position: absolute; inset: 0; pointer-events: none;
    background-image: 
        radial-gradient(circle at 15% 50%, rgba(56, 189, 248, 0.25) 0%, transparent 22%),
        radial-gradient(circle at 85% 50%, rgba(168, 85, 247, 0.25) 0%, transparent 25%);
    background-size: 140% 140%;
    animation: floatOrbitCircles 6s infinite alternate ease-in-out;
    z-index: -1;
}
.os-btn::before {
    content: ""; position: absolute; top: 0; left: -150%; width: 50%; height: 100%;
    background: linear-gradient(to right, transparent 0%, rgba(255,255,255,0.4) 50%, transparent 100%);
    transform: skewX(-25deg); animation: glassShine 4s infinite linear; z-index: -1;
}
.os-btn:hover, .os-btn.active {
    border-color: #00c6ff; transform: translateY(-2px) scale(1.008);
    box-shadow: 0 10px 30px rgba(0, 198, 255, 0.3); background: rgba(255, 255, 255, 0.12);
}

/* درخشش بنفش نئونی روز */
body:not(.dark-mode) .os-btn {
    background: #ffffff;
    border: 2px solid rgba(168, 85, 247, 0.45);
    box-shadow: 0 6px 22px rgba(168, 85, 247, 0.18);
    color: #1e293b;
}
body:not(.dark-mode) .os-btn::after {
    background-image: 
        radial-gradient(circle at 15% 50%, rgba(168, 85, 247, 0.18) 0%, transparent 25%),
        radial-gradient(circle at 85% 50%, rgba(236, 72, 153, 0.18) 0%, transparent 28%);
}
body:not(.dark-mode) .os-btn::before {
    background: linear-gradient(to right, transparent 0%, rgba(168, 85, 247, 0.7) 50%, transparent 100%);
}
body:not(.dark-mode) .os-btn:hover, body:not(.dark-mode) .os-btn.active {
    border-color: #a855f7;
    box-shadow: 0 10px 34px rgba(168, 85, 247, 0.45);
    transform: translateY(-2px) scale(1.008);
}

.os-icon { font-size: 24px; }
.os-content { max-height: 0; overflow: hidden; transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease; opacity: 0; padding: 0 5px; }
.os-content.show { max-height: 12000px; opacity: 1; margin-bottom: 25px; }

.app-card { position: relative; margin-bottom: 20px; padding: 20px; border-radius: 18px; text-align: right; isolation: isolate; overflow: hidden; box-shadow: 0 8px 25px rgba(0,0,0,0.1); }
.app-card::before { 
    content: ""; position: absolute; width: 300%; height: 300%; top: -100%; left: -100%; 
    background: conic-gradient(from 0deg, transparent 0deg, transparent 245deg, #00c6ff 285deg, #8b5cf6 320deg, transparent 360deg); 
    animation: rotateNeon 3s linear infinite; z-index: -2; 
}
.app-card::after { content: ""; position: absolute; inset: 3px; background: var(--card-bg); border-radius: 16px; z-index: -1; }

.app-header { display: flex; align-items: center; gap: 10px; border-bottom: 1px solid var(--card-border); padding-bottom: 12px; margin-bottom: 15px; }
.app-title { font-size: 18px; font-weight: 900; color: var(--text-color); }
.app-badge { background: var(--btn-gradient); color: white; padding: 3px 10px; border-radius: 8px; font-size: 12px; font-weight: bold; }
.links-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 15px; }
.link-item { background: var(--item-bg); border: 1px solid var(--item-border); padding: 15px; border-radius: 12px; text-align: center; display: flex; flex-direction: column; align-items: center; }
.version-tag { background: var(--card-bg); color: var(--text-color); padding: 6px 12px; border-radius: 8px; font-size: 14px; margin-bottom: 12px; border: 1px solid var(--card-border); font-weight: bold; word-break: break-all; }

.download-btn-img { 
    display: inline-flex; align-items: center; justify-content: center; border-radius: 12px; 
    padding: 8px; animation: goldPulseBg 2.5s infinite ease-in-out; border: 1px solid rgba(251, 191, 36, 0.3); transition: transform 0.3s ease; 
}
.download-btn-img img { width: 140px; height: auto; transition: transform 0.3s ease; }
.download-btn-img:hover { transform: scale(1.05); }

.support-section { width: 100%; background: var(--support-bg); padding: 40px 15px; text-align: center; border-top: 1px solid var(--card-border); margin-top: 40px; }
.support-text { font-size: 16px; font-weight: bold; color: var(--text-muted); margin-bottom: 25px; }
.social-buttons { display: flex; justify-content: center; gap: 18px; flex-wrap: wrap; }

.pro-social-card { display: inline-flex; align-items: center; gap: 12px; padding: 10px 22px; border-radius: 16px; text-decoration: none; font-size: 15px; font-weight: 800; backdrop-filter: blur(10px); transition: all 0.3s; }
.pro-social-card .icon-bubble { width: 38px; height: 38px; border-radius: 12px; display: flex; align-items: center; justify-content: center; }
.pro-social-card svg { width: 20px; height: 20px; fill: #ffffff; }
.pro-social-card:hover { transform: translateY(-3px); }
.pro-telegram { background: rgba(14, 116, 144, 0.08); border: 1px solid rgba(14, 165, 233, 0.3); color: #0284c7; }
body.dark-mode .pro-telegram { background: rgba(14, 116, 144, 0.18); border-color: rgba(56, 189, 248, 0.35); color: #38bdf8; }
.pro-telegram .icon-bubble { background: linear-gradient(135deg, #0284c7, #38bdf8); box-shadow: 0 4px 12px rgba(2, 132, 199, 0.35); }

.pro-instagram { background: rgba(225, 48, 108, 0.08); border: 1px solid rgba(225, 48, 108, 0.28); color: #e1306c; }
body.dark-mode .pro-instagram { background: rgba(225, 48, 108, 0.16); border-color: rgba(244, 114, 182, 0.35); color: #f472b6; }
.pro-instagram .icon-bubble { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); box-shadow: 0 4px 12px rgba(220, 39, 67, 0.35); }

.device-status { margin: 28px auto 0; max-width: 650px; padding: 13px 18px; border: 1px solid var(--card-border); background: var(--item-bg); border-radius: 14px; color: var(--text-muted); font-size: 14px; font-weight: 700; }
.device-icon { font-size: 21px; vertical-align: middle; margin-left: 5px; }
.footer-info { margin-top: 20px; font-size: 14px; color: var(--footer-text); line-height: 1.8; }

/* امضای طراح */
@keyframes signatureGradientMove { 0% { background-position: 0% 50%; } 100% { background-position: 200% 50%; } }
.creator-wrapper { margin-top: 22px; display: inline-block; position: relative; }
.creator-badge {
    display: inline-flex; align-items: center; gap: 10px; padding: 12px 28px; border-radius: 50px;
    text-decoration: none; background: rgba(15, 23, 42, 0.4); backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1); position: relative; transition: all 0.4s ease;
}
body:not(.dark-mode) .creator-badge { background: rgba(255, 255, 255, 0.7); }
.creator-badge::before {
    content: ""; position: absolute; inset: -2px; border-radius: 52px;
    background: linear-gradient(90deg, #00c6ff, #0072ff, #a855f7, #ec4899, #00c6ff);
    background-size: 200% auto; animation: signatureGradientMove 4s linear infinite; z-index: -1; opacity: 0.6; filter: blur(4px);
}
.creator-badge:hover { transform: translateY(-4px) scale(1.02); }
.creator-text-gradient {
    font-size: 15px; font-weight: 900; background: linear-gradient(to right, #00c6ff, #0072ff, #a855f7, #ec4899, #00c6ff);
    background-size: 200% auto; -webkit-background-clip: text; background-clip: text; color: transparent;
    animation: signatureGradientMove 4s linear infinite; letter-spacing: 0.5px;
}

/* اعلان Toast */
.toast-container { position: fixed; bottom: 25px; left: 50%; transform: translateX(-50%); z-index: 100000; display: flex; flex-direction: column; gap: 12px; pointer-events: none; width: 90%; max-width: 400px; }
.glass-toast {
    background: rgba(15, 23, 42, 0.9); backdrop-filter: blur(16px); color: #ffffff; padding: 14px 20px;
    border-radius: 16px; border: 1px solid rgba(255,255,255,0.1); font-size: 14px; font-weight: 800;
    text-align: center; box-shadow: 0 10px 40px rgba(0,0,0,0.4); animation: toastIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}
body:not(.dark-mode) .glass-toast { background: rgba(255, 255, 255, 0.95); color: #0f172a; border-color: rgba(0,0,0,0.1); box-shadow: 0 10px 40px rgba(0,0,0,0.15); }
.glass-toast.toast-success { border-bottom: 3px solid #10b981; }
.glass-toast.toast-error { border-bottom: 3px solid #ef4444; }
.glass-toast.toast-info { border-bottom: 3px solid #38bdf8; }
.glass-toast.toast-hiding { animation: toastOut 0.4s ease forwards; }

@media (max-width: 600px) {
    .spot-reserve-card { flex-direction: column; align-items: stretch; text-align: center; }
    .spot-info { text-align: center; } .spot-badge { align-self: center; } .spot-action-btn { justify-content: center; width: 100%; }
    .cn-service-card { padding: 18px; } .cn-header { padding-left: 0; padding-top: 15px; }
    .cn-footer { flex-direction: column; align-items: stretch; } .cn-btn-group { flex-direction: column; } .cn-btn { justify-content: center; width: 100%; }
    .plans-tab-wrapper { width: 100%; flex-direction: column; }
    .plan-tab-btn { width: 100%; justify-content: center; }
}
