/* ============================================================
   موبو دکور — استایل اصلی (تم مشکی-طلایی لوکس، RTL)
   ============================================================ */

@font-face {
    font-family: 'Vazirmatn';
    src: url('../fonts/Vazirmatn.woff2') format('woff2');
    font-weight: 100 900;
    font-display: swap;
}

:root {
    --bg: #16130f;
    --bg-soft: #1c1812;
    --card: #201b14;
    --fg: #f2ede4;
    --muted: #a89f92;
    --border: rgba(255, 255, 255, .12);
    --border-soft: rgba(255, 255, 255, .07);
    --gold: #d4a544;
    --gold-2: #b0832c;
    --gold-3: #8a641a;
    --gold-light: #f0d38a;
    --red: #ef4444;
    --red-2: #b91c1c;
    --glass: rgba(42, 36, 27, .55);
    --radius: 16px;
    --shadow: 0 10px 40px -10px rgba(0, 0, 0, .5);
    --gold-glow: 0 0 0 1px rgba(212, 165, 68, .25), 0 10px 40px -10px rgba(212, 165, 68, .25);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Vazirmatn', Tahoma, Arial, sans-serif;
    background: var(--bg);
    color: var(--fg);
    line-height: 1.8;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3 { line-height: 1.6; }

/* ---------- ابزارها ---------- */
.container { width: 100%; max-width: 1152px; margin-inline: auto; padding-inline: 16px; }

.glass {
    background: var(--glass);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
}

.gold-text {
    background: linear-gradient(120deg, #f7e2a0 0%, #d9ab52 35%, #f9edc4 55%, #c99a3f 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.border-glow { box-shadow: var(--gold-glow); }

.gold-bg { background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 45%, var(--gold-3) 100%); }

.only-desktop { display: none; }
.only-mobile { display: inline-flex; }

/* ---------- دکمه‌ها ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid transparent;
    border-radius: 12px;
    padding: 10px 20px;
    min-height: 44px;
    font-size: 14px;
    font-weight: 700;
    color: var(--fg);
    background: transparent;
    transition: opacity .2s, background .2s, border-color .2s, color .2s, transform .2s;
    white-space: nowrap;
}
.btn svg { flex-shrink: 0; }

.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 45%, var(--gold-3) 100%);
    color: #fff;
    font-weight: 800;
    box-shadow: var(--shadow);
}
.btn-gold:hover { opacity: .9; }

.btn-red {
    background: linear-gradient(to bottom, var(--red), var(--red-2));
    color: #fff;
    font-weight: 800;
}

.btn-glass {
    background: var(--glass);
    backdrop-filter: blur(14px);
    border: 1px solid var(--border);
}
.btn-glass:hover { border-color: rgba(212, 165, 68, .5); color: var(--gold); }

.btn-outline { border-color: rgba(212, 165, 68, .4); font-size: 13px; }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.btn-ghost:hover { background: rgba(255, 255, 255, .06); color: var(--gold); }

.btn-sm { min-height: 36px; padding: 6px 12px; font-size: 13px; }
.btn-lg { min-height: 48px; padding: 12px 28px; font-size: 15px; }
.btn-block { width: 100%; }
.btn-icon { width: 44px; padding: 0; }

.text-gold { color: var(--gold); }

/* ---------- هدر ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: var(--glass);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    border-bottom: 1px solid var(--border-soft);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    height: 64px;
}

.brand { display: flex; align-items: center; gap: 12px; }

.brand-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 45%, var(--gold-3) 100%);
    color: #fff;
    box-shadow: var(--shadow);
}

.brand-text { display: flex; flex-direction: column; line-height: 1.4; }
.brand-text strong {
    font-size: 18px;
    font-weight: 800;
    background: linear-gradient(120deg, #f7e2a0 0%, #d9ab52 35%, #f9edc4 55%, #c99a3f 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.brand-text small { display: none; font-size: 11px; color: var(--muted); }

.main-nav { display: none; align-items: center; gap: 4px; }
.main-nav a {
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(242, 237, 228, .8);
    transition: color .2s, background .2s;
}
.main-nav a:hover { color: var(--gold); background: rgba(255, 255, 255, .05); }

.header-actions { display: flex; align-items: center; gap: 8px; }

/* منوی موبایل */
.mobile-menu {
    display: none;
    border-top: 1px solid var(--border-soft);
    background: rgba(22, 19, 15, .97);
    padding: 16px;
}
.mobile-menu nav { display: flex; flex-direction: column; gap: 4px; margin-bottom: 12px; }
.mobile-menu nav a {
    padding: 12px;
    border-radius: 10px;
    font-weight: 500;
}
.mobile-menu nav a:hover { background: rgba(255, 255, 255, .06); color: var(--gold); }
.mobile-menu.open { display: block; }

/* ---------- اسلایدر ---------- */
.hero {
    position: relative;
    height: 62vh;
    min-height: 420px;
    max-height: 640px;
    width: 100%;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity .9s ease, visibility .9s;
}
.hero-slide.active { opacity: 1; visibility: visible; }

.hero-slide > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.06);
    transition: transform 6s ease-out;
}
.hero-slide.active > img { transform: scale(1); }

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--bg) 0%, rgba(22, 19, 15, .6) 40%, rgba(22, 19, 15, .2) 100%);
}

.hero-content {
    position: absolute;
    inset-inline: 0;
    bottom: 0;
    padding-bottom: 64px;
    max-width: 640px;
    margin-right: max(16px, calc((100% - 1152px) / 2));
    margin-left: auto;
    transform: translateY(24px);
    opacity: 0;
    transition: transform .5s ease .15s, opacity .5s ease .15s;
}
.hero-slide.active .hero-content { transform: translateY(0); opacity: 1; }

.hero-badge {
    display: inline-block;
    padding: 4px 12px;
    border: 1px solid rgba(212, 165, 68, .5);
    background: rgba(212, 165, 68, .1);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    color: var(--gold);
    backdrop-filter: blur(8px);
}

.hero-content h1 {
    margin-top: 16px;
    font-size: clamp(28px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.3;
}

.hero-content p {
    margin-top: 14px;
    max-width: 480px;
    font-size: 14px;
    color: var(--muted);
}

.hero-ctas { margin-top: 22px; display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 44px;
    height: 44px;
    display: none;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--glass);
    backdrop-filter: blur(14px);
    color: var(--fg);
    transition: color .2s, border-color .2s;
}
.hero-arrow:hover { color: var(--gold); border-color: rgba(212, 165, 68, .5); }
.hero-next { left: 12px; }
.hero-prev { right: 12px; }

.hero-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 4px;
}
.hero-dots button {
    width: 10px;
    height: 10px;
    padding: 8px;
    border: none;
    background: transparent;
    position: relative;
}
.hero-dots button::after {
    content: '';
    position: absolute;
    inset: 50% auto auto 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .3);
    transition: all .3s;
}
.hero-dots button:hover::after { background: rgba(255, 255, 255, .5); }
.hero-dots button.active::after {
    width: 32px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 45%, var(--gold-3) 100%);
}

.hero-counter {
    position: absolute;
    bottom: 22px;
    left: 16px;
    z-index: 20;
    padding: 2px 12px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--glass);
    backdrop-filter: blur(14px);
    font-size: 12px;
    font-weight: 700;
    color: rgba(242, 237, 228, .9);
}

/* ---------- نوار مزیت‌ها ---------- */
.features { padding-top: 32px; }

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.feature-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius);
    transition: border-color .2s;
}
.feature-card:hover { border-color: rgba(212, 165, 68, .4); }

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 10px;
    border: 1px solid rgba(212, 165, 68, .3);
    background: rgba(212, 165, 68, .15);
    color: var(--gold);
}

.feature-text { display: flex; flex-direction: column; }
.feature-text strong { font-size: 14px; font-weight: 700; line-height: 1.6; }
.feature-text small { margin-top: 2px; font-size: 12px; color: var(--muted); }

/* ---------- بخش‌ها ---------- */
.section { padding: 64px 0; scroll-margin-top: 96px; }

.section-head { max-width: 640px; }
.section-head.center { margin-inline: auto; text-align: center; }

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 14px;
    border: 1px solid rgba(212, 165, 68, .4);
    background: rgba(212, 165, 68, .1);
    color: var(--gold);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}

.section-head h2 {
    margin-top: 14px;
    font-size: clamp(24px, 3.4vw, 36px);
    font-weight: 800;
}

.section-sub { margin-top: 10px; font-size: 14px; color: var(--muted); }

/* ---------- تب‌ها ---------- */
.tabs-list {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    padding: 6px;
    border: 1px solid var(--border-soft);
    border-radius: 14px;
}

.tab-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 40px;
    padding: 8px 14px;
    border: none;
    border-radius: 10px;
    background: transparent;
    color: var(--muted);
    font-size: 14px;
    font-weight: 500;
    transition: background .2s, color .2s;
}
.tab-btn:hover { color: var(--fg); }
.tab-btn.active {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 45%, var(--gold-3) 100%);
    color: #fff;
    font-weight: 700;
}

.tab-panel { display: none; margin-top: 32px; }
.tab-panel.active { display: block; animation: fadeIn .35s ease; }

@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.cat-desc { max-width: 640px; font-size: 14px; color: var(--muted); }
.empty-note { margin-top: 32px; text-align: center; font-size: 14px; color: var(--muted); }

/* ---------- کارت‌ها ---------- */
.cards-grid {
    margin-top: 24px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.item-card {
    display: flex;
    flex-direction: column;
    background: var(--card);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color .3s, box-shadow .3s, transform .3s;
}
.item-card:hover {
    border-color: rgba(212, 165, 68, .5);
    box-shadow: 0 18px 50px -18px rgba(212, 165, 68, .25);
    transform: translateY(-3px);
}

.item-media { aspect-ratio: 4 / 3; overflow: hidden; background: var(--bg-soft); }
.item-media.ratio-video { aspect-ratio: 16 / 9; }
.item-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s;
}
.item-card:hover .item-media img { transform: scale(1.05); }

.item-body { display: flex; flex-direction: column; gap: 8px; flex: 1; padding: 20px; }

.item-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 8px; }
.item-head h3 { font-size: 16px; font-weight: 700; line-height: 1.7; }

.item-desc {
    font-size: 14px;
    color: var(--muted);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.item-foot {
    margin-top: auto;
    padding-top: 12px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.item-price {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 700;
    color: var(--gold);
}

.badge {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    flex-shrink: 0;
}
.badge-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 45%, var(--gold-3) 100%);
    color: #fff;
    border: none;
}

/* ---------- مقالات ---------- */
.articles-wrap {
    border: 1px solid var(--border-soft);
    background: rgba(32, 27, 20, .35);
    border-radius: 24px;
    padding: 40px 16px;
}

.article-card { cursor: pointer; }
.article-date { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; color: var(--muted); }

/* ---------- درباره ما ---------- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

.about-media { position: relative; }

.about-img {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(212, 165, 68, .3);
}
.about-img img { width: 100%; height: 100%; object-fit: cover; }

.float-slow { animation: floatSlow 7s ease-in-out infinite; }
@keyframes floatSlow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border: 1px solid rgba(212, 165, 68, .4);
    border-radius: 16px;
    box-shadow: var(--shadow);
}
.about-badge strong { font-size: 20px; font-weight: 800; }
.about-badge small { font-size: 12px; font-weight: 600; color: var(--muted); }

.about-text .section-head { text-align: right; margin-right: 0; }

.about-lead { margin-top: 20px; font-size: 16px; font-weight: 600; line-height: 2; color: rgba(242, 237, 228, .9); }

.about-detail { margin-top: 16px; font-size: 14px; line-height: 2; color: var(--muted); }
.about-detail p + p { margin-top: 12px; }

.about-stats { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 12px; }

.stat-chip {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 8px 16px;
    border: 1px solid var(--border-soft);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
}

.about-text .btn { margin-top: 32px; }

/* ---------- فوتر ---------- */
.site-footer {
    margin-top: auto;
    border-top: 1px solid var(--border-soft);
    background: var(--glass);
    padding-bottom: calc(env(safe-area-inset-bottom, 0px) + 24px);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 48px 16px 0;
}

.footer-brand p { margin-top: 16px; font-size: 14px; color: var(--muted); line-height: 2; }

.footer-brand-name { font-size: 18px; font-weight: 800; }

.socials { margin-top: 20px; display: flex; gap: 8px; }
.socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: rgba(22, 19, 15, .4);
    color: var(--muted);
    transition: color .2s, border-color .2s;
}
.socials a:hover { color: var(--gold); border-color: rgba(212, 165, 68, .5); }

.footer-links h3, .footer-contact h3 { font-size: 15px; font-weight: 700; margin-bottom: 16px; }
.footer-links ul, .footer-contact ul { list-style: none; }
.footer-links a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    font-size: 14px;
    color: var(--muted);
    transition: color .2s;
}
.footer-links a:hover { color: var(--gold); }

.footer-contact ul { display: flex; flex-direction: column; gap: 16px; }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--muted); }
.footer-contact li svg { flex-shrink: 0; margin-top: 5px; color: var(--gold); }
.footer-contact a:hover { color: var(--gold); }

.footer-cta {
    align-self: start;
    text-align: center;
    padding: 24px;
    border: 1px solid rgba(212, 165, 68, .4);
    background: rgba(212, 165, 68, .1);
    border-radius: 16px;
}
.footer-cta h3 { font-size: 15px; font-weight: 800; }
.footer-cta p { margin-top: 8px; font-size: 12px; color: var(--muted); line-height: 2; }
.footer-cta .btn { margin-top: 16px; }

.footer-bottom {
    margin-top: 40px;
    padding-top: 16px;
    border-top: 1px solid var(--border-soft);
    display: flex;
    justify-content: center;
    font-size: 12px;
    color: var(--muted);
}

/* ---------- دکمه شناور مشاوره (قرمز) ---------- */
.consult-fab-wrap {
    position: fixed;
    bottom: calc(20px + env(safe-area-inset-bottom, 0px));
    right: 20px;
    z-index: 50;
}

.fab-ping {
    position: absolute;
    inset: 0;
    border-radius: 999px;
    background: rgba(239, 68, 68, .3);
    animation: ping 1.8s cubic-bezier(0, 0, .2, 1) infinite;
}
@keyframes ping {
    0% { transform: scale(1); opacity: .8; }
    75%, 100% { transform: scale(1.6); opacity: 0; }
}

.consult-fab {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 48px;
    padding: 0 20px;
    border: 1px solid rgba(252, 165, 165, .4);
    border-radius: 999px;
    background: linear-gradient(to bottom, var(--red), var(--red-2));
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 12px 35px -8px rgba(0, 0, 0, .55);
    transition: opacity .2s;
}
.consult-fab:hover { opacity: .95; }

/* ---------- مودال‌ها ---------- */
.modal { position: fixed; inset: 0; z-index: 100; display: flex; align-items: center; justify-content: center; padding: 16px; }
.modal[hidden] { display: none; }

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .65);
    backdrop-filter: blur(6px);
    animation: fadeIn .25s ease;
}

.modal-card {
    position: relative;
    width: 100%;
    max-width: 448px;
    max-height: 90vh;
    overflow-y: auto;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    animation: modalUp .3s ease;
    scrollbar-width: thin;
    scrollbar-color: var(--gold-2) transparent;
}
.modal-wide { max-width: 672px; padding: 0; text-align: right; }

@keyframes modalUp { from { transform: translateY(20px); opacity: 0; } to { transform: none; opacity: 1; } }

.modal-close {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 5;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: rgba(22, 19, 15, .6);
    color: var(--muted);
    transition: color .2s;
}
.modal-close:hover { color: var(--fg); }

.modal-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    border: 1px solid rgba(212, 165, 68, .4);
    background: rgba(212, 165, 68, .15);
    color: var(--gold);
    margin-bottom: 14px;
}

.modal-card h2 { font-size: 20px; font-weight: 800; }
.modal-sub { margin-top: 10px; font-size: 13px; color: var(--muted); line-height: 2; }

.consult-phone {
    margin-top: 16px;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 1px;
    background: linear-gradient(120deg, #f7e2a0 0%, #d9ab52 35%, #f9edc4 55%, #c99a3f 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.modal-card .btn-lg { margin-top: 14px; }

.modal-meta {
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 12px;
    color: var(--muted);
}
.modal-meta svg { flex-shrink: 0; color: var(--gold); }

/* مودال مقاله */
.article-hero { aspect-ratio: 16 / 9; overflow: hidden; border-radius: 20px 20px 0 0; }
.article-hero img { width: 100%; height: 100%; object-fit: cover; }

.article-body { padding: 24px; }
.article-title { font-size: 20px; font-weight: 800; line-height: 2; }
.article-excerpt { margin-top: 8px; font-size: 14px; color: var(--muted); line-height: 2; }

.article-content { margin-top: 16px; max-height: 60vh; overflow-y: auto; padding-left: 8px; }
.article-content p { font-size: 14px; line-height: 2.2; color: rgba(242, 237, 228, .85); }
.article-content p + p { margin-top: 12px; }

/* ---------- اسکرول‌بار ---------- */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #3a3126; border-radius: 8px; border: 2px solid var(--bg); }
::-webkit-scrollbar-thumb:hover { background: var(--gold-2); }

/* ---------- ریسپانسیو ---------- */
@media (min-width: 640px) {
    .only-desktop { display: inline-flex; }
    .only-mobile { display: none; }
    .brand-text small { display: block; }
    .cards-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-arrow { display: flex; }
    .articles-wrap { padding-inline: 32px; }
}

@media (min-width: 768px) {
    .main-nav { display: flex; }
    #menuBtn { display: none; }
    .mobile-menu { display: none !important; }
    .hero-content p { font-size: 16px; }
}

@media (min-width: 1024px) {
    .features-grid { grid-template-columns: repeat(4, 1fr); }
    .cards-grid { grid-template-columns: repeat(3, 1fr); }
    .about-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 639.98px) {
    .hero { min-height: 480px; }
    .hero-counter { display: none; }
}
