/* ═══════════════════════════════════════════════
   META GRAM — Glassmorphism Premium Design
   ═══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Tajawal:wght@400;500;700;800;900&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg-deep: #02020a;
  --bg-card: rgba(255, 255, 255, 0.03);
  --bg-card-hover: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.15);
  --text: #FFFFFF;
  --text-muted: #A1A1AA;
  --text-light: #71717A;
  --neon-green: #00FF88;
  --neon-blue: #00D4FF;
  --neon-purple: #B5179E;
  --green-glow: 0 0 20px #00FF88, 0 0 40px rgba(0, 255, 136, 0.4);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Tajawal', 'Inter', sans-serif;
  background: var(--bg-deep);
  color: var(--text);
  line-height: 1.6;
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ═══ خلفية متعددة الطبقات ═══ */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(124, 58, 237, 0.4) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 0%, rgba(59, 130, 246, 0.35) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(236, 72, 153, 0.25) 0%, transparent 60%),
    radial-gradient(ellipse at 30% 100%, rgba(0, 212, 255, 0.3) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 100%, rgba(0, 255, 136, 0.2) 0%, transparent 60%);
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

/* جميع الأقسام تظهر فوق الخلفية */
.site-header,
.hero,
.section,
.cta-section,
.site-footer,
.alert-bar,
header,
footer,
section {
  position: relative;
  z-index: 10;
}

/* ═══ Header ═══ */
.site-header {
  position: fixed;
  top: 16px; left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: 1280px;
  z-index: 100;
  background: rgba(10, 10, 18, 0.7);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: all 0.3s ease;
  padding: 0;
  display: block;
  height: auto;
}

.site-header.scrolled {
  background: rgba(10, 10, 18, 0.9);
}

.header-inner {
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 28px;
  max-width: none;
  margin: 0;
  height: auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, #7C3AED 0%, #3B82F6 50%, #06B6D4 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 20px;
  color: #fff;
  box-shadow:
    0 0 24px rgba(124, 58, 237, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.brand-logo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 30%, rgba(255,255,255,0.4) 50%, transparent 70%);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.brand-name {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
}

.brand-name span {
  background: linear-gradient(135deg, #7C3AED, #06B6D4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.main-nav {
  display: flex;
  gap: 4px;
  margin-right: auto;
}

.main-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 9px 16px;
  border-radius: 10px;
  transition: all 0.3s;
}

.main-nav a:hover {
  color: var(--neon-green);
  background: rgba(0, 255, 136, 0.08);
  box-shadow:
    0 0 16px rgba(0, 255, 136, 0.4),
    inset 0 0 0 1px rgba(0, 255, 136, 0.3);
}

.main-nav a.active {
  color: var(--neon-green);
  background: rgba(0, 255, 136, 0.1);
  box-shadow:
    0 0 20px rgba(0, 255, 136, 0.5),
    inset 0 0 0 1px rgba(0, 255, 136, 0.4);
}

.header-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* ═══ الأزرار الزجاجية ═══ */
.btn-outline {
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: var(--text);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-block;
}

.btn-outline:hover {
  background: rgba(0, 255, 136, 0.08);
  border-color: var(--neon-green);
  color: var(--neon-green);
  box-shadow:
    0 0 20px rgba(0, 255, 136, 0.4),
    0 0 40px rgba(0, 255, 136, 0.2),
    inset 0 0 20px rgba(0, 255, 136, 0.05);
  transform: translateY(-2px);
}

.btn-fill {
  padding: 10px 22px;
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.15), rgba(0, 212, 255, 0.15));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 255, 136, 0.3);
  border-radius: 10px;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.btn-fill:hover {
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.25), rgba(0, 212, 255, 0.25));
  border-color: var(--neon-green);
  box-shadow:
    0 0 30px rgba(0, 255, 136, 0.5),
    0 0 60px rgba(0, 255, 136, 0.25),
    inset 0 0 20px rgba(0, 255, 136, 0.1);
  transform: translateY(-2px);
}

.btn-large {
  padding: 16px 32px;
  font-size: 15px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 8px;
}

/* ═══ Hero ═══ */
.hero {
  padding: 160px 24px 80px;
  text-align: center;
  position: relative;
  z-index: 10;
  max-width: 1280px;
  margin: 0 auto;
}

.hero-inner {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 18px;
  border-radius: 24px;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 28px;
}

.hero-badge::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--neon-green);
  box-shadow: 0 0 12px var(--neon-green);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.hero-title {
  font-size: 56px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -2px;
  margin-bottom: 24px;
  color: #fff;
  text-shadow: 0 0 80px rgba(124, 58, 237, 0.3);
}

.hero-title span {
  background: linear-gradient(135deg, var(--neon-green), var(--neon-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ═══ Hero Stats ═══ */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 800px;
  margin: 60px auto 0;
  padding: 32px;
  background: rgba(10, 10, 18, 0.5);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 20px;
  position: relative;
}

.stat-item {
  text-align: center;
  padding: 0 20px;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 0; top: 20%;
  width: 1px; height: 60%;
  background: linear-gradient(180deg, transparent, rgba(0, 255, 136, 0.3), transparent);
}

.stat-num {
  font-size: 36px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--neon-green), var(--neon-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 6px;
  letter-spacing: -1px;
}

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ═══ Section ═══ */
.section {
  padding: 80px 24px;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.section-head {
  text-align: center;
  margin-bottom: 50px;
}

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--neon-green);
  background: rgba(0, 255, 136, 0.08);
  border: 1px solid rgba(0, 255, 136, 0.2);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.section-title {
  font-size: 44px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -1.5px;
  margin-bottom: 14px;
  line-height: 1.15;
}

.section-title span {
  background: linear-gradient(135deg, var(--neon-green), var(--neon-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-sub {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ═══ Steps Grid ═══ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.step-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  position: relative;
  transition: all 0.4s;
  overflow: hidden;
}

.step-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 255, 136, 0.3);
  box-shadow:
    0 0 40px rgba(0, 255, 136, 0.15),
    0 20px 60px rgba(0, 0, 0, 0.3);
}

.step-num {
  position: absolute;
  top: -16px;
  right: 50%;
  transform: translateX(50%);
  width: 40px; height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--neon-green), var(--neon-blue));
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 15px;
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
  z-index: 2;
}

.step-icon {
  width: 64px; height: 64px;
  margin: 16px auto 20px;
  border-radius: 16px;
  background: rgba(0, 255, 136, 0.08);
  border: 1px solid rgba(0, 255, 136, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  position: relative;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.step-title {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

.step-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}
/* ═══ Features Grid ═══ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  position: relative;
  transition: all 0.4s;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 255, 136, 0.3);
  box-shadow:
    0 0 40px rgba(0, 255, 136, 0.15),
    0 20px 60px rgba(0, 0, 0, 0.3);
}

.feature-icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(59, 130, 246, 0.2));
  border: 1px solid rgba(124, 58, 237, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
  position: relative;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 24px rgba(124, 58, 237, 0.2);
}

.feature-title {
  font-size: 19px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.feature-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ═══ Pricing Grid ═══ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.price-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px 32px;
  position: relative;
  transition: all 0.4s;
  overflow: hidden;
}

.price-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 255, 136, 0.3);
  box-shadow: 0 0 40px rgba(0, 255, 136, 0.15);
}

.price-card.featured {
  background: linear-gradient(180deg, rgba(0, 255, 136, 0.08), rgba(0, 212, 255, 0.04));
  border-color: rgba(0, 255, 136, 0.4);
  box-shadow:
    0 0 60px rgba(0, 255, 136, 0.2),
    0 30px 80px rgba(0, 0, 0, 0.4);
}

.price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--neon-green), var(--neon-blue));
  color: #000;
  padding: 6px 18px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

.price-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.price-card.featured .price-name {
  color: var(--neon-green);
}

.price-amount {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 6px;
}

.price-amount sup,
.price-amount-currency {
  font-size: 20px;
  color: var(--neon-green);
  font-weight: 700;
  vertical-align: top;
}

.price-amount-num {
  font-size: 60px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -2.5px;
  line-height: 1;
}

.price-period {
  font-size: 14px;
  color: var(--text-muted);
}

.price-features {
  list-style: none;
  margin: 28px 0;
  padding: 0;
}

.price-features li {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 10px 0;
  font-size: 14px;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.price-features li:last-child {
  border-bottom: none;
}

.price-card.featured .price-features li {
  color: var(--text);
}

.price-features li .check {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(0, 255, 136, 0.15);
  border: 1px solid rgba(0, 255, 136, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neon-green);
  font-weight: 700;
  font-size: 11px;
  flex-shrink: 0;
}

.price-cta {
  display: block;
  text-align: center;
  padding: 14px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  text-decoration: none;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.3s;
}

.price-cta:hover {
  background: rgba(0, 255, 136, 0.08);
  border-color: var(--neon-green);
  color: var(--neon-green);
  box-shadow:
    0 0 24px rgba(0, 255, 136, 0.4),
    inset 0 0 16px rgba(0, 255, 136, 0.05);
  transform: translateY(-2px);
}

.price-card.featured .price-cta {
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.2), rgba(0, 212, 255, 0.2));
  border-color: rgba(0, 255, 136, 0.4);
  color: var(--neon-green);
}

.price-card.featured .price-cta:hover {
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.3), rgba(0, 212, 255, 0.3));
  box-shadow:
    0 0 30px rgba(0, 255, 136, 0.5),
    0 0 60px rgba(0, 255, 136, 0.25);
}

/* ═══ FAQ ═══ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 16px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.3s;
}

.faq-item:hover {
  border-color: rgba(0, 255, 136, 0.2);
}

.faq-item.open {
  border-color: rgba(0, 255, 136, 0.4);
  box-shadow: 0 0 24px rgba(0, 255, 136, 0.15);
}

.faq-q {
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s;
}

.faq-q:hover {
  color: var(--neon-green);
}

.faq-icon {
  font-size: 18px;
  color: var(--neon-green);
  transition: transform 0.3s;
  width: 28px; height: 28px;
  border-radius: 8px;
  background: rgba(0, 255, 136, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: linear-gradient(135deg, var(--neon-green), var(--neon-blue));
  color: #000;
  box-shadow: 0 0 16px rgba(0, 255, 136, 0.5);
}

.faq-a {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  transition: all 0.3s;
}

.faq-item.open .faq-a {
  max-height: 500px;
  padding: 0 24px 22px;
}

/* ═══ CTA Section ═══ */
.cta-section {
  margin: 60px 24px;
  padding: 80px 40px;
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.08), rgba(0, 212, 255, 0.04));
  backdrop-filter: blur(24px);
  border: 1px solid rgba(0, 255, 136, 0.2);
  border-radius: 32px;
  text-align: center;
  max-width: 1100px;
  margin-right: auto;
  margin-left: auto;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 80px rgba(0, 255, 136, 0.1);
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0, 255, 136, 0.15), transparent 70%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-title {
  font-size: 44px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -1.5px;
  margin-bottom: 14px;
}

.cta-sub {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 36px;
}

/* ═══ Footer ═══ */
.site-footer {
  padding: 60px 24px 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 60px;
  position: relative;
  z-index: 10;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-brand-text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-top: 18px;
  max-width: 320px;
}

.footer-col h4 {
  font-size: 13px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--neon-green);
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.social-icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.3s;
  font-size: 16px;
}

.social-icon:hover {
  background: rgba(0, 255, 136, 0.08);
  border-color: var(--neon-green);
  color: var(--neon-green);
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.4);
  transform: translateY(-2px);
}

.footer-bottom {
  padding-top: 28px;
  text-align: center;
  font-size: 12px;
  color: var(--text-light);
}

.footer-bottom a {
  color: var(--neon-green);
  text-decoration: none;
}

/* ═══ Floating Telegram Button ═══ */
.float-tg {
  position: fixed;
  bottom: 24px; left: 24px;
  z-index: 50;
  width: 60px; height: 60px;
  border-radius: 18px;
  background: linear-gradient(135deg, #229ED9 0%, #1a7eb0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 26px;
  box-shadow:
    0 10px 30px rgba(34, 158, 217, 0.5),
    0 0 24px rgba(34, 158, 217, 0.3);
  transition: all 0.3s;
}

.float-tg:hover {
  transform: scale(1.1) translateY(-4px);
  box-shadow:
    0 15px 40px rgba(34, 158, 217, 0.6),
    0 0 30px rgba(34, 158, 217, 0.5);
}

/* ═══ Alert Bar ═══ */
.alert-bar {
  background: rgba(239, 68, 68, 0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #FCA5A5;
  padding: 14px 20px;
  border-radius: 12px;
  margin: 90px 24px 20px;
  font-size: 13px;
  text-align: center;
  max-width: 1280px;
  margin-right: auto;
  margin-left: auto;
}

.alert-bar.warn {
  background: rgba(245, 158, 11, 0.1);
  border-color: rgba(245, 158, 11, 0.3);
  color: #FBBF24;
}

/* ═══ Animations ═══ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-up { animation: fadeUp 0.8s ease both; }
.fade-up-1 { animation-delay: 0.1s; }
.fade-up-2 { animation-delay: 0.2s; }
.fade-up-3 { animation-delay: 0.3s; }

/* ═══ Mobile Responsive ═══ */
@media (max-width: 980px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .hero-title { font-size: 42px; }
  .section-title { font-size: 32px; }
}

@media (max-width: 780px) {
  .menu-toggle { display: block; }
  .main-nav { display: none; }
  .header-actions { display: none; }
  .main-nav.open {
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: absolute;
    top: 100%;
    right: 0; left: 0;
    background: rgba(10, 10, 18, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    margin-top: 8px;
    padding: 14px;
    border: 1px solid var(--border);
  }
  .main-nav.open a {
    padding: 14px;
    border-radius: 8px;
  }
  .hero-stats {
    grid-template-columns: 1fr;
  }
  .hero-stats .stat-item:not(:last-child)::after { display: none; }
  .stat-item {
    padding: 16px 0;
    border-bottom: 1px solid rgba(0, 255, 136, 0.15);
  }
  .stat-item:last-child { border-bottom: none; }
  .hero-title { font-size: 32px; }
  .hero-sub { font-size: 15px; }
  .section-title { font-size: 26px; }
  .cta-title { font-size: 28px; }
  .footer-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
}

@media (max-width: 500px) {
  .header-inner { padding: 12px 16px; }
  .section { padding: 50px 16px; }
  .hero { padding: 130px 16px 50px; }
  .price-card { padding: 30px 22px; }
  .price-amount-num { font-size: 48px; }
}