/* =========================================
   متغیرها و تنظیمات پایه
========================================= */
@font-face {
    font-family: 'IRANSans';
    src: url('../fonts/ir-s.woff') format('woff');
    font-weight: normal;
}

:root {
    --bg-dark: #0f172a;
    --gold: #d4af37;
    --gold-hover: #f1c40f;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --success: #10b981;
    --danger: #ef4444;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'IRANSans', Tahoma, sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
    direction: rtl;
}

/* =========================================
   پس‌زمینه و انیمیشن‌ها
========================================= */
.bg-shapes {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1;
    overflow: hidden;
}

.shape {
    position: absolute;
    filter: blur(100px);
    border-radius: 50%;
    animation: float 15s infinite alternate;
}

.shape-1 {
    width: 400px; height: 400px;
    background: rgba(212, 175, 55, 0.12);
    top: -100px; right: -100px;
}

.shape-2 {
    width: 500px; height: 500px;
    background: rgba(59, 130, 246, 0.12);
    bottom: -150px; left: -100px;
    animation-delay: -5s;
}

@keyframes float {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

/* =========================================
   ساختار کلی و لایه‌بندی
========================================= */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

.section {
    padding: 30px 15px;
    margin-bottom: 20px;
}

.section-title {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.grid-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* استایل گرید اصلی این سکشن (نظرات و تکنولوژی‌ها) */
.grid-2-custom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

/* =========================================
   دکمه‌ها و فرم‌ها
========================================= */
.btn-gold {
    background: linear-gradient(135deg, var(--gold), #b39024);
    color: #000;
    border: none;
    padding: 10px 20px;
    border-radius: 12px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

.full-width {
    width: 100%;
    margin-top: 15px;
}

/* =========================================
   کارت‌های شیشه‌ای پایه
========================================= */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 20px;
    transition: 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* =========================================
   بخش Hero (کادر بزرگ بالایی)
========================================= */
.hero-wrapper {
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.05) 80%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 40px 50px 60px;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.2), 0 8px 32px rgba(0, 0, 0, 0.3);
    margin-top: 40px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* نوار بالایی هدر داخلی */
.hero-top-bar {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

/* لوگو در نوار بالایی */
.hero-top-bar .logo {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -1px;
    transition: all 0.4s ease;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.2));
    cursor: pointer;
}

.hero-top-bar .logo:hover {
    transform: scale(1.08) translateY(-2px);
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.8));
}

.hero-top-bar .logo span {
    color: var(--gold);
}

.hero-top-bar .logo img {
    max-height: 40px;
    transition: all 0.3s ease;
}

.hero-top-bar .user-action .btn-gold {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* متن‌های بخش Hero */
.hero-text {
    text-align: center;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-text h1 {
    font-size: 3.2rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.4;
    letter-spacing: -1px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.hero-text h1 span {
    background: linear-gradient(135deg, var(--gold), #ffdf70);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.4));
}

.hero-text p {
    font-size: 1.25rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    max-width: 650px;
    margin-bottom: 40px;
}

/* =========================================
   جستجوی دامنه
========================================= */
.domain-search {
    max-width: 700px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    gap: 10px;
    padding: 10px;
    align-items: center;
}

.domain-input {
    flex: 1;
    background: transparent;
    border: none;
    color: #fff;
    padding: 10px 15px;
    outline: none;
    font-size: 1rem;
    border-radius: 12px;
}

.domain-input::placeholder {
    color: var(--text-muted);
}

.domain-tld {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--glass-border);
    color: #fff;
    padding: 10px;
    border-radius: 10px;
    outline: none;
}

.domain-tld option {
    background: var(--bg-dark);
}

/* =========================================
   کارت ویژگی‌ها و پلن‌ها
========================================= */
.feature-card { text-align: center; }
.feature-card .icon { font-size: 2.5rem; margin-bottom: 15px; }

/* استایل آیکن‌های SVG */
.feature-card .icon svg {
    width: 50px;
    height: 50px;
    stroke: var(--gold);
    margin-bottom: 15px;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.3));
    transition: all 0.3s ease;
}

.feature-card:hover .icon svg {
    transform: translateY(-5px) scale(1.1);
    filter: drop-shadow(0 0 12px rgba(255, 215, 0, 0.6));
}

.plan-card {
    padding: 25px 15px;
    position: relative;
    display: flex;
    flex-direction: column;
}

.plan-header { text-align: center; margin-bottom: 15px; }
.plan-icon { font-size: 2.5rem; margin-bottom: 10px; }
.plan-header h3 { font-size: 1.2rem; }

.plan-card .price {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.plan-card .price span {
    font-size: 1.8rem;
    color: var(--text-main);
    font-weight: bold;
}

/* کادر جداکننده هدر از لیست در پلن ها */
.plan-header-wrapper {
    border-bottom: 1px dashed rgba(255, 255, 255, 0.15);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

/* استایل دهی به آیکن‌های جایگزین تیک در لیست ویژگی‌ها */
.plan-card ul {
    list-style: none;
    flex: 1;
    font-size: 0.85rem;
}

.plan-card ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.plan-card ul li:last-child { border-bottom: none; }

.plan-card ul li .li-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    stroke: var(--gold);
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.4));
}

/* آیکن‌های بالای هر پلن */
.plan-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}

.plan-icon svg {
    width: 45px;
    height: 45px;
    stroke: var(--gold);
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

.pro-plan {
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.1);
}

.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: #000;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: bold;
}

/* =========================================
   استایل باکس‌های عریض امکانات سرور
========================================= */
.wide-feature-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    text-align: right;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wide-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2), inset 0 0 15px rgba(255, 215, 0, 0.05);
}

.wide-feature-card .wf-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 12px;
    flex-shrink: 0;
}

.wide-feature-card .wf-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--gold);
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.wide-feature-card h4 {
    margin: 0;
    font-size: 0.95rem;
    color: #fff;
    line-height: 1.5;
    font-weight: 500;
}

/* =========================================
   بخش نظرات و تکنولوژی‌ها
========================================= */
/* استایل مشترک باکس‌ها */
.box-title {
    text-align: center;
    color: var(--gold);
    margin-top: 0;
    margin-bottom: 25px;
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 15px;
}

.box-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gold);
    border-radius: 3px;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* --- استایل بخش نظرات (اسکرول عمودی) --- */
.reviews-box {
    height: 500px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.reviews-wrapper {
    flex: 1;
    overflow: hidden;
    position: relative;
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
}

.reviews-track {
    display: flex;
    flex-direction: column;
    gap: 15px;
    animation: scroll-up 40s linear infinite;
}

.reviews-track:hover {
    animation-play-state: paused;
}

.review-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 15px;
    text-align: right;
    transition: background 0.3s ease;
}

.review-item:hover {
    background: rgba(255, 215, 0, 0.05);
    border-color: rgba(255, 215, 0, 0.2);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.r-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), #b8860b);
    color: var(--bg-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 1.1rem;
}

.r-info { display: flex; flex-direction: column; }
.r-name { color: #fff; font-weight: 500; font-size: 0.95rem; }
.r-stars { font-size: 0.8rem; letter-spacing: 2px; }
.r-text { color: #ccc; font-size: 0.9rem; line-height: 1.6; margin: 0; }

@keyframes scroll-up {
    0% { transform: translateY(0); }
    100% { transform: translateY(-100%); }
}

/* --- استایل بخش تکنولوژی‌ها --- */
.tech-box {
    height: 500px;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    height: calc(100% - 60px);
    align-content: start;
    overflow-y: auto;
    padding-right: 5px;
}

.tech-grid::-webkit-scrollbar { width: 4px; }
.tech-grid::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }

.tech-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    cursor: default;
}

.tech-item:hover {
    transform: translateY(-3px);
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.tech-item svg {
    width: 28px;
    height: 28px;
    stroke: var(--gold);
    flex-shrink: 0;
    filter: drop-shadow(0 0 3px rgba(255, 215, 0, 0.4));
}

.tech-item span { color: #fff; font-size: 0.95rem; font-weight: 500; }

/* =========================================
   سکشن دانلود افزونه‌ها (کدهای جدید و تمیز)
========================================= */
.plugins-download-section {
    padding: 60px 0;
}

.plugins-custom-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

.plugins-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: stretch;
}

/* افزودن ویژگی‌های اختصاصی به کارت‌های شیشه‌ای این بخش */
.tikaguard-download-box, .premium-box {
    position: relative;
    text-align: center;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* باکس تیکاگارد */
.tikaguard-download-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.tg-img-wrap { margin-bottom: 20px; }
.tg-img { max-width: 200px; height: auto; }

.tg-content h3 {
    font-size: 24px;
    color: #fff;
    margin-bottom: 15px;
}

.tg-content p {
    font-size: 15px;
    color: #cbd5e1;
    line-height: 1.8;
    margin-bottom: 30px;
}

.tg-download-btn {
    width: 100%;
    background: linear-gradient(135deg, #00c6ff 0%, #0072ff 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 15px 20px;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.tg-download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 114, 255, 0.3);
}

.btn-counter-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 12px;
    border-radius: 8px;
}

/* گرید 6 تایی افزونه ها */
.premium-plugins-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 20px; 
    align-items: stretch;
}

.premium-box {
    padding: 35px 20px 20px; 
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.version-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff9800;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    padding: 4px 12px;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(255, 152, 0, 0.3);
    white-space: nowrap;
}

.p-img-box {
    height: 60px;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.p-img-box img {
    max-height: 100%;
    max-width: 80px;
    object-fit: contain;
}

.premium-box h4 {
    font-size: 14px;
    color: #fff;
    margin-bottom: 15px;
}

.p-download-btn {
    display: inline-block;
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none;
    padding: 8px 0;
    border-radius: 8px;
    font-size: 13px;
    transition: 0.3s;
}

.p-download-btn:hover { background: rgba(255, 255, 255, 0.2); }

/* =========================================
   مودال (پاپ‌آپ)
========================================= */
.modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6); backdrop-filter: blur(10px);
    display: none; justify-content: center; align-items: center; z-index: 1000;
}

.modal-content {
    width: 100%; max-width: 400px; opacity: 0; transform: scale(0.95) translateY(20px);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-desc { color: var(--text-muted); font-size: 0.9rem; margin: 15px 0 10px; }

.glass-input {
    width: 100%; background: rgba(0, 0, 0, 0.2); border: 1px solid var(--glass-border);
    color: var(--text-main); padding: 15px; border-radius: 12px; outline: none; transition: 0.3s;
}

.glass-input:focus { border-color: var(--gold); }
.otp-input { letter-spacing: 15px; text-align: center; font-size: 1.5rem; }
.auth-message { font-size: 0.9rem; margin-top: 15px; text-align: center; }

.btn-close {
    margin-top: 15px; background: none; border: none; color: var(--text-muted);
    cursor: pointer; width: 100%; padding: 10px; transition: 0.3s;
}
.btn-close:hover { color: var(--text-main); }

/* =========================================
   فوتر (Footer)
========================================= */
.tika-footer {
    background-color: #0b1120;
    padding: 40px 20px;
}

.footer-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    background: linear-gradient(145deg, #184175 0%, #11294d 100%);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), inset 0 2px 15px rgba(255,255,255,0.05);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-title {
    color: #38bdf8;
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: bold;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
    gap: 20px;
    flex-wrap: wrap;
}

.about-box { flex: 1; min-width: 300px; }
.about-box p { color: #e2e8f0; font-size: 1rem; margin-bottom: 25px; line-height: 1.8; }

.social-links { display: flex; gap: 15px; flex-wrap: wrap; }
.social-btn {
    display: flex; align-items: center; gap: 8px;
    background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 8px 20px; border-radius: 12px; color: #cbd5e1;
    text-decoration: none; font-size: 0.9rem; transition: all 0.3s ease;
}
.social-btn:hover {
    transform: translateY(-5px); color: #fff;
    background: rgba(255, 255, 255, 0.2); box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.social-btn.whatsapp i { color: #25D366; }
.social-btn.telegram i { color: #0088cc; }
.social-btn.instagram i { color: #E1306C; }

.enamad-box { padding-left: 20px; transition: transform 0.4s ease; }
.enamad-box:hover { transform: scale(1.05); }
.enamad-box img { max-width: 120px; filter: drop-shadow(0 5px 15px rgba(0,0,0,0.3)); }

.footer-bottom { display: flex; gap: 25px; flex-wrap: wrap; }

.contact-card, .brand-card {
    background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px; padding: 30px; transition: all 0.4s ease;
}

.contact-card:hover, .brand-card:hover {
    background: rgba(255, 255, 255, 0.09); box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    transform: translateY(-3px);
}

.contact-card { flex: 2; min-width: 300px; }
.contact-list { list-style: none; }
.contact-list li {
    display: flex; align-items: center; color: #e2e8f0;
    margin-bottom: 15px; font-size: 0.95rem; transition: color 0.3s;
}
.contact-list li:last-child { margin-bottom: 0; }
.contact-list li:hover { color: #fff; }
.contact-list li i {
    color: #38bdf8; font-size: 1.1rem; margin-left: 12px;
    width: 25px; text-align: center; transition: transform 0.3s ease;
}
.contact-list li:hover i { transform: scale(1.2) rotate(5deg); }

.brand-card {
    flex: 1; min-width: 250px; display: flex;
    flex-direction: column; justify-content: center; align-items: center;
}
.brand-logo { max-width: 200px; margin-bottom: 15px; transition: transform 0.4s ease; }
.brand-card:hover .brand-logo { transform: scale(1.05); }
.brand-card p { color: #94a3b8; font-size: 0.85rem; text-align: center; }

/* =========================================
   دکمه بازگشت به بالا (Back to Top)
========================================= */
.progress-wrap {
    position: fixed; right: 30px; bottom: 30px; height: 50px; width: 50px;
    cursor: pointer; display: flex; justify-content: center; align-items: center;
    border-radius: 50px; box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.1);
    z-index: 999; opacity: 0; visibility: hidden; transform: translateY(15px);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    background-color: rgba(17, 41, 77, 0.6); backdrop-filter: blur(10px);
}
.progress-wrap.active-progress { opacity: 1; visibility: visible; transform: translateY(0); }
.progress-wrap:hover { transform: translateY(-5px); box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.2), 0 10px 20px rgba(0, 0, 0, 0.3); }
.progress-wrap svg.progress-circle { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.progress-wrap svg.progress-circle path { stroke: #00d2ff; stroke-width: 4; box-sizing: border-box; transition: all 0.4s linear; fill: none; }
.progress-wrap .icon-arrow { color: #ffffff; display: flex; justify-content: center; align-items: center; transition: all 0.4s ease; z-index: 2; }
.progress-wrap:hover .icon-arrow { color: #00d2ff; }

/* =========================================
   ریسپانسیو (مدیا کوئری‌های کلی سایت)
========================================= */
@media (max-width: 1200px) {
    .grid-5 { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 992px) {
    .grid-2-custom, .plugins-layout { grid-template-columns: 1fr; }
    .reviews-box, .tech-box { height: 400px; }
}

@media (max-width: 768px) {
    .grid-5, .grid-4 { grid-template-columns: 1fr; }
    .premium-plugins-grid { grid-template-columns: repeat(2, 1fr); }
    .tg-download-btn { flex-direction: column; gap: 15px; }

    .hero-wrapper { padding: 30px 20px; margin-top: 20px; }
    .hero-top-bar { margin-bottom: 40px; flex-direction: column; gap: 15px; }
    .hero-text h1 { font-size: 2.2rem; }
    .hero-text p { font-size: 1rem; margin-bottom: 30px; }
    .domain-search { flex-direction: column; }
    
    .footer-wrapper { padding: 25px 15px; }
    .footer-top { flex-direction: column; align-items: center; text-align: center; }
    .social-links { justify-content: center; }
    .enamad-box { padding-left: 0; margin-top: 20px; }
    .footer-bottom { flex-direction: column; }
    
    .progress-wrap { right: 20px; bottom: 20px; }
}

@media (max-width: 480px) {
    .premium-plugins-grid { grid-template-columns: 1fr; }
}
.domain-result-box {
    max-width: 700px;
    margin: 15px auto 0;
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    font-weight: bold;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
}
.domain-available { color: var(--success); }
.domain-taken { color: var(--danger); }
