@font-face { font-family:'Vazirmatn'; src:url('../fonts/Vazir-Thin.woff2') format('woff2'); font-weight:100 300; font-style:normal; font-display:swap; }
@font-face { font-family:'Vazirmatn'; src:url('../fonts/Vazir-Light.woff2') format('woff2'); font-weight:300; font-style:normal; font-display:swap; }
@font-face { font-family:'Vazirmatn'; src:url('../fonts/Vazir.woff2') format('woff2'); font-weight:400 500; font-style:normal; font-display:swap; }
@font-face { font-family:'Vazirmatn'; src:url('../fonts/Vazir-Medium.woff2') format('woff2'); font-weight:600 700; font-style:normal; font-display:swap; }
@font-face { font-family:'Vazirmatn'; src:url('../fonts/Vazir-Bold.woff2') format('woff2'); font-weight:800 900; font-style:normal; font-display:swap; }

:root {
  --primary: #7C3AED;
  --primary-light: #A78BFA;
  --secondary: #06B6D4;
  --accent: #F59E0B;
  --bg: #06060F;
  --bg-card: #0F0F2A;
  --bg-card2: #13132E;
  --border: rgba(124, 58, 237, 0.2);
  --border-cyan: rgba(6, 182, 212, 0.2);
  --text: #E2E2F0;
  --text-muted: #8888AA;
  --gradient: linear-gradient(135deg, #7C3AED, #06B6D4);
  --gradient-warm: linear-gradient(135deg, #7C3AED, #EC4899);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Vazirmatn', 'Tahoma', sans-serif;
  background: var(--bg);
  color: var(--text);
  direction: rtl;
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: var(--primary-light); text-decoration: none; }
a:hover { color: var(--secondary); }

/* ── ANIMATED BG ORBS ── */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
  animation: float 8s ease-in-out infinite;
  pointer-events: none;
}
.orb-1 { width: 500px; height: 500px; background: #7C3AED; top: -100px; right: -100px; animation-delay: 0s; }
.orb-2 { width: 400px; height: 400px; background: #06B6D4; bottom: -50px; left: -80px; animation-delay: 3s; }
.orb-3 { width: 300px; height: 300px; background: #EC4899; top: 40%; left: 30%; animation-delay: 5s; }

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(30px, -30px) scale(1.05); }
  66%       { transform: translate(-20px, 20px) scale(0.96); }
}

/* ── GRID OVERLAY ── */
.grid-overlay {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(124,58,237,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124,58,237,.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; right: 0; left: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 5%;
  background: rgba(6,6,15,0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-size: 1.5rem; font-weight: 900;
  background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  letter-spacing: -.5px;
}

.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { color: var(--text-muted); font-size: .9rem; transition: color .2s; }
.nav-links a:hover { color: var(--text); }

.nav-cta {
  background: var(--gradient); color: #fff; padding: .55rem 1.4rem;
  border-radius: 50px; font-weight: 700; font-size: .88rem;
  transition: opacity .2s, transform .2s; border: none; cursor: pointer;
  box-shadow: 0 0 20px rgba(124,58,237,.4);
}
.nav-cta:hover { opacity: .88; transform: translateY(-1px); color: #fff; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center; text-align: center;
  padding: 8rem 5% 5rem;
  position: relative; overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 90% 70% at 50% -10%, rgba(124,58,237,.3) 0%, transparent 65%),
    radial-gradient(ellipse 60% 50% at 85% 90%, rgba(6,182,212,.15) 0%, transparent 55%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(236,72,153,.1) 0%, transparent 50%);
}

.hero-content { position: relative; z-index: 1; max-width: 820px; margin: auto; }

.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(124,58,237,.12); border: 1px solid rgba(124,58,237,.3);
  color: var(--primary-light); padding: .4rem 1.1rem; border-radius: 50px;
  font-size: .82rem; margin-bottom: 2rem;
  animation: fadeDown .8s ease both;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--secondary);
  box-shadow: 0 0 8px var(--secondary);
  animation: pulse 2s infinite;
}

@keyframes pulse { 0%,100% { opacity:1; } 50% { opacity:.3; } }
@keyframes fadeDown { from { opacity:0; transform:translateY(-16px); } to { opacity:1; transform:none; } }
@keyframes fadeUp   { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:none; } }

.hero h1 {
  font-size: clamp(2.4rem, 6.5vw, 4.2rem);
  font-weight: 900; line-height: 1.2;
  margin-bottom: 1.5rem;
  animation: fadeUp .9s .15s ease both;
}

.hero h1 .grad {
  background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  position: relative;
}

.hero p {
  font-size: 1.15rem; color: var(--text-muted);
  max-width: 560px; margin: 0 auto 2.5rem;
  animation: fadeUp .9s .3s ease both;
}

.hero-btns {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  animation: fadeUp .9s .45s ease both;
}

.btn-primary {
  background: var(--gradient); color: #fff;
  padding: .9rem 2.4rem; border-radius: 50px;
  font-weight: 700; font-size: 1rem;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 30px rgba(124,58,237,.45);
  display: inline-flex; align-items: center; gap: .5rem;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 45px rgba(124,58,237,.55); color: #fff; }

.btn-secondary {
  background: transparent; color: var(--text);
  padding: .9rem 2.4rem; border-radius: 50px;
  font-weight: 600; font-size: 1rem;
  border: 1px solid var(--border);
  transition: border-color .2s, background .2s;
  display: inline-flex; align-items: center; gap: .5rem;
}
.btn-secondary:hover { border-color: var(--primary-light); background: rgba(124,58,237,.08); color: var(--text); }

/* ── HERO STATS ── */
.hero-stats {
  display: flex; gap: 0; justify-content: center;
  margin-top: 4.5rem; flex-wrap: wrap;
  animation: fadeUp .9s .6s ease both;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 20px; overflow: hidden; max-width: 600px; margin-left: auto; margin-right: auto;
}

.stat {
  flex: 1; min-width: 130px; text-align: center;
  padding: 1.8rem 1rem;
  border-left: 1px solid var(--border);
  position: relative;
}
.stat:last-child { border-left: none; }

.stat-num {
  font-size: 2rem; font-weight: 900;
  background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  display: block;
}
.stat-label { font-size: .8rem; color: var(--text-muted); margin-top: .3rem; display: block; }

/* ── FLOATING CARDS in hero ── */
.hero-visual {
  position: relative; z-index: 1;
  margin-top: 3rem;
}

/* ── GLOW DIVIDER ── */
.glow-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), var(--secondary), transparent);
  border: none; margin: 0;
  opacity: .4;
}

/* ── SECTIONS ── */
section { padding: 6rem 5%; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-tag {
  display: inline-block;
  background: rgba(6,182,212,.1); border: 1px solid rgba(6,182,212,.25);
  color: var(--secondary); padding: .3rem .9rem; border-radius: 50px;
  font-size: .78rem; margin-bottom: 1rem; font-weight: 600; letter-spacing: .5px;
  text-transform: uppercase;
}
.section-tag.purple {
  background: rgba(124,58,237,.1); border-color: rgba(124,58,237,.25);
  color: var(--primary-light);
}
.section-header h2 {
  font-size: clamp(1.9rem, 4vw, 2.7rem); font-weight: 800; margin-bottom: .8rem;
  line-height: 1.3;
}
.section-header h2 span { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.section-header p { color: var(--text-muted); max-width: 540px; margin: auto; font-size: .98rem; }

/* ── FEATURES ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.5rem; max-width: 1100px; margin: auto;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px; padding: 2rem;
  transition: transform .3s, border-color .3s, box-shadow .3s;
  position: relative; overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 100px; height: 100px;
  background: radial-gradient(circle, rgba(124,58,237,.12), transparent);
  border-radius: 50%;
  transform: translate(30px, -30px);
}
.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(124,58,237,.45);
  box-shadow: 0 12px 50px rgba(124,58,237,.14);
}

.feature-icon {
  width: 56px; height: 56px; border-radius: 16px;
  background: rgba(124,58,237,.12); border: 1px solid rgba(124,58,237,.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin-bottom: 1.4rem;
  transition: background .3s;
}
.feature-card:hover .feature-icon {
  background: rgba(124,58,237,.22);
}

.feature-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: .5rem; }
.feature-card p { color: var(--text-muted); font-size: .9rem; line-height: 1.7; }

/* ── MARQUEE / TECH STRIP ── */
.marquee-section {
  padding: 2rem 0; overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(124,58,237,.03);
}
.marquee-track {
  display: flex; gap: 3rem; width: max-content;
  animation: marquee 20s linear infinite;
}
.marquee-item {
  display: flex; align-items: center; gap: .7rem;
  color: var(--text-muted); font-size: .9rem; white-space: nowrap;
}
.marquee-item span { font-size: 1.1rem; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── HOW IT WORKS ── */
.how-bg { background: rgba(15,15,42,.6); }

.steps {
  display: flex; gap: 0; max-width: 960px; margin: auto;
  flex-wrap: wrap; justify-content: center;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 24px; overflow: hidden;
}

.step {
  flex: 1; min-width: 200px; text-align: center;
  padding: 2.5rem 1.5rem; position: relative;
  border-left: 1px solid var(--border);
  transition: background .3s;
}
.step:last-child { border-left: none; }
.step:hover { background: rgba(124,58,237,.05); }

.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--gradient);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; font-weight: 900; margin: 0 auto 1.2rem;
  box-shadow: 0 4px 24px rgba(124,58,237,.4);
}
.step h3 { font-size: 1rem; font-weight: 700; margin-bottom: .5rem; }
.step p { color: var(--text-muted); font-size: .88rem; }

/* ── PRICING ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem; max-width: 920px; margin: auto;
}

.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px; padding: 2.2rem;
  text-align: center; position: relative;
  transition: transform .3s, box-shadow .3s;
}
.price-card:hover { transform: translateY(-6px); box-shadow: 0 16px 50px rgba(124,58,237,.16); }

.price-card.featured {
  border-color: transparent;
  background: var(--bg-card);
  position: relative;
}
.price-card.featured::before {
  content: '';
  position: absolute; inset: -1px;
  background: var(--gradient);
  border-radius: 25px;
  z-index: -1;
}
.price-card.featured::after {
  content: '';
  position: absolute; inset: 0;
  background: var(--bg-card);
  border-radius: 24px;
  z-index: -1;
}

.featured-badge {
  position: absolute; top: -13px; right: 50%; transform: translateX(50%);
  background: var(--gradient); color: #fff;
  padding: .25rem 1rem; border-radius: 50px; font-size: .74rem; font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(124,58,237,.4);
}

.price-icon { font-size: 2.8rem; margin-bottom: 1rem; display: block; }
.price-name { font-size: 1.15rem; font-weight: 700; margin-bottom: .3rem; }
.price-coins {
  font-size: 2.5rem; font-weight: 900;
  background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  display: block; margin: .5rem 0;
}
.price-coins sub { font-size: 1rem; font-weight: 400; color: var(--text-muted); -webkit-text-fill-color: var(--text-muted); }
.price-amount { font-size: 1.1rem; font-weight: 700; color: var(--text); margin: .8rem 0 1.5rem; }
.price-features { list-style: none; text-align: right; margin-bottom: 1.8rem; }
.price-features li {
  color: var(--text-muted); font-size: .87rem;
  padding: .4rem 0; border-bottom: 1px solid rgba(255,255,255,.04);
  display: flex; align-items: center; gap: .5rem;
}
.price-features li::before { content: '✓'; color: var(--secondary); font-weight: 700; flex-shrink: 0; }

.buy-btn {
  display: block; width: 100%;
  background: var(--gradient); color: #fff;
  padding: .85rem; border-radius: 50px;
  font-weight: 700; font-size: .95rem;
  transition: opacity .2s, transform .2s;
  box-shadow: 0 4px 20px rgba(124,58,237,.3);
  border: none; cursor: pointer; font-family: inherit;
}
.buy-btn:hover { opacity: .88; transform: translateY(-2px); color: #fff; }
.buy-btn.outline {
  background: transparent; border: 1px solid var(--border); color: var(--text);
  box-shadow: none;
}
.buy-btn.outline:hover { border-color: var(--primary-light); background: rgba(124,58,237,.08); }

/* ── TESTIMONIALS / NUMBERS ── */
.numbers-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem; max-width: 900px; margin: auto;
}
.number-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 20px; padding: 2rem; text-align: center;
  transition: transform .3s;
}
.number-card:hover { transform: translateY(-4px); }
.number-card .num {
  font-size: 2.8rem; font-weight: 900;
  background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  display: block; line-height: 1;
}
.number-card .num-label { color: var(--text-muted); font-size: .88rem; margin-top: .5rem; }
.number-card .num-icon { font-size: 2rem; margin-bottom: .8rem; display: block; }

/* ── FAQ ── */
.faq-list { max-width: 740px; margin: auto; }

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px; margin-bottom: 1rem; overflow: hidden;
  transition: border-color .2s;
}
.faq-item:hover { border-color: rgba(124,58,237,.35); }
.faq-item.open { border-color: rgba(124,58,237,.4); }

.faq-q {
  width: 100%; text-align: right; background: none; border: none;
  color: var(--text); font-family: inherit; font-size: .97rem; font-weight: 600;
  padding: 1.3rem 1.6rem; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq-icon { color: var(--primary-light); font-size: 1.3rem; transition: transform .3s; flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-a {
  max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s;
  color: var(--text-muted); font-size: .92rem;
}
.faq-item.open .faq-a { max-height: 200px; padding: 0 1.6rem 1.4rem; }

/* ── CTA BANNER ── */
.cta-section {
  text-align: center; padding: 6rem 5%;
  position: relative; overflow: hidden;
}
.cta-section .cta-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 90% 120% at 50% 50%, rgba(124,58,237,.18) 0%, transparent 65%);
}
.cta-section .cta-content { position: relative; z-index: 1; }
.cta-section h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; margin-bottom: 1rem; }
.cta-section p { color: var(--text-muted); margin-bottom: 2.5rem; max-width: 480px; margin-left: auto; margin-right: auto; }

/* ── FOOTER ── */
footer {
  background: var(--bg-card2);
  border-top: 1px solid var(--border);
  padding: 4rem 5% 2rem;
}

.footer-grid {
  display: grid; grid-template-columns: 2fr repeat(3, 1fr);
  gap: 3rem; margin-bottom: 3rem;
}

.footer-brand .nav-logo { font-size: 1.4rem; display: inline-block; margin-bottom: .8rem; }
.footer-brand p { color: var(--text-muted); font-size: .87rem; margin-top: .5rem; line-height: 1.9; max-width: 260px; }
.footer-col h4 { font-size: .92rem; font-weight: 700; margin-bottom: 1.2rem; color: var(--text); }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: .7rem; }
.footer-col ul a { color: var(--text-muted); font-size: .87rem; transition: color .2s; }
.footer-col ul a:hover { color: var(--primary-light); }
.footer-contact-info { color: var(--text-muted); font-size: .87rem; line-height: 1.9; display: inline-block; }

.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 1.8rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { color: var(--text-muted); font-size: .82rem; }


/* ── INNER PAGES ── */
.page-hero {
  padding: 8rem 5% 4rem; text-align: center;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(124,58,237,.2) 0%, transparent 65%);
  position: relative; overflow: hidden;
}
.page-hero h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 900; margin-bottom: 1rem; }
.page-hero h1 span { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.page-hero p { color: var(--text-muted); max-width: 560px; margin: auto; }

.prose-section { padding: 4rem 5%; max-width: 820px; margin: auto; }
.prose-section h2 { font-size: 1.4rem; font-weight: 700; margin: 2.5rem 0 .8rem; color: var(--primary-light); }
.prose-section p { color: var(--text-muted); margin-bottom: 1rem; font-size: .95rem; }
.prose-section ul { color: var(--text-muted); padding-right: 1.5rem; margin-bottom: 1rem; }
.prose-section ul li { margin-bottom: .5rem; font-size: .95rem; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 3rem; max-width: 960px; margin: auto; }
.contact-info h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 1rem; }
.contact-info p { color: var(--text-muted); margin-bottom: 2rem; }
.contact-item {
  display: flex; align-items: center; gap: 1rem;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 14px; padding: 1.2rem 1.5rem; margin-bottom: 1rem;
  transition: border-color .2s;
}
.contact-item:hover { border-color: rgba(124,58,237,.4); }
.contact-item .ci-icon { font-size: 1.4rem; flex-shrink: 0; }
.contact-item .ci-label { font-size: .8rem; color: var(--text-muted); margin-bottom: .2rem; }
.contact-item .ci-val { font-size: .95rem; font-weight: 600; }

.contact-form {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 24px; padding: 2.5rem;
}
.form-group { margin-bottom: 1.4rem; }
.form-group label { display: block; font-size: .87rem; font-weight: 600; margin-bottom: .5rem; color: var(--text-muted); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; background: rgba(255,255,255,.04); border: 1px solid var(--border);
  border-radius: 12px; padding: .85rem 1.1rem; color: var(--text);
  font-family: inherit; font-size: .95rem; transition: border-color .2s;
  outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: rgba(124,58,237,.5);
  background: rgba(124,58,237,.05);
}
.form-group textarea { resize: vertical; min-height: 130px; }

/* ── ABOUT TIMELINE ── */
.timeline { max-width: 680px; margin: auto; position: relative; padding-right: 2rem; }
.timeline::before {
  content: '';
  position: absolute; right: 0; top: 0; bottom: 0;
  width: 2px; background: linear-gradient(to bottom, var(--primary), var(--secondary), transparent);
}
.tl-item { position: relative; margin-bottom: 2.5rem; padding-right: 2.5rem; }
.tl-dot {
  position: absolute; right: -7px; top: .4rem;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--gradient); box-shadow: 0 0 12px rgba(124,58,237,.5);
}
.tl-date { font-size: .8rem; color: var(--secondary); font-weight: 600; margin-bottom: .3rem; }
.tl-item h3 { font-size: 1rem; font-weight: 700; margin-bottom: .3rem; }
.tl-item p { color: var(--text-muted); font-size: .9rem; }

/* ── TEAM CARDS ── */
.team-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem; max-width: 800px; margin: auto;
}
.team-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 20px; padding: 2rem; text-align: center;
}
.team-avatar {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--gradient); margin: 0 auto 1rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; box-shadow: 0 4px 20px rgba(124,58,237,.3);
}
.team-name { font-weight: 700; margin-bottom: .2rem; }
.team-role { color: var(--text-muted); font-size: .85rem; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .steps { flex-direction: column; }
}
@media (max-width: 640px) {
  nav { padding: .85rem 4%; }
  .nav-links { display: none; }
  .hero-stats { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .stat { border-left: none; border-bottom: 1px solid var(--border); }
}

/* ── SCROLL ANIMATE ── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
