/* --- Fonts (Local) --- */
@font-face {
    font-family: 'Vazir';
    src: url('fonts/Vazir.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Vazir';
    src: url('fonts/Vazir-Bold.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

:root {
    --primary: #FFC107;
    --primary-dark: #FF8F00;
    --bg-body: #121212;
    --bg-card: #1e1e1e;
    --text-main: #ffffff;
    --text-muted: #b0b0b0;
    --border-color: rgba(255, 193, 7, 0.2);
    --glow: 0 0 15px rgba(157, 0, 255, 0.3);
}

* { box-sizing: border-box; outline: none; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Vazir', sans-serif;
    background-color: var(--bg-body);
    color: var(--text-main);
    margin: 0; padding: 0; line-height: 1.8;
    overflow-x: hidden;
    touch-action: pan-y; /* قفل زوم قوی‌تر */
    -webkit-text-size-adjust: 100%;
    -webkit-user-select: none; user-select: none;
    -webkit-tap-highlight-color: transparent;
}
input, textarea, select, button { user-select: text; -webkit-user-select: text; font-family: 'Vazir', sans-serif !important; }
a { text-decoration: none; transition: 0.3s; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }

/* --- PWA Modal --- */
.pwa-modal {
    position: fixed; bottom: -300px; left: 0; width: 100%;
    background: rgba(20, 20, 20, 0.98); backdrop-filter: blur(20px);
    border-top: 2px solid var(--primary); padding: 20px; z-index: 10000;
    display: flex; flex-direction: column; gap: 15px;
    transition: bottom 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 -10px 40px rgba(0,0,0,0.8);
}
.pwa-modal.show { bottom: 0; }
.pwa-header { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.pwa-info { display: flex; align-items: center; gap: 15px; }
.pwa-icon { width: 50px; height: 50px; border-radius: 12px; }
.pwa-text h4 { margin: 0; font-size: 1rem; color: #fff; }
.pwa-text p { margin: 0; font-size: 0.8rem; color: #aaa; }
.btn-install {
    background: var(--primary); color: #000; border: none; padding: 8px 25px;
    border-radius: 50px; font-weight: bold; cursor: pointer; font-family: 'Vazir';
}
.btn-close-pwa { background: transparent; border: none; color: #aaa; font-size: 1.5rem; cursor: pointer; }
.ios-instruction-box {
    display: none; background: #333; padding: 15px; border-radius: 10px;
    text-align: center; margin-top: 10px; position: relative; border: 1px solid #444;
}
.ios-arrow { font-size: 2rem; color: var(--primary); margin-top: 10px; animation: bounce 1.5s infinite; display: block; }
@keyframes bounce { 0%, 20%, 50%, 80%, 100% {transform: translateY(0);} 40% {transform: translateY(-10px);} 60% {transform: translateY(-5px);} }

/* --- Floating Buttons --- */
.floating-contact {
    position: fixed; right: 20px; bottom: 20px;
    z-index: 9999; display: flex; flex-direction: column-reverse; gap: 15px;
}
.float-btn {
    width: 50px; height: 50px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; color: white; transition: 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5); position: relative;
    border: 2px solid rgba(255,255,255,0.1); cursor: pointer;
}
.float-btn:hover { transform: scale(1.1); }
.f-call { background: #22c55e; }
.f-wa { background: #25D366; }
.f-tg { background: #229ED9; }

.scroll-top-btn {
    position: fixed; left: 20px; bottom: 20px; width: 40px; height: 40px;
    background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(5px);
    border: 1px solid var(--border-color); border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary); font-size: 1.2rem; cursor: pointer; z-index: 9998;
    transition: 0.3s; opacity: 0; visibility: hidden;
}
.scroll-top-btn.visible { opacity: 1; visibility: visible; }

/* --- Header & Navigation --- */
header {
    position: fixed; top: 0; width: 100%; padding: 15px 5%;
    z-index: 1000; display: flex; justify-content: space-between; align-items: center;
    background: rgba(18, 18, 18, 0.95); backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.05); padding-top: env(safe-area-inset-top);
}
.logo { font-size: 1.5rem; font-weight: 900; letter-spacing: 1px; }
.logo span { color: var(--primary); }
.nav-container {
    position: absolute; left: 50%; transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px); padding: 8px 30px; border-radius: 50px;
}
.nav-menu { display: flex; gap: 30px; }
.nav-item { font-size: 0.9rem; color: var(--text-muted); cursor: pointer; font-weight: 500; }
.nav-item:hover, .nav-item.active { color: var(--primary); }

/* --- Header Buttons --- */
.header-buttons { display: flex; align-items: center; gap: 10px; }
.contact-btn-header {
    border: 1px solid var(--border-color); color: var(--text-main);
    padding: 8px 20px; border-radius: 12px; font-size: 0.9rem;
    cursor: pointer;
}
.start-btn-header {
    background: var(--primary); color: #000;
    padding: 8px 25px; border-radius: 12px; font-size: 0.9rem; font-weight: bold;
    box-shadow: 0 0 15px rgba(255, 193, 7, 0.2); border: none; white-space: nowrap; transition: 0.3s;
}
.start-btn-header:hover { transform: scale(1.05); box-shadow: 0 0 20px rgba(255, 193, 7, 0.4); }

.mobile-menu-btn { display: none; }
.mobile-dropdown {
    position: absolute; top: 80px; left: 50%; transform: translateX(-50%);
    width: 90%; background: rgba(30, 30, 30, 0.98);
    backdrop-filter: blur(15px); border: 1px solid var(--border-color);
    border-radius: 15px; padding: 20px; display: none; flex-direction: column; gap: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5); text-align: center; z-index: 1001;
}
.mobile-dropdown.show { display: flex; }
.mobile-nav-item { color: #fff; font-weight: 500; padding: 10px; border-bottom: 1px solid rgba(255,255,255,0.05); }

/* --- Hero --- */
.hero {
    padding: 160px 8% 100px 8%; display: flex; align-items: center; justify-content: space-between; gap: 50px;
    background: radial-gradient(circle at top left, rgba(255, 193, 7, 0.05) 0%, transparent 60%); min-height: 90vh;
}
.hero-text { flex: 1; display: flex; flex-direction: column; align-items: center; text-align: center; z-index: 2; }
.hero-visual { flex: 1; display: flex; justify-content: center; position: relative; z-index: 1; }
.hero-content-box { max-width: 650px; display: flex; flex-direction: column; align-items: center; }
.hero-content-box h1 {
    font-size: clamp(1.5rem, 3.5vw, 3.5rem); white-space: nowrap; line-height: 1.2; margin-bottom: 25px;
    background: linear-gradient(135deg, #fff 0%, #FFECB3 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-sub { font-size: 1.15rem; color: var(--text-muted); margin-bottom: 40px; }
@keyframes gradient-move { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
.hero-btns-container {
    display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; width: 100%;
}
.hero-btn {
    background: linear-gradient(270deg, var(--primary), #FFD54F, var(--primary));
    background-size: 200% 200%; animation: gradient-move 3s ease infinite;
    color: #000; padding: 18px 25px; border-radius: 12px; font-size: 1.1rem; font-weight: bold;
    box-shadow: 0 0 20px rgba(255, 193, 7, 0.3); display: flex; align-items: center; justify-content: center;
    cursor: pointer; border: none; text-align: center; min-width: 200px;
}

/* Image Placeholder */
.hero-image-placeholder {
    width: 450px; height: 450px; background: #1e1e1e; border-radius: 40px; border: 2px solid rgba(255, 193, 7, 0.1);
    display: flex; align-items: center; justify-content: center; color: #555; box-shadow: 0 30px 60px rgba(0,0,0,0.5); overflow: hidden;
}
img.real-hero-img { width: 100%; height: 100%; object-fit: cover; }

/* --- Live Results --- */
.live-results-box {
    background: rgba(30, 30, 30, 0.6); border: 1px solid var(--border-color);
    border-radius: 15px; padding: 20px; width: 90%; max-width: 1000px;
    backdrop-filter: blur(10px); position: relative; z-index: 5;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.live-table { width: 100%; border-collapse: collapse; color: #fff; font-size: 0.9rem; }
.live-table th { color: var(--text-muted); text-align: right; padding: 10px; font-weight: normal; }
.live-table td { padding: 10px; border-bottom: 1px solid rgba(255,255,255,0.05); }
.profit-green { color: #22c55e; font-weight: bold; }

/* --- Sections --- */
.section-padding { padding: 50px 8%; border-top: 1px solid rgba(255,255,255,0.03); }
.section-title { text-align: center; font-size: 2.2rem; margin-bottom: 60px; font-weight: bold; color: #fff; }
.section-title span { color: var(--primary); }

/* --- Benefits Section --- */
.benefit-card {
    background: var(--bg-card); padding: 25px; border-radius: 15px; 
    border-right: 3px solid var(--primary); transition: 0.3s;
}
.benefit-card:hover { transform: translateY(-5px); }
.benefit-header { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; }
.benefit-icon { font-size: 2rem; color: var(--primary); }
.benefit-title { color: #fff; font-size: 1.1rem; margin: 0; }

/* --- Stats Section --- */
.stats-section { background: #151515; }
.stats-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; max-width: 1200px; margin: 0 auto; }
.stat-card {
    background: linear-gradient(145deg, #1e1e1e, #252525);
    padding: 30px 20px; border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: 0.3s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    position: relative; overflow: hidden;
    display: flex; flex-direction: column; align-items: center;
}
.stat-card::after {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px;
    background: var(--primary); transform: scaleX(0); transition: 0.3s;
}
.stat-card:hover::after { transform: scaleX(1); }
.stat-card:hover { transform: translateY(-10px); border-color: var(--primary); box-shadow: 0 15px 40px rgba(255, 193, 7, 0.1); }
.stat-header { display: flex; align-items: center; gap: 10px; margin-bottom: 15px; }
.stat-icon { font-size: 1.5rem; color: var(--primary); }
.stat-label { color: #fff; font-size: 1rem; font-weight: bold; }
.stat-value { font-size: 2.5rem; font-weight: 900; color: var(--primary); font-family: 'Vazir', sans-serif; line-height: 1; }

/* --- Trust Section (UPDATED) --- */
.trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-top: 40px; }
.trust-item {
    text-align: center; padding: 20px; background: var(--bg-card);
    border-radius: 15px; border: 1px solid transparent; transition: 0.3s;
}
.trust-item:hover { border-color: var(--primary); transform: translateY(-5px); }
.trust-header {
    display: flex; align-items: center; justify-content: center; gap: 15px; margin-bottom: 15px;
}
.trust-icon { font-size: 2rem; color: var(--primary); }
.trust-title { font-weight: bold; color: #fff; font-size: 1.1rem; margin: 0; }
.trust-desc { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }

/* --- Pain Section --- */
.pain-section { padding: 80px 8%; border-top: 1px solid rgba(255,255,255,0.03); background: #151515; }
.pain-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-top: 40px; }
.pain-card { background: var(--bg-card); padding: 25px; border-radius: 16px; border: 1px solid var(--border-color); transition: 0.3s; text-align: right; }
.pain-card:hover { transform: translateY(-5px); border-color: #fff; }
.pain-title { display: flex; align-items: center; gap: 10px; margin-bottom: 15px; color: #fff; font-size: 1.2rem; font-weight: bold; }
.pain-icon { color: var(--primary); font-size: 1.5rem; }
.pain-desc { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 15px; }

/* --- Tabs --- */
.tech-title { text-align: center; font-size: 2.2rem; margin-bottom: 60px; line-height: 1.4; color: #fff;}
.tech-title-purple { color: var(--primary); }
.tabs-main-wrapper { position: relative; max-width: 1000px; margin: 0 auto 40px auto; display: flex; align-items: center; }
.tab-scroll-arrow { color: var(--primary); font-size: 1.5rem; cursor: pointer; padding: 0 10px; opacity: 0.7; transition: 0.3s; }
.tabs-wrapper { overflow-x: auto; white-space: nowrap; padding-bottom: 10px; scrollbar-width: none; flex-grow: 1; text-align: center; }
.tabs-container { display: inline-flex; gap: 10px; }
.tab-btn { background: #252525; color: var(--text-muted); padding: 12px 25px; border-radius: 50px; cursor: pointer; transition: 0.3s; font-size: 0.9rem; flex-shrink: 0; }
.tab-btn.active, .tab-btn:hover { background: var(--primary); color: #000; font-weight: bold; }
.tab-content {
    background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 20px; padding: 40px; display: none; animation: fadeIn 0.5s;
    max-width: 700px; margin: 0 auto;
}
.tab-content.active { display: flex; align-items: center; gap: 40px; }
.tc-text h3 { font-size: 1.8rem; margin-bottom: 20px; color: var(--primary); }
.tc-list li { margin-bottom: 15px; display: flex; align-items: center; font-size: 1.1rem; }
.tc-list i { color: var(--primary); margin-left: 10px; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* --- Pricing --- */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 50px; }
.pricing-card {
    background: var(--bg-card); border-radius: 20px; padding: 40px 30px; border: 1px solid var(--border-color);
    text-align: center; position: relative; transition: 0.3s; display: flex; flex-direction: column; justify-content: space-between;
}
.pricing-card:hover { transform: translateY(-10px); border-color: var(--primary); }
.pricing-card.featured { border: 2px solid var(--primary); background: #252525; transform: scale(1.05); z-index: 2; }
.featured-badge { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: var(--primary); color: #000; padding: 5px 25px; border-radius: 50px; font-weight: bold; font-size: 0.9rem; }
.plan-price { font-size: 3rem; font-weight: 900; color: var(--primary); margin: 20px 0; }
.plan-price span { font-size: 1rem; color: #888; font-weight: normal; }
.features-list { list-style: none; padding: 0; margin-bottom: 40px; text-align: right; flex-grow: 1; }
.features-list li { margin-bottom: 15px; display: flex; align-items: center; font-size: 0.95rem; }
.li-icon { margin-left: 10px; font-size: 1.2rem; min-width: 25px;}
.available .li-icon { color: var(--primary); }
.unavailable { color: var(--text-muted); opacity: 0.5; text-decoration: line-through; }
.cta-button { width: 100%; padding: 15px; border-radius: 8px; font-weight: bold; font-size: 1.1rem; cursor: pointer; transition: 0.3s; }
.cta-button.primary { background: var(--primary); color: #000; border: none; }
.cta-button.outline { background: transparent; border: 2px solid var(--primary); color: var(--primary); }
.cta-button:hover { transform: scale(1.05); box-shadow: 0 5px 15px rgba(255,193,7,0.4); }

/* --- Form --- */
.form-section { background: linear-gradient(180deg, var(--bg-body) 0%, rgba(255, 193, 7, 0.05) 100%); }
.consult-box { max-width: 600px; margin: 0 auto; background: var(--bg-card); padding: 40px; border-radius: 20px; border: 1px solid var(--border-color); }
.form-input, .form-select {
    width: 100%; padding: 12px; margin-bottom: 20px; background: var(--bg-body); border: 1px solid #333;
    border-radius: 8px; color: #fff; font-family: 'Vazir'; box-sizing: border-box; height: 50px; text-align: right; direction: rtl;
}
.submit-btn {
    width: 100%; padding: 18px 20px; background: linear-gradient(270deg, var(--primary), #FFD54F, var(--primary));
    background-size: 200% 200%; animation: gradient-move 3s ease infinite; color: #000; border: none; border-radius: 12px;
    font-size: 1.1rem; font-weight: bold; cursor: pointer; box-shadow: 0 0 20px rgba(255, 193, 7, 0.3); font-family: 'Vazir', sans-serif; white-space: nowrap;
}

/* --- FAQ & Split Layout --- */
.faq-split-wrapper { display: flex; align-items: center; gap: 50px; max-width: 1200px; margin: 0 auto; }
.faq-content { flex: 1; }
.faq-image { flex: 1; display: flex; justify-content: center; }
.faq-item { background: var(--bg-card); margin-bottom: 15px; border-radius: 12px; border: 1px solid rgba(255,255,255,0.05); overflow: hidden; }
.faq-question { padding: 20px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: bold; color: #e2e8f0; }
.faq-answer { padding: 0 20px; max-height: 0; opacity: 0; overflow: hidden; transition: all 0.5s cubic-bezier(0, 1, 0, 1); color: var(--text-muted); font-size: 0.95rem; }
.faq-item.open .faq-answer { padding: 0 20px 25px 20px; max-height: 500px; opacity: 1; }
.faq-icon { transition: 0.3s; }
.faq-item.open .faq-icon { transform: rotate(180deg); color: var(--primary); }

/* --- Guide Page Styles --- */
.guide-hero {
    padding: 180px 8% 80px 8%; text-align: center;
    background: radial-gradient(circle at center, rgba(255,193,7,0.1) 0%, transparent 70%);
}
.guide-section { padding: 60px 8%; max-width: 1000px; margin: 0 auto; }
.steps-container { position: relative; border-right: 2px solid var(--primary); padding-right: 30px; margin-top: 40px; }
.step-card {
    background: var(--bg-card); padding: 30px; border-radius: 15px; margin-bottom: 40px; position: relative;
    border: 1px solid rgba(255,255,255,0.05);
}
.step-card::before {
    content: ''; position: absolute; right: -36px; top: 30px; width: 10px; height: 10px;
    background: var(--primary); border-radius: 50%; box-shadow: 0 0 10px var(--primary);
}
.step-number { font-size: 1.5rem; color: var(--primary); font-weight: bold; margin-bottom: 10px; display: block; }

/* --- Footer --- */
#contact-us { 
    background: #0b0b0b; padding: 60px 8% 30px 8%; border-top: 1px solid #333; padding-bottom: 100px; 
    scroll-margin-top: 100px; 
}
.footer-content { display: flex; justify-content: space-between; align-items: flex-start; gap: 50px; }
.footer-about { flex: 1.5; }
.footer-contact { flex: 1; }
.footer-contact-items { display: flex; flex-direction: column; gap: 15px; }
.f-row { display: flex; gap: 30px; align-items: center; }
.contact-item { display: flex; align-items: center; gap: 10px; color: var(--text-muted); font-size: 0.9rem; cursor: pointer;}
.contact-item a { color: inherit; display: flex; align-items: center; gap: 10px; }
.contact-item:hover { color: var(--primary); }
.copy-right { text-align: center; margin-top: 40px; font-size: 0.8rem; color: #555; }

/* --- Modal & Contact Popup --- */
.modal-overlay { 
    position: fixed; top: 0; left: 0; width: 100%; height: 100%; 
    background: rgba(0,0,0,0.8); z-index: 2000; 
    display: none; 
    justify-content: center; align-items: center; 
    backdrop-filter: blur(5px);
}
.modal-content { 
    background: var(--bg-card); padding: 30px; border-radius: 20px; 
    text-align: center; max-width: 400px; width: 90%;
    border: 1px solid var(--primary); 
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
    font-family: 'Vazir' !important; 
    animation: zoomIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@keyframes zoomIn { from { transform: scale(0.8); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.modal-content h3 { color: #fff; margin-bottom: 25px; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 15px; }
.contact-options { display: flex; flex-direction: column; gap: 15px; }
.contact-option-btn {
    display: flex; align-items: center; justify-content: center; gap: 15px;
    padding: 15px; border-radius: 12px; color: #fff; font-weight: bold; font-size: 1.1rem;
    transition: 0.3s; text-decoration: none;
}
.contact-option-btn i { font-size: 1.5rem; }
.contact-option-btn:hover { transform: translateY(-3px); box-shadow: 0 5px 15px rgba(0,0,0,0.3); }
/* Updated: Call button to Yellow */
.contact-option-btn.call { 
    background: linear-gradient(90deg, #FFC107, #FF8F00); 
    color: #000; 
}
.contact-option-btn.whatsapp { background: linear-gradient(90deg, #25D366, #128C7E); }
.contact-option-btn.telegram { background: linear-gradient(90deg, #229ED9, #0088cc); }
.modal-btns { display: flex; gap: 15px; justify-content: center; margin-top: 20px; }
.m-btn { flex: 1; padding: 10px; border-radius: 8px; cursor: pointer; color: #fff; font-weight: bold; border: none; font-family: 'Vazir' !important; }
.close-modal-btn { margin-top: 20px; background: transparent; border: none; color: #aaa; cursor: pointer; font-family: 'Vazir' !important; }
.close-modal-btn:hover { color: #fff; }

/* --- Responsive Layout Fixes (ORIGINAL) --- */
@media (max-width: 968px) {
    #main-header { justify-content: space-between; padding: 10px 4%; gap: 10px; }
    .nav-container { display: none; }
    .logo { font-size: 1.1rem; order: 1; margin-right: auto; margin-left: 10px; }
    .header-buttons { order: 2; gap: 5px; margin: 0; display: flex; align-items: center; }
    .mobile-menu-btn {
        display: flex; align-items: center; justify-content: center; position: static;
        margin: 0; padding: 6px 15px; font-size: 0.75rem; font-weight: bold; border-radius: 8px;
        background: transparent; border: 1px solid var(--primary); color: var(--primary); min-width: 60px;
    }
    .start-btn-header { padding: 6px 15px; font-size: 0.75rem; border-radius: 8px; min-width: 80px; }
    .contact-btn-header { padding: 6px 10px; font-size: 0.7rem; border-radius: 8px; }
    .mobile-nav-item { color: var(--primary); }
    .hero { flex-direction: column-reverse; padding: 120px 5% 60px 5%; text-align: center; gap: 20px; }
    .hero-text { margin-top: 10px; }
    .hero-image-placeholder { width: 300px; height: 300px; }
    .section-title { font-size: 1.6rem; margin-bottom: 40px; } 
    .live-results-box { width: 95%; padding: 10px; }
    .live-table { font-size: 0.8rem; }
    .hide-mobile { display: none; }
    .trust-grid { grid-template-columns: 1fr; }
    .pricing-card.featured { transform: scale(1); margin: 20px 0; }
    /* Footer */
    .footer-content { flex-direction: column; gap: 30px; text-align: center; align-items: center; }
    .footer-contact { width: 100%; display: flex; flex-direction: column; align-items: center; }
    .footer-contact-items { align-items: center; width: 100%; }
    .f-row { flex-direction: column; align-items: center; gap: 20px; width: 100%; justify-content: center; }
    .contact-item { justify-content: center; }
    .stats-container { grid-template-columns: 1fr; gap: 20px; }
    /* FAQ Split Layout on Mobile */
    .faq-split-wrapper { flex-direction: column-reverse; gap: 30px; }
    /* Travel Section Mobile */
    .travel-wrapper { flex-direction: column-reverse; text-align: center; }
    .travel-content { align-items: center; text-align: center; display: flex; flex-direction: column; }
    .travel-list { text-align: center; display: inline-block; padding: 0; }
    /* Hero Buttons Mobile */
    .hero-btns-container { flex-wrap: nowrap; gap: 10px; }
    .hero-btn { min-width: auto; flex: 1; padding: 15px 5px; font-size: 0.85rem; white-space: nowrap; }
    /* Pain Section Mobile */
    .pain-card { text-align: center; display: flex; flex-direction: column; align-items: center; }
    .pain-title { justify-content: center; }
    /* Tech Title Font Size Mobile */
    .tech-title { font-size: 1.6rem; }
    /* Guide Page */
    .guide-hero { padding: 120px 5% 40px 5%; }
    .guide-section { padding: 40px 5%; }
    .steps-container { border-right: none; padding-right: 0; margin-top: 20px; }
    .step-card { padding: 25px 20px; text-align: center; }
    .step-card::before { display: none; }
    .step-number { font-size: 1.2rem; }
}

@media (max-width: 380px) {
    .contact-btn-header { display: none; }
    .logo { font-size: 1rem; }
    .hero-btn { font-size: 0.8rem; padding: 12px 5px; }
}

/* ========================================= */
/* --- NEW ADDITIONS (تغییرات جدید درخواستی) --- */
/* ========================================= */

/* 1. مخفی کردن لایو ریزالت در موبایل (درخواست ۸) */
@media (max-width: 768px) {
    .live-results-box { display: none !important; }
}

/* 2. استایل دکمه‌های هدر جدید (درخواست ۲ و ۴) */
.btn-panel {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    white-space: nowrap;
}
.btn-panel:hover {
    background: rgba(255, 193, 7, 0.1);
}

/* اصلاح چیدمان دکمه‌ها در موبایل (درخواست ۴) */
@media (max-width: 968px) {
    .btn-panel, .start-btn-header {
        padding: 6px 10px;
        font-size: 0.75rem;
        border-radius: 8px;
        min-width: auto;
    }
}

/* 3. اصلاح فوتر (درخواست ۹ و ۱۰) */
/* وسط چین کردن بخش درباره ما */
.footer-about {
    flex: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}
/* حذف بخش تماس با ما از فوتر */
.footer-contact { display: none !important; }

/* استایل لینک طراح */
.designer-link {
    color: #555;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}
.designer-link:hover { color: var(--primary); }

/* Badge Colors (درخواست ۱۰ و ۱۱) */
.badge.t-open { background: #3498db; }
.badge.t-investigating { background: #f39c12; }
.badge.t-done { background: #2ecc71; }
.badge.t-closed { background: #e74c3c; }

.badge.c-new { background: #3498db; }
.badge.c-review { background: #f39c12; }
.badge.c-responded { background: #f1c40f; color: #000; }
.badge.c-final { background: #2ecc71; }
.badge.c-cancel { background: #e74c3c; }

/* دکمه‌های فیلتر مشاوره (درخواست ۸ جدید) */
.filter-btn {
    background: #333; color: #aaa; border: 1px solid #444; padding: 8px 15px;
    border-radius: 8px; cursor: pointer; transition: 0.3s; min-width: 80px; text-align: center;
}
.filter-btn.active { background: #FFC107; color: #000; border-color: #FFC107; font-weight: bold; }
.filter-btn:hover { border-color: #FFC107; }

/* لی‌اوت جدید تیکت کاربر (درخواست ۶ جدید) */
.ticket-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 20px; }
@media (max-width: 768px) { .ticket-layout { grid-template-columns: 1fr; } }

/* اصلاح دکمه مدیریت در داشبورد (درخواست ۴ جدید) */
.admin-link-btn {
    color: #ff4d4d !important; border: 1px solid #ff4d4d; margin-top: 10px;
    background: rgba(255, 77, 77, 0.1); display: flex; align-items: center; gap: 10px;
}
.admin-link-btn:hover { background: #ff4d4d; color: #fff !important; }

/* اصلاح ادیتور وبلاگ (درخواست ۹ جدید) */
.tox-editor-container { background: #fff !important; color: #000 !important; }
.tox .tox-edit-area__iframe { background: #fff !important; }
