@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Cairo:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --bg: #0a0a0a;
  --bg2: #111111;
  --bg3: #161616;
  --card: #141414;
  --card2: #1a1a1a;
  --brand: #BBE407;
  --brand-dark: #9ab806;
  --brand-glow: rgba(187,228,7,0.28);
  --brand-dim: rgba(187,228,7,0.07);
  --brand-mid: rgba(187,228,7,0.15);
  --border: rgba(255,255,255,0.06);
  --border2: rgba(255,255,255,0.11);
  --text: #ffffff;
  --text2: #d1d5db;
  --text3: #9ca3af;
  --text4: #6b7280;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 28px;
  --radius-xl: 40px;
  --radius-pill: 999px;
  --nav-h: 76px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-ar: 'Cairo', sans-serif;
  --shadow: 0 4px 24px rgba(0,0,0,0.5);
  --shadow-brand: 0 8px 40px rgba(187,228,7,0.25);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
  overflow-x: hidden;
}
body.ar-page { font-family: var(--font-ar); direction: rtl; text-align: right; }
img { max-width: 100%; display: block; }
a { color: inherit; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── NAVIGATION ── */
.nav {
  position: sticky; top: 0; z-index: 1000;
  height: var(--nav-h);
  background: rgba(10,10,10,0.88);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; gap: 24px; }
.nav-logo { display: flex; align-items: center; gap: 11px; text-decoration: none; flex-shrink: 0; }
.nav-logo img { width: 42px; height: 42px; border-radius: 11px; transition: transform 0.2s; }
.nav-logo:hover img { transform: scale(1.08); }
.nav-logo-text { font-size: 19px; font-weight: 800; color: #fff; letter-spacing: -0.4px; line-height: 1; }
.nav-logo-text .brand { color: var(--brand); }

.nav-links { display: flex; align-items: center; gap: 2px; flex: 1; justify-content: center; }
.nav-link {
  padding: 7px 13px; border-radius: 8px;
  font-size: 14px; font-weight: 500; color: var(--text3);
  text-decoration: none; transition: color 0.15s, background 0.15s;
  white-space: nowrap; line-height: 1;
}
.nav-link:hover, .nav-link.active { color: var(--text); background: rgba(255,255,255,0.06); }
.nav-lang-link {
  display: flex; align-items: center; gap: 6px;
  padding: 7px 13px; border-radius: 8px;
  font-size: 14px; font-weight: 600; color: var(--text3);
  text-decoration: none; transition: color 0.15s, background 0.15s;
  border: 1px solid var(--border); white-space: nowrap;
}
.nav-lang-link:hover { color: var(--brand); border-color: var(--brand-mid); background: var(--brand-dim); }

.nav-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-cta {
  background: var(--brand); color: #111 !important;
  padding: 9px 20px; border-radius: var(--radius-pill);
  font-size: 13.5px; font-weight: 700;
  text-decoration: none; transition: all 0.2s;
  white-space: nowrap; line-height: 1;
  display: flex; align-items: center; gap: 7px;
}
.nav-cta:hover { background: var(--brand-dark); transform: scale(1.04); box-shadow: var(--shadow-brand); }

.hamburger {
  display: none; background: none; border: 1px solid var(--border);
  color: var(--text); cursor: pointer; padding: 8px 10px;
  border-radius: 8px; flex-direction: column; gap: 5px;
  align-items: center; justify-content: center;
}
.hamburger span { display: block; width: 20px; height: 2px; background: currentColor; border-radius: 2px; transition: all 0.25s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: rgba(10,10,10,0.97); backdrop-filter: blur(20px);
  padding: 24px; overflow-y: auto; z-index: 999;
  flex-direction: column; gap: 4px;
}
.nav-mobile.open { display: flex; }
.nav-mobile .nav-link { display: block; padding: 14px 16px; font-size: 16px; border-radius: 12px; border-bottom: none; }
.nav-mobile .nav-cta { text-align: center; justify-content: center; padding: 14px; font-size: 15px; margin-top: 16px; border-radius: 14px; }
.nav-mobile .nav-lang-link { justify-content: center; margin-top: 4px; }

@media (max-width: 860px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
}

/* ── HERO ── */
.hero {
  position: relative; overflow: hidden;
  padding: 88px 0 80px;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 90% 70% at 60% -10%, rgba(187,228,7,0.1) 0%, transparent 55%),
    radial-gradient(ellipse 50% 50% at 10% 80%, rgba(187,228,7,0.04) 0%, transparent 50%);
}
.hero-content { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--brand-dim); border: 1px solid var(--brand-mid);
  border-radius: var(--radius-pill); padding: 6px 16px;
  font-size: 12px; font-weight: 700; color: var(--brand);
  letter-spacing: 0.6px; text-transform: uppercase; margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(34px, 4.5vw, 58px);
  font-weight: 900; line-height: 1.08;
  letter-spacing: -1.5px; margin-bottom: 20px; color: #fff;
}
.hero h1 .hi { color: var(--brand); }
.hero-sub { font-size: 17px; color: var(--text3); line-height: 1.75; margin-bottom: 36px; max-width: 460px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.hero-note { font-size: 12px; color: var(--text4); margin-top: 16px; }
.hero-img-wrap { position: relative; }
.hero-img-wrap img {
  width: 380px; height: 380px; max-width: 100%;
  object-fit: cover; object-position: top center;
  border-radius: 28px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.04);
}
.hero-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 120%; height: 120%; z-index: -1;
  background: radial-gradient(circle, rgba(187,228,7,0.12) 0%, transparent 65%);
  border-radius: 50%;
}
.hero-floating {
  position: absolute; background: var(--card2);
  border: 1px solid var(--border2); border-radius: 14px;
  padding: 10px 14px; display: flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; color: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  white-space: nowrap;
}
.hero-float-1 { top: 12%; right: -5%; animation: float1 4s ease-in-out infinite; }
.hero-float-2 { bottom: 18%; left: -8%; animation: float2 5s ease-in-out infinite; }
@keyframes float1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
@keyframes float2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(8px)} }

@media (max-width: 768px) {
  .hero { padding: 60px 0 60px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-img-wrap { order: -1; }
  .hero-float-1, .hero-float-2 { display: none; }
}

/* ── BUTTONS ── */
.btn-store {
  display: inline-flex; align-items: center; gap: 9px;
  background: #fff; color: #111;
  padding: 12px 22px; border-radius: var(--radius-pill);
  text-decoration: none; font-weight: 700; font-size: 14px;
  transition: all 0.2s; border: 1.5px solid transparent;
  line-height: 1;
}
.btn-store:hover { background: var(--brand); transform: translateY(-2px); box-shadow: var(--shadow-brand); }
.btn-store svg { width: 20px; height: 20px; flex-shrink: 0; }
.btn-store-sub { display: block; font-size: 10px; font-weight: 500; opacity: 0.7; }
.btn-store-name { display: block; font-size: 15px; font-weight: 800; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--brand); color: #111;
  padding: 13px 28px; border-radius: var(--radius-pill);
  font-size: 15px; font-weight: 700;
  text-decoration: none; transition: all 0.2s; border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--brand-dark); transform: translateY(-2px); box-shadow: var(--shadow-brand); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--text);
  padding: 12px 26px; border-radius: var(--radius-pill);
  font-size: 15px; font-weight: 600;
  text-decoration: none; transition: all 0.2s;
  border: 1.5px solid var(--border2); cursor: pointer;
}
.btn-outline:hover { border-color: var(--brand); color: var(--brand); background: var(--brand-dim); }

/* ── STATS BAR ── */
.stats-bar {
  background: var(--bg2);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 36px 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat {
  text-align: center; padding: 0 24px;
  border-right: 1px solid var(--border);
}
.stat:last-child { border-right: none; }
.stat-icon { font-size: 24px; margin-bottom: 8px; }
.stat-num { font-size: 30px; font-weight: 900; color: var(--brand); line-height: 1; }
.stat-label { font-size: 13px; color: var(--text4); margin-top: 5px; font-weight: 500; }
@media (max-width: 600px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat { padding: 16px; border-right: 1px solid var(--border); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(3) { border-top: 1px solid var(--border); }
  .stat:nth-child(4) { border-top: 1px solid var(--border); border-right: none; }
}

/* ── SECTIONS ── */
.section { padding: 96px 0; }
.section-alt { background: var(--bg2); }
.section-dark { background: var(--bg3); }

.section-label {
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px;
  color: var(--brand); text-transform: uppercase;
  display: flex; align-items: center; gap: 8px; margin-bottom: 14px;
}
.section-label::before { content: ''; width: 20px; height: 2px; background: var(--brand); border-radius: 2px; }
.text-center .section-label { justify-content: center; }
.text-center .section-label::before { display: none; }

.section-title {
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 900; line-height: 1.15;
  letter-spacing: -0.8px; margin-bottom: 14px;
}
.section-title .hi { color: var(--brand); }
.section-sub {
  font-size: 16.5px; color: var(--text3);
  max-width: 540px; line-height: 1.75;
  margin-bottom: 56px;
}
.text-center { text-align: center; }
.text-center .section-sub { margin-left: auto; margin-right: auto; }

/* ── FEATURE CARDS ── */
.cards-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.cards-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
@media (max-width: 900px) { .cards-grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .cards-grid-3, .cards-grid-2 { grid-template-columns: 1fr; } }

.feat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  transition: border-color 0.2s, transform 0.25s, box-shadow 0.25s;
  position: relative; overflow: hidden;
}
.feat-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(187,228,7,0.3), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.feat-card:hover { border-color: rgba(187,228,7,0.25); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.4); }
.feat-card:hover::after { opacity: 1; }
.feat-card-icon {
  width: 56px; height: 56px;
  background: var(--brand-dim); border: 1px solid var(--brand-mid);
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  font-size: 26px; margin-bottom: 18px;
}
.feat-card-new {
  display: inline-flex; align-items: center;
  background: var(--brand); color: #111;
  font-size: 9px; font-weight: 800; letter-spacing: 1px;
  padding: 2px 8px; border-radius: var(--radius-pill);
  text-transform: uppercase; margin-bottom: 12px;
  vertical-align: middle; margin-left: 8px;
}
.feat-card-title { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.feat-card-desc { font-size: 14px; color: var(--text3); line-height: 1.65; }

/* ── HOW IT WORKS ── */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; position: relative; }
.steps-line {
  position: absolute; top: 44px; left: calc(16.6% + 24px); right: calc(16.6% + 24px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brand-mid) 30%, var(--brand-mid) 70%, transparent);
}
@media (max-width: 680px) { .steps-grid { grid-template-columns: 1fr; } .steps-line { display: none; } }

.step { text-align: center; }
.step-circle {
  width: 88px; height: 88px; border-radius: 50%;
  background: var(--card2); border: 1.5px solid var(--brand-mid);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; position: relative;
  box-shadow: 0 0 0 8px rgba(187,228,7,0.04);
}
.step-num {
  font-size: 26px; font-weight: 900; color: var(--brand);
  font-family: 'Inter', sans-serif;
}
.step-title { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.step-desc { font-size: 14px; color: var(--text3); line-height: 1.65; max-width: 220px; margin: 0 auto; }

/* ── PRICING ── */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 860px) { .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; } }

.pricing-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px 30px;
  position: relative; overflow: hidden;
}
.pricing-card.popular {
  border-color: var(--brand);
  background: linear-gradient(160deg, rgba(187,228,7,0.06) 0%, var(--card) 50%);
}
.popular-badge {
  position: absolute; top: 20px; right: 20px;
  background: var(--brand); color: #111;
  font-size: 10px; font-weight: 800; letter-spacing: 1px;
  padding: 4px 12px; border-radius: var(--radius-pill);
  text-transform: uppercase;
}
.ar-page .popular-badge { right: auto; left: 20px; }
.pricing-plan { font-size: 13px; font-weight: 700; color: var(--brand); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 10px; }
.pricing-name { font-size: 22px; font-weight: 800; margin-bottom: 4px; }
.pricing-price { font-size: 44px; font-weight: 900; color: #fff; line-height: 1.1; margin: 16px 0 4px; }
.pricing-price sup { font-size: 20px; font-weight: 700; vertical-align: super; }
.pricing-price sub { font-size: 16px; font-weight: 500; color: var(--text3); }
.pricing-period { font-size: 13px; color: var(--text4); margin-bottom: 28px; }
.pricing-features { list-style: none; margin-bottom: 28px; }
.pricing-features li {
  display: flex; align-items: flex-start; gap: 9px;
  padding: 9px 0; font-size: 14px; color: var(--text3);
  border-bottom: 1px solid var(--border);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li .check { color: var(--brand); font-weight: 900; flex-shrink: 0; margin-top: 1px; }
.pricing-features li .cross { color: var(--text4); flex-shrink: 0; margin-top: 1px; }
.pricing-btn {
  display: block; text-align: center; text-decoration: none;
  padding: 13px 20px; border-radius: var(--radius-pill);
  font-size: 14px; font-weight: 700; transition: all 0.2s; cursor: pointer;
  border: none; width: 100%;
}
.pricing-btn.solid { background: var(--brand); color: #111; }
.pricing-btn.solid:hover { background: var(--brand-dark); box-shadow: var(--shadow-brand); }
.pricing-btn.ghost { background: transparent; color: var(--text); border: 1.5px solid var(--border2); }
.pricing-btn.ghost:hover { border-color: var(--brand); color: var(--brand); }

/* ── TESTIMONIALS ── */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 860px) { .testi-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .testi-grid { grid-template-columns: 1fr; } }
.testi-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 26px;
}
.testi-stars { color: var(--brand); font-size: 13px; margin-bottom: 12px; letter-spacing: 2px; }
.testi-text { font-size: 14.5px; color: var(--text2); line-height: 1.7; margin-bottom: 18px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 10px; }
.testi-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--brand-dim); border: 1px solid var(--brand-mid);
  display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0;
}
.testi-name { font-size: 14px; font-weight: 700; }
.testi-role { font-size: 12px; color: var(--text4); margin-top: 2px; }

/* ── FAQ ── */
.faq-wrap { max-width: 740px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; background: none; border: none; color: var(--text);
  text-align: left; padding: 22px 0;
  font-size: 15.5px; font-weight: 600; font-family: var(--font);
  cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  transition: color 0.15s;
}
.ar-page .faq-q { text-align: right; font-family: var(--font-ar); }
.faq-q:hover { color: var(--brand); }
.faq-icon { width: 24px; height: 24px; border-radius: 50%; background: var(--brand-dim); border: 1px solid var(--brand-mid); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: transform 0.3s, background 0.3s; font-size: 14px; color: var(--brand); }
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--brand); color: #111; border-color: var(--brand); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease;
  font-size: 14.5px; color: var(--text3); line-height: 1.75; padding: 0;
}
.faq-item.open .faq-a { max-height: 400px; padding-bottom: 22px; }

/* ── CTA SECTION ── */
.cta-band {
  background: linear-gradient(135deg, rgba(187,228,7,0.09) 0%, var(--bg2) 60%);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  text-align: center; padding: 96px 0; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; top: -50%; left: -50%; right: -50%; bottom: -50%;
  background: radial-gradient(circle at 50% 50%, rgba(187,228,7,0.07) 0%, transparent 55%);
}
.cta-band-content { position: relative; z-index: 1; }

/* ── FEATURE DETAIL (2-col layout) ── */
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; margin-bottom: 80px; }
.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }
.ar-page .feature-row { direction: ltr; }
.ar-page .feature-row.reverse { direction: rtl; }
@media (max-width: 768px) { .feature-row, .feature-row.reverse { grid-template-columns: 1fr; direction: ltr; } }
.feature-row-img img { border-radius: var(--radius); box-shadow: var(--shadow); }
.feature-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--brand-dim); border: 1px solid var(--brand-mid);
  border-radius: var(--radius-pill); padding: 5px 14px;
  font-size: 11px; font-weight: 700; color: var(--brand);
  letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px;
}
.feature-list { list-style: none; margin-top: 20px; }
.feature-list li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 8px 0; font-size: 14.5px; color: var(--text2);
  border-bottom: 1px solid var(--border);
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li::before { content: '✓'; color: var(--brand); font-weight: 900; flex-shrink: 0; margin-top: 2px; }

/* ── PAGE HEADER ── */
.page-hero {
  padding: 80px 0 60px; text-align: center;
  background: linear-gradient(180deg, rgba(187,228,7,0.07) 0%, transparent 100%);
  border-bottom: 1px solid var(--border);
}
.breadcrumb { font-size: 13px; color: var(--text4); margin-bottom: 16px; }
.breadcrumb a { color: var(--brand); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 8px; }

/* ── FOOTER ── */
.footer { background: var(--bg2); border-top: 1px solid var(--border); padding: 64px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand img { width: 44px; height: 44px; border-radius: 12px; margin-bottom: 14px; }
.footer-brand-name { font-size: 18px; font-weight: 800; margin-bottom: 10px; }
.footer-brand-name .hi { color: var(--brand); }
.footer-brand-desc { font-size: 13.5px; color: var(--text4); line-height: 1.7; max-width: 240px; }
.footer-col-title { font-size: 11px; font-weight: 700; letter-spacing: 2px; color: var(--text3); text-transform: uppercase; margin-bottom: 18px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 13.5px; color: var(--text4); text-decoration: none; transition: color 0.15s; }
.footer-links a:hover { color: var(--brand); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-copy { font-size: 13px; color: var(--text4); }
.footer-copy a { color: var(--brand); text-decoration: none; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 9px;
  background: var(--card2); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text3); text-decoration: none; font-size: 15px;
  transition: all 0.2s;
}
.footer-social a:hover { border-color: var(--brand); color: var(--brand); background: var(--brand-dim); }

/* ── ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── UTILITIES ── */
.gap-8 { gap: 8px; }
.mt-4 { margin-top: 4px; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-0 { margin-bottom: 0 !important; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.text-brand { color: var(--brand); }
.text-muted { color: var(--text3); }
.fw-900 { font-weight: 900; }
.divider { border: none; border-top: 1px solid var(--border); margin: 48px 0; }
.tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--card2); border: 1px solid var(--border);
  border-radius: var(--radius-pill); padding: 5px 14px;
  font-size: 12px; font-weight: 600; color: var(--text3);
}
.badge-green {
  background: rgba(74,222,128,0.1); border: 1px solid rgba(74,222,128,0.2);
  color: #4ade80; border-radius: var(--radius-pill); padding: 3px 10px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.5px; display: inline-block;
}
