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

    :root {
      --bg:        #0a0e14;
      --bg2:       #0f1520;
      --teal:      #00C9B8;
      --teal-dim:  #00877A;
      --teal-glow: rgba(0,201,184,0.15);
      --teal-line: rgba(0,201,184,0.25);
      --glass:     rgba(255,255,255,0.04);
      --glass-b:   rgba(255,255,255,0.08);
      --text:      #E8F0EE;
      --muted:     rgba(232,240,238,0.45);
    }

    html { scroll-behavior: smooth; }
    html, body { max-width: 100%; overflow-x: hidden; }
    body {
      font-family: 'Vazirmatn', sans-serif;
      background: var(--bg);
      color: var(--text);
      -webkit-font-smoothing: antialiased;
    }

    /* ── CANVAS BACKGROUND ── */
    #bg-canvas {
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      z-index: 0;
      pointer-events: none;
    }

    /* Grid overlay */
    .grid-overlay {
      position: fixed; inset: 0; z-index: 0; pointer-events: none;
      background-image:
        linear-gradient(rgba(0,201,184,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,201,184,0.04) 1px, transparent 1px);
      background-size: 60px 60px;
      mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
    }

    /* Scanline effect */
    .scanlines {
      position: fixed; inset: 0; z-index: 0; pointer-events: none;
      background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0,0,0,0.06) 2px,
        rgba(0,0,0,0.06) 4px
      );
    }

    /* Ambient glow orbs */
    .ambient {
      position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden;
    }
    .amb-orb {
      position: absolute; border-radius: 50%; filter: blur(100px); opacity: 0.18;
    }
    .amb-orb1 {
      width: 600px; height: 600px;
      background: var(--teal);
      top: -200px; right: -150px;
      animation: orbdrift 20s ease-in-out infinite alternate;
    }
    .amb-orb2 {
      width: 400px; height: 400px;
      background: #0055ff;
      bottom: 5%; left: -100px;
      animation: orbdrift 26s ease-in-out infinite alternate-reverse;
    }
    .amb-orb3 {
      width: 300px; height: 300px;
      background: #7700ff;
      top: 45%; left: 40%;
      animation: orbdrift 32s ease-in-out infinite alternate;
    }
    @keyframes orbdrift {
      from { transform: translate(0, 0) scale(1); }
      to   { transform: translate(40px, 50px) scale(1.08); }
    }

    /* Everything above bg */
    nav, section, footer { position: relative; z-index: 10; }

    /* ── ICON BASE ── */
    .icon {
      display: inline-block; flex-shrink: 0;
      fill: none; stroke: currentColor;
      stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round;
    }

    /* ── NAV ── */
    nav {
      position: fixed; top: 0; width: 100%; z-index: 200;
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 5%; height: 60px;
      background: rgba(10,14,20,0.85);
      backdrop-filter: blur(28px);
      border-bottom: 1px solid var(--glass-b);
      gap: 12px;
    }
    .logo {
      font-weight: 900; font-size: 0.95rem;
      color: var(--text); display: flex; align-items: center; gap: 8px;
      white-space: nowrap; flex-shrink: 0;
    }
    .logo-dot {
      width: 7px; height: 7px; border-radius: 50%;
      background: var(--teal); flex-shrink: 0;
      animation: pulse 2.4s ease infinite;
    }
    @keyframes pulse {
      0%,100% { box-shadow: 0 0 0 0 rgba(0,201,184,0.7); }
      50%      { box-shadow: 0 0 0 7px rgba(0,201,184,0); }
    }
    .nav-links { display: flex; gap: 24px; }
    .nav-links a {
      font-size: 0.82rem; color: var(--muted);
      text-decoration: none; transition: color .2s; white-space: nowrap;
    }
    .nav-links a:hover { color: var(--teal); }
    .nav-phone {
      display: flex; align-items: center; gap: 7px;
      font-size: 0.78rem; font-weight: 600; color: var(--text);
      text-decoration: none; direction: ltr; white-space: nowrap;
      transition: color .2s; flex-shrink: 0;
    }
    .nav-phone:hover { color: var(--teal); }
    .nav-phone .icon { color: var(--teal); }
    .nav-pill {
      font-size: 0.78rem; font-weight: 600;
      color: var(--bg); background: var(--teal);
      padding: 7px 16px; border-radius: 30px;
      text-decoration: none; white-space: nowrap; flex-shrink: 0;
      transition: opacity .2s, transform .2s, box-shadow .2s;
    }
    .nav-pill:hover { opacity: 0.88; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,201,184,0.4); }

    /* ── HERO ── */
    .hero {
      min-height: 100vh;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      text-align: center;
      padding: 80px 6% 60px;
      position: relative; overflow: hidden;
    }

    /* Floating gaming icon particles (rendered via JS on canvas) */

    /* Corner decorations */
    .hero-corner {
      position: absolute; opacity: 0.12;
      pointer-events: none;
    }
    .hero-corner.tl { top: 80px; right: 24px; }
    .hero-corner.br { bottom: 60px; left: 24px; transform: rotate(180deg); }

    /* Neon ring behind title */
    .hero-ring {
      position: absolute;
      top: 50%; left: 50%; transform: translate(-50%, -50%);
      width: min(520px, 90vw); height: min(520px, 90vw);
      border-radius: 50%;
      border: 1px solid rgba(0,201,184,0.08);
      pointer-events: none;
    }
    .hero-ring::before {
      content: '';
      position: absolute; inset: 30px;
      border-radius: 50%;
      border: 1px solid rgba(0,201,184,0.05);
    }
    .hero-ring::after {
      content: '';
      position: absolute; inset: -30px;
      border-radius: 50%;
      border: 1px solid rgba(0,201,184,0.04);
    }

    .hero-label {
      font-size: 0.65rem; font-weight: 600; letter-spacing: 0.18em;
      text-transform: uppercase; color: var(--teal);
      margin-bottom: 24px;
      display: flex; align-items: center; gap: 10px; justify-content: center;
      opacity: 0; animation: up .6s .1s ease forwards; max-width: 100%;
    }
    .hero-label::before, .hero-label::after {
      content: ''; flex: 1; max-width: 36px; height: 1px;
      background: var(--teal-line);
    }
    .hero h1 {
      font-size: clamp(2.4rem, 10vw, 6.5rem);
      font-weight: 900; line-height: 1.05; letter-spacing: -0.02em;
      opacity: 0; animation: up .6s .2s ease forwards; max-width: 100%;
    }
    .hero h1 em {
      font-style: normal; color: transparent;
      -webkit-text-stroke: 1.5px var(--teal);
      text-shadow: 0 0 60px rgba(0,201,184,0.25);
    }
    .hero-sub {
      margin-top: 20px;
      font-size: clamp(0.9rem, 3.5vw, 1.1rem);
      font-weight: 300; color: var(--muted);
      max-width: min(460px, 90vw); line-height: 1.85;
      opacity: 0; animation: up .6s .3s ease forwards;
    }

    /* Stats bar */
    .hero-stats {
      display: flex; gap: 0; flex-wrap: wrap; justify-content: center;
      margin-top: 40px;
      opacity: 0; animation: up .6s .35s ease forwards;
      background: var(--glass); border: 1px solid var(--glass-b);
      backdrop-filter: blur(20px);
      border-radius: 14px; overflow: hidden;
      max-width: min(520px, 92vw);
    }
    .hero-stat {
      flex: 1; min-width: 90px;
      padding: 16px 12px; text-align: center;
      border-left: 1px solid var(--glass-b);
    }
    .hero-stat:last-child { border-left: none; }
    .stat-n {
      font-size: clamp(1.1rem, 3.5vw, 1.5rem);
      font-weight: 900; color: var(--teal);
      display: block; line-height: 1;
    }
    .stat-l {
      font-size: 0.65rem; font-weight: 300;
      color: var(--muted); margin-top: 4px;
      display: block;
    }

    .hero-actions {
      margin-top: 28px;
      display: flex; gap: 12px; flex-wrap: wrap; justify-content: center;
      opacity: 0; animation: up .6s .45s ease forwards; max-width: 100%;
    }
    .btn-main {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--teal); color: var(--bg);
      font-family: 'Vazirmatn', sans-serif; font-weight: 700; font-size: 0.88rem;
      padding: 13px 28px; border-radius: 8px;
      border: none; cursor: pointer; text-decoration: none;
      box-shadow: 0 0 30px rgba(0,201,184,0.3);
      transition: transform .2s, box-shadow .2s;
    }
    .btn-main:hover { transform: translateY(-2px); box-shadow: 0 10px 36px rgba(0,201,184,0.45); }
    .btn-ghost {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(255,255,255,0.05); color: var(--muted);
      font-family: 'Vazirmatn', sans-serif; font-weight: 400; font-size: 0.88rem;
      padding: 13px 28px; border-radius: 8px;
      border: 1px solid var(--glass-b);
      cursor: pointer; text-decoration: none;
      backdrop-filter: blur(12px);
      transition: border-color .2s, color .2s, background .2s;
    }
    .btn-ghost:hover { border-color: var(--teal-line); color: var(--teal); background: rgba(0,201,184,0.05); }
    .scroll-hint {
      position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
      opacity: 0; animation: up .6s .7s ease forwards;
    }
    .scroll-line {
      width: 1px; height: 44px;
      background: linear-gradient(to bottom, var(--teal), transparent); margin: 0 auto;
    }

    /* ── MARQUEE TICKER ── */
    .ticker {
      position: relative; z-index: 10;
      border-top: 1px solid var(--glass-b);
      border-bottom: 1px solid var(--glass-b);
      background: rgba(0,201,184,0.03);
      overflow: hidden; padding: 12px 0;
    }
    .ticker-track {
      display: flex; gap: 48px;
      animation: ticker 22s linear infinite;
      width: max-content;
    }
    .ticker-item {
      display: flex; align-items: center; gap: 10px;
      font-size: 0.75rem; font-weight: 600;
      color: var(--muted); white-space: nowrap; letter-spacing: 0.08em;
      text-transform: uppercase;
    }
    .ticker-dot {
      width: 4px; height: 4px; border-radius: 50%;
      background: var(--teal); flex-shrink: 0;
    }
    @keyframes ticker {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }

    /* ── SERVICES ── */
    .services-section { padding: 100px 0; }
    .services-header { padding: 0 6%; margin-bottom: 56px; }
    .section-tag {
      font-size: 0.65rem; font-weight: 600; letter-spacing: 0.2em;
      text-transform: uppercase; color: var(--teal);
      margin-bottom: 10px; display: block;
    }
    .section-title {
      font-size: clamp(1.5rem, 4vw, 2.4rem);
      font-weight: 900; line-height: 1.15; margin-bottom: 12px;
    }
    .section-desc {
      font-size: 0.9rem; font-weight: 300;
      color: var(--muted); line-height: 1.8; max-width: 480px;
    }
    .services-grid {
      display: grid; grid-template-columns: repeat(2, 1fr);
      gap: 1px; background: var(--glass-b);
      border-top: 1px solid var(--glass-b);
      border-bottom: 1px solid var(--glass-b);
      width: 100%;
    }
    .service-card {
      background: var(--bg);
      padding: clamp(28px,5vw,52px) clamp(20px,4vw,44px);
      position: relative; overflow: hidden;
      transition: background .25s; cursor: default;
      min-width: 0;
    }
    /* Animated corner bracket */
    .service-card::before {
      content: '';
      position: absolute; top: 0; left: 0;
      width: 0; height: 0;
      border-top: 2px solid var(--teal);
      border-right: 2px solid var(--teal);
      border-color: transparent;
      transition: border-color .3s, width .3s, height .3s;
    }
    .service-card::after {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(135deg, rgba(0,201,184,0.05), transparent);
      opacity: 0; transition: opacity .3s;
    }
    .service-card:hover { background: var(--bg2); }
    .service-card:hover::before {
      border-color: var(--teal);
      width: 28px; height: 28px;
    }
    .service-card:hover::after { opacity: 1; }
    .svc-num {
      font-size: 0.6rem; font-weight: 600; letter-spacing: 0.15em;
      color: var(--teal-dim); margin-bottom: 22px; display: block;
    }
    .svc-icon-wrap {
      width: 42px; height: 42px; border-radius: 10px;
      background: var(--teal-glow); border: 1px solid var(--teal-line);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 20px; color: var(--teal);
      transition: box-shadow .3s, transform .3s; flex-shrink: 0;
    }
    .service-card:hover .svc-icon-wrap {
      box-shadow: 0 0 24px rgba(0,201,184,0.35);
      transform: scale(1.08);
    }
    .svc-title { font-size: clamp(0.88rem,2.5vw,1.1rem); font-weight: 700; margin-bottom: 8px; line-height: 1.4; }
    .svc-desc { font-size: 0.82rem; font-weight: 300; color: var(--muted); line-height: 1.8; }
    .svc-arrow {
      display: inline-flex; align-items: center; gap: 6px;
      margin-top: 20px; font-size: 0.75rem; font-weight: 600;
      color: var(--teal); opacity: 0;
      transform: translateX(6px); transition: opacity .25s, transform .25s;
    }
    .service-card:hover .svc-arrow { opacity: 1; transform: translateX(0); }

    /* ── DOWNLOAD ── */
    .download-section {
      padding: 100px 5%;
      display: flex; flex-direction: column; align-items: center; text-align: center;
    }
    .dl-card {
      width: 100%; max-width: 660px;
      background: var(--glass); border: 1px solid var(--glass-b);
      backdrop-filter: blur(28px); border-radius: 20px;
      padding: clamp(32px,6vw,60px) clamp(20px,5vw,52px);
      position: relative; overflow: hidden;
    }
    .dl-card::before {
      content: ''; position: absolute;
      top: -100px; left: 50%; transform: translateX(-50%);
      width: min(360px,90vw); height: min(360px,90vw);
      background: radial-gradient(circle, rgba(0,201,184,0.13), transparent 65%);
      pointer-events: none;
    }
    /* Neon border glow */
    .dl-card::after {
      content: '';
      position: absolute; inset: -1px;
      border-radius: 20px;
      background: linear-gradient(135deg, rgba(0,201,184,0.25), transparent 50%, rgba(0,201,184,0.1));
      z-index: -1;
    }
    .dl-card h2 { font-size: clamp(1.4rem,5vw,2.2rem); font-weight: 900; margin-bottom: 10px; }
    .dl-card h2 span { color: var(--teal); }
    .dl-card > p {
      font-size: 0.88rem; font-weight: 300; color: var(--muted);
      line-height: 1.8; max-width: 340px; margin: 0 auto 30px;
    }
    .dl-btns { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
    .dl-btn {
      display: inline-flex; align-items: center; gap: 10px;
      background: rgba(255,255,255,0.05); border: 1px solid var(--glass-b);
      color: var(--text); text-decoration: none;
      padding: 11px 18px; border-radius: 10px;
      font-family: 'Vazirmatn', sans-serif;
      transition: border-color .2s, background .2s, transform .2s;
      flex: 1; min-width: 0; max-width: 200px;
    }
    .dl-btn:hover { border-color: var(--teal-line); background: rgba(0,201,184,0.06); transform: translateY(-2px); }
    .dl-icon-wrap { color: var(--teal); display: flex; align-items: center; flex-shrink: 0; }
    .dl-btn.primary .dl-icon-wrap { color: var(--bg); }
    .dl-btn-text { text-align: right; min-width: 0; }
    .dl-btn-text small { display: block; font-size: 0.6rem; font-weight: 300; color: var(--muted); }
    .dl-btn-text strong { font-size: 0.84rem; font-weight: 700; white-space: nowrap; }
    .dl-btn.primary {
      background: var(--teal); border-color: var(--teal); color: var(--bg);
      box-shadow: 0 0 28px rgba(0,201,184,0.32);
    }
    .dl-btn.primary .dl-btn-text small { color: rgba(13,17,23,0.55); }
    .dl-btn.primary:hover { background: #00b3a3; border-color: #00b3a3; box-shadow: 0 8px 32px rgba(0,201,184,0.45); }
    .version-badge {
      margin-top: 20px; font-size: 0.7rem; font-weight: 300;
      color: var(--muted); letter-spacing: 0.08em;
    }
    .version-badge span { color: var(--teal); }

    /* ── SOCIAL ── */
    .social-section { padding: 100px 5%; border-top: 1px solid var(--glass-b); }
    .social-inner {
      max-width: 900px; margin: 0 auto;
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 52px; align-items: center;
    }
    .social-header { text-align: right; }
    .social-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
    .social-card {
      display: flex; align-items: center; gap: 12px;
      background: var(--glass); border: 1px solid var(--glass-b);
      backdrop-filter: blur(16px); border-radius: 12px;
      padding: 14px 16px; text-decoration: none; color: var(--text);
      transition: border-color .25s, transform .25s, box-shadow .25s;
      position: relative; overflow: hidden; min-width: 0;
    }
    .social-card::before {
      content: ''; position: absolute; inset: 0;
      opacity: 0; transition: opacity .3s; border-radius: 12px;
    }
    .social-card:hover { transform: translateY(-3px); }
    .social-card:hover::before { opacity: 1; }
    .social-card.telegram::before  { background: linear-gradient(135deg, rgba(41,182,246,0.09), transparent); }
    .social-card.telegram:hover    { border-color: rgba(41,182,246,0.4); box-shadow: 0 8px 24px rgba(41,182,246,0.1); }
    .social-card.instagram::before { background: linear-gradient(135deg, rgba(225,48,108,0.09), transparent); }
    .social-card.instagram:hover   { border-color: rgba(225,48,108,0.4); box-shadow: 0 8px 24px rgba(225,48,108,0.1); }
    .social-card.whatsapp::before  { background: linear-gradient(135deg, rgba(37,211,102,0.09), transparent); }
    .social-card.whatsapp:hover    { border-color: rgba(37,211,102,0.4); box-shadow: 0 8px 24px rgba(37,211,102,0.1); }
    .social-card.youtube::before   { background: linear-gradient(135deg, rgba(255,70,70,0.09), transparent); }
    .social-card.youtube:hover     { border-color: rgba(255,70,70,0.4); box-shadow: 0 8px 24px rgba(255,70,70,0.1); }
    .sc-icon-wrap {
      width: 36px; height: 36px; border-radius: 8px; flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
      background: rgba(255,255,255,0.06);
    }
    .social-card.telegram  .sc-icon-wrap { color: #29b6f6; }
    .social-card.instagram .sc-icon-wrap { color: #e1306c; }
    .social-card.whatsapp  .sc-icon-wrap { color: #25d366; }
    .social-card.youtube   .sc-icon-wrap { color: #ff4646; }
    .sc-text { text-align: right; min-width: 0; }
    .sc-text small { display: block; font-size: 0.6rem; font-weight: 300; color: var(--muted); margin-bottom: 1px; }
    .sc-text strong { font-size: 0.84rem; font-weight: 700; }

    /* ── FOOTER ── */
    footer {
      border-top: 1px solid var(--glass-b); padding: 24px 5%;
      display: flex; align-items: center; justify-content: space-between;
      flex-wrap: wrap; gap: 12px;
    }
    .footer-logo { font-weight: 900; font-size: 0.88rem; display: flex; align-items: center; gap: 7px; }
    footer p { font-size: 0.74rem; color: var(--muted); }
    .footer-links { display: flex; gap: 18px; }
    .footer-links a { font-size: 0.74rem; color: var(--muted); text-decoration: none; transition: color .2s; }
    .footer-links a:hover { color: var(--teal); }

    /* ── ANIMATIONS ── */
    @keyframes up {
      from { opacity: 0; transform: translateY(20px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .reveal { opacity: 0; transform: translateY(24px); transition: opacity .55s ease, transform .55s ease; }
    .reveal.in { opacity: 1; transform: none; }

    /* ── RESPONSIVE ── */
    @media (max-width: 860px) {
      .nav-links { display: none; }
      .social-inner { grid-template-columns: 1fr; gap: 32px; }
      .social-header { text-align: center; }
    }
    @media (max-width: 540px) {
      .nav-phone { display: none; }
      .services-grid { grid-template-columns: 1fr; }
      .dl-btns { flex-direction: column; align-items: stretch; }
      .dl-btn { max-width: 100%; flex: none; }
      footer { flex-direction: column; align-items: flex-start; gap: 8px; }
      .hero-stats { max-width: 92vw; }
    }
    @media (max-width: 360px) {
      .social-grid { grid-template-columns: 1fr; }
      .hero-actions { flex-direction: column; align-items: center; }
    }
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after { animation-duration:.01ms!important; transition-duration:.01ms!important; }
      #bg-canvas { display: none; }
    }

/* NAV scrolled state */
nav.scrolled {
  height: 52px;
  background: rgba(10,14,20,0.95);
}
nav.scrolled .logo { font-size: 0.88rem; }

/* Nav active link */
.nav-links a.active { color: var(--teal); }

/* ── PRODUCTS SECTION ── */
.products-section {
  padding: 100px 5%;
  border-top: 1px solid var(--glass-b);
}
.products-inner {
  max-width: 900px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.products-header { text-align: right; }
.products-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.product-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-radius: 10px;
  border: 1px solid transparent;
  background: transparent;
  transition: background .2s, border-color .2s, transform .2s;
  cursor: default;
}
.product-item:hover {
  background: var(--glass);
  border-color: var(--glass-b);
  transform: translateX(-4px);
}
.product-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
  box-shadow: 0 0 10px var(--teal);
  animation: pulse 2.4s ease infinite;
  /* stagger each dot slightly */
}
.product-item:nth-child(2) .product-dot { animation-delay: .2s; }
.product-item:nth-child(3) .product-dot { animation-delay: .4s; }
.product-item:nth-child(4) .product-dot { animation-delay: .6s; }
.product-item:nth-child(5) .product-dot { animation-delay: .8s; }
.product-item:nth-child(6) .product-dot { animation-delay: 1s; }
.product-item:nth-child(7) .product-dot { animation-delay: 1.2s; }
.product-item:nth-child(8) .product-dot { animation-delay: 1.4s; }
.product-item:nth-child(9) .product-dot { animation-delay: 1.6s; }
.product-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.01em;
}
.product-item:hover .product-name { color: var(--teal); transition: color .2s; }

/* Facebook & TikTok social cards */
.social-card.facebook::before { background: linear-gradient(135deg, rgba(24,119,242,0.08), transparent); }
.social-card.facebook:hover   { border-color: rgba(24,119,242,0.4); box-shadow: 0 8px 24px rgba(24,119,242,0.1); }
.social-card.facebook .sc-icon-wrap { color: #1877f2; }

.social-card.tiktok::before { background: linear-gradient(135deg, rgba(255,255,255,0.07), transparent); }
.social-card.tiktok:hover   { border-color: rgba(255,255,255,0.25); box-shadow: 0 8px 24px rgba(255,255,255,0.06); }
.social-card.tiktok .sc-icon-wrap { color: #e8e8e8; }

/* Responsive products */
@media (max-width: 720px) {
  .products-inner { grid-template-columns: 1fr; gap: 32px; }
  .products-header { text-align: center; }
}

/* ── PRODUCTS SECTION ── */
.products-section {
  padding: 100px 5%;
  border-top: 1px solid var(--glass-b);
}
.products-inner {
  max-width: 900px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.products-header { text-align: right; }
.products-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.product-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 18px;
  border-radius: 10px;
  border: 1px solid transparent;
  background: transparent;
  transition: background .22s, border-color .22s, transform .22s;
  cursor: default;
}
.product-item:hover {
  background: var(--glass);
  border-color: var(--glass-b);
  transform: translateX(-5px);
}
.product-item:hover .product-name {
  color: var(--teal);
}
.product-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
  box-shadow: 0 0 10px var(--teal);
  animation: pulse 2.4s ease infinite;
}
.product-item:nth-child(2) .product-dot { animation-delay: .25s; }
.product-item:nth-child(3) .product-dot { animation-delay: .5s; }
.product-item:nth-child(4) .product-dot { animation-delay: .75s; }
.product-item:nth-child(5) .product-dot { animation-delay: 1s; }
.product-item:nth-child(6) .product-dot { animation-delay: 1.25s; }
.product-item:nth-child(7) .product-dot { animation-delay: 1.5s; }
.product-item:nth-child(8) .product-dot { animation-delay: 1.75s; }
.product-item:nth-child(9) .product-dot { animation-delay: 2s; }
.product-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.01em;
  transition: color .22s;
}

/* ── Facebook & TikTok ── */
.social-card.facebook::before { background: linear-gradient(135deg, rgba(24,119,242,0.08), transparent); }
.social-card.facebook:hover   { border-color: rgba(24,119,242,0.4); box-shadow: 0 8px 24px rgba(24,119,242,0.1); }
.social-card.facebook .sc-icon-wrap { color: #1877f2; }
.social-card.tiktok::before   { background: linear-gradient(135deg, rgba(255,255,255,0.06), transparent); }
.social-card.tiktok:hover     { border-color: rgba(255,255,255,0.22); box-shadow: 0 8px 24px rgba(255,255,255,0.05); }
.social-card.tiktok .sc-icon-wrap { color: #e8e8e8; }

/* Responsive products */
@media (max-width: 720px) {
  .products-inner { grid-template-columns: 1fr; gap: 36px; }
  .products-header { text-align: center; }
  .product-item:hover { transform: translateX(0) translateY(-2px); }
}

/* ── WHATSAPP FLOATING BUTTON ── */
.wa-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  left: auto;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  padding: 14px 20px 14px 16px;
  border-radius: 50px;
  font-family: 'Vazirmatn', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  box-shadow: 0 4px 24px rgba(37,211,102,0.45);
  transition: transform .25s, box-shadow .25s;
  white-space: nowrap;
}
.wa-fab:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(37,211,102,0.6);
}
.wa-fab svg { flex-shrink: 0; }
.wa-fab-label {
  overflow: hidden;
  transition: max-width .35s ease, opacity .3s ease;
  opacity: 1;
}

/* Pulse ring around FAB */
.wa-fab::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50px;
  box-shadow: 0 0 0 0 rgba(37,211,102,0.5);
  animation: wa-pulse 2.5s ease infinite;
}
@keyframes wa-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
  70%  { box-shadow: 0 0 0 12px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

@media (max-width: 540px) {
  .wa-fab {
    right: 20px;
    bottom: 20px;
    left: auto;
    width: 52px;
    height: 52px;
    padding: 0;
    border-radius: 50%;
    justify-content: center;
  }
  .wa-fab-label { display: none; }
}
