/* ═══════════════════════════════════════════
   SERAPH v2 — Polished Production CSS
   No Frameworks | Mobile-First | RTL Persian
   ═══════════════════════════════════════════ */

/* ─── Tokens ─── */
:root {
  --bg: #050507;
  --bg-2: #08080c;
  --surface: #0f0f14;
  --surface-2: #14141b;
  --surface-3: #1a1a22;

  --gold: #F4B942;
  --gold-bright: #FFD978;
  --gold-dim: #c9972e;
  --accent: #FFB347;
  --gold-10: rgba(244,185,66,0.10);
  --gold-15: rgba(244,185,66,0.15);
  --gold-25: rgba(244,185,66,0.25);
  --gold-40: rgba(244,185,66,0.40);

  --white: #ffffff;
  --text: #e8e8ec;
  --muted: #a0a0b0;
  --muted-2: #6e6e80;
  --muted-3: #4a4a5a;

  --border: rgba(255,255,255,0.06);
  --border-hover: rgba(255,255,255,0.10);
  --border-gold: rgba(244,185,66,0.20);

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.30), 0 1px 0 rgba(255,255,255,0.02) inset;
  --shadow: 0 4px 16px rgba(0,0,0,0.35), 0 1px 0 rgba(255,255,255,0.02) inset;
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.45), 0 1px 0 rgba(255,255,255,0.02) inset;
  --shadow-xl: 0 24px 64px rgba(0,0,0,0.50), 0 1px 0 rgba(255,255,255,0.02) inset;

  --font-fa: 'Vazirmatn', 'Estedad', 'Dana', 'Yekan Bakh', 'Tahoma', system-ui, -apple-system, sans-serif;
  --font-en: 'Lilita One', 'Inter', 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --radius-sm: 14px;
  --radius: 18px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 999px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-back: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
body {
  font-family: var(--font-fa);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.75;
  direction: rtl;
  min-height: 100vh;
  position: relative;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { list-style: none; }

/* ─── Background System (persistent, scroll-aware) ─── */
.bg-system {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

/* Persistent glow orbs — positioned to cover full scrollable area visually */
.bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  will-change: transform;
}
.bg-glow--top {
  width: 70vw; height: 70vw; max-width: 900px; max-height: 900px;
  background: radial-gradient(circle, rgba(244,185,66,0.28), transparent 65%);
  top: -15%; right: -10%;
  animation: orbDrift 18s ease-in-out infinite;
}
.bg-glow--mid {
  width: 60vw; height: 60vw; max-width: 700px; max-height: 700px;
  background: radial-gradient(circle, rgba(255,179,71,0.16), transparent 60%);
  top: 35%; left: -12%;
  animation: orbDrift 22s ease-in-out infinite -5s;
}
.bg-glow--bot {
  width: 55vw; height: 55vw; max-width: 650px; max-height: 650px;
  background: radial-gradient(circle, rgba(244,185,66,0.12), transparent 60%);
  bottom: -5%; left: 25%;
  animation: orbDrift 20s ease-in-out infinite -10s;
}
.bg-glow--fixed {
  width: 40vw; height: 40vw; max-width: 500px; max-height: 500px;
  background: radial-gradient(circle, rgba(255,179,71,0.08), transparent 55%);
  top: 55%; right: 5%;
  animation: orbDrift 24s ease-in-out infinite -8s;
}

@keyframes orbDrift {
  0%, 100% { transform: translate(0,0) scale(1); }
  25% { transform: translate(4vw, -3vw) scale(1.06); }
  50% { transform: translate(-3vw, 2vw) scale(0.97); }
  75% { transform: translate(2vw, 3vw) scale(1.03); }
}

/* Noise texture */
.bg-noise {
  position: absolute;
  inset: 0;
  opacity: 0.022;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
}

/* Floating particles */
.bg-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.bg-particles span {
  position: absolute;
  width: 2px; height: 2px;
  border-radius: 50%;
  background: rgba(244,185,66,0.35);
  box-shadow: 0 0 6px rgba(244,185,66,0.25);
  animation: particleFloat linear infinite;
}
.bg-particles span:nth-child(1) { left: 10%; top: 20%; animation-duration: 28s; animation-delay: -2s; width: 3px; height: 3px; }
.bg-particles span:nth-child(2) { left: 25%; top: 45%; animation-duration: 34s; animation-delay: -8s; }
.bg-particles span:nth-child(3) { left: 40%; top: 15%; animation-duration: 22s; animation-delay: -5s; width: 3px; height: 3px; opacity: 0.6; }
.bg-particles span:nth-child(4) { left: 55%; top: 60%; animation-duration: 30s; animation-delay: -12s; }
.bg-particles span:nth-child(5) { left: 70%; top: 25%; animation-duration: 26s; animation-delay: -4s; width: 3px; height: 3px; opacity: 0.5; }
.bg-particles span:nth-child(6) { left: 85%; top: 50%; animation-duration: 32s; animation-delay: -10s; }
.bg-particles span:nth-child(7) { left: 15%; top: 75%; animation-duration: 24s; animation-delay: -6s; opacity: 0.4; }
.bg-particles span:nth-child(8) { left: 45%; top: 80%; animation-duration: 36s; animation-delay: -14s; }
.bg-particles span:nth-child(9) { left: 60%; top: 10%; animation-duration: 20s; animation-delay: -3s; width: 3px; height: 3px; }
.bg-particles span:nth-child(10) { left: 80%; top: 85%; animation-duration: 28s; animation-delay: -9s; opacity: 0.45; }
.bg-particles span:nth-child(11) { left: 30%; top: 5%; animation-duration: 32s; animation-delay: -11s; }
.bg-particles span:nth-child(12) { left: 90%; top: 35%; animation-duration: 26s; animation-delay: -7s; opacity: 0.35; width: 3px; height: 3px; }

@keyframes particleFloat {
  0% { transform: translateY(0) translateX(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-120vh) translateX(20px); opacity: 0; }
}

/* ─── Scroll Animations ─── */
[data-animate] {
  opacity: 0;
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
[data-animate="fade-up"] { transform: translateY(28px); }
[data-animate="fade-in"] { transform: none; }
[data-animate="scale-in"] { transform: scale(0.96); }
[data-animate="fade-left"] { transform: translateX(20px); }
[data-animate="fade-right"] { transform: translateX(-20px); }

[data-animate].visible {
  opacity: 1;
  transform: translateY(0) scale(1) translateX(0);
}

/* Stagger via data-delay on individual items */
[data-delay="100"] { transition-delay: 0.10s; }
[data-delay="200"] { transition-delay: 0.20s; }
[data-delay="300"] { transition-delay: 0.30s; }
[data-delay="400"] { transition-delay: 0.40s; }

/* Stagger via data-stagger on parent */
[data-stagger] > [data-animate]:nth-child(1) { transition-delay: 0.00s; }
[data-stagger] > [data-animate]:nth-child(2) { transition-delay: 0.08s; }
[data-stagger] > [data-animate]:nth-child(3) { transition-delay: 0.16s; }
[data-stagger] > [data-animate]:nth-child(4) { transition-delay: 0.24s; }
[data-stagger] > [data-animate]:nth-child(5) { transition-delay: 0.32s; }
[data-stagger] > [data-animate]:nth-child(6) { transition-delay: 0.40s; }
[data-stagger="80"] > [data-animate]:nth-child(2) { transition-delay: 0.08s; }
[data-stagger="80"] > [data-animate]:nth-child(3) { transition-delay: 0.16s; }
[data-stagger="80"] > [data-animate]:nth-child(4) { transition-delay: 0.24s; }
[data-stagger="100"] > [data-animate]:nth-child(2) { transition-delay: 0.10s; }
[data-stagger="100"] > [data-animate]:nth-child(3) { transition-delay: 0.20s; }
[data-stagger="100"] > [data-animate]:nth-child(4) { transition-delay: 0.30s; }
[data-stagger="100"] > [data-animate]:nth-child(5) { transition-delay: 0.40s; }
[data-stagger="100"] > [data-animate]:nth-child(6) { transition-delay: 0.50s; }
[data-stagger="120"] > [data-animate]:nth-child(2) { transition-delay: 0.12s; }
[data-stagger="120"] > [data-animate]:nth-child(3) { transition-delay: 0.24s; }
[data-stagger="120"] > [data-animate]:nth-child(4) { transition-delay: 0.36s; }
[data-stagger="120"] > [data-animate]:nth-child(5) { transition-delay: 0.48s; }
[data-stagger="120"] > [data-animate]:nth-child(6) { transition-delay: 0.60s; }

/* ─── Layout ─── */
.container {
  width: 92vw;
  max-width: 1200px;
  margin-inline: auto;
  position: relative;
  z-index: 1;
}
.section {
  position: relative;
  z-index: 1;
  padding: clamp(72px, 10vw, 120px) 0;
}
.section-head {
  margin-bottom: clamp(36px, 5vw, 56px);
}
.section-head--center { text-align: center; }
.section-head--center .section-desc { margin-inline: auto; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.80rem;
  font-weight: 700;
  color: var(--gold);
  background: var(--gold-10);
  border: 1px solid var(--gold-15);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
.section-title {
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  font-weight: 900;
  line-height: 1.22;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  color: var(--white);
}
.section-title .accent {
  color: var(--gold);
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-desc {
  font-size: clamp(0.95rem, 1.2vw, 1.08rem);
  color: var(--muted);
  max-width: 480px;
  line-height: 1.85;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-fa);
  font-weight: 700;
  font-size: 0.90rem;
  border-radius: var(--radius);
  transition: all 0.35s var(--ease-out);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  flex-shrink: 0;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--accent));
  color: #0a0a0a;
  box-shadow: 0 4px 20px rgba(244,185,66,0.22), inset 0 1px 0 rgba(255,255,255,0.25);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(244,185,66,0.32), inset 0 1px 0 rgba(255,255,255,0.25);
  filter: brightness(1.06);
}

.btn-outline {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  color: var(--text);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.btn-outline:hover {
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border-color: var(--border-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-sm { padding: 8px 18px; font-size: 0.80rem; border-radius: var(--radius-pill); }
.btn-lg { padding: 13px 28px; font-size: 0.98rem; }
.btn-xl { padding: 16px 36px; font-size: 1.05rem; }
.btn-full { width: 100%; }

/* ─── Floating Header ─── */
.header {
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1160px, calc(100% - 28px));
  z-index: 1000;
  border-radius: var(--radius-pill);
  padding: 10px 18px;
  background: rgba(5,5,7,0.55);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  border: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(0,0,0,0.35), 0 1px 0 rgba(255,255,255,0.03) inset;
  transition: background 0.4s, border-color 0.4s, box-shadow 0.4s, padding 0.3s;
}
.header.scrolled {
  background: rgba(8,8,12,0.82);
  border-color: rgba(255,255,255,0.09);
  box-shadow: 0 12px 40px rgba(0,0,0,0.45), 0 1px 0 rgba(255,255,255,0.03) inset;
  padding: 9px 18px;
}

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

.header-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--white);
  flex-shrink: 0;
  position: relative;
  z-index: 1002;
}
.logo-mark {
  color: var(--gold);
  width: 30px; height: 30px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 8px rgba(244,185,66,0.25));
}
.logo-word { font-family: var(--font-fa); }
.logo-en {
  font-family: var(--font-en);
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--muted-2);
  letter-spacing: 0.14em;
  border-right: 1px solid var(--border);
  padding-right: 9px;
  margin-right: -2px;
}

.header-nav {
  display: none;
  align-items: center;
  gap: 6px;
}
.nav-item {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  padding: 7px 13px;
  border-radius: var(--radius-pill);
  transition: color 0.25s, background 0.25s;
  position: relative;
  white-space: nowrap;
}
.nav-item:hover, .nav-item.active {
  color: var(--white);
  background: rgba(255,255,255,0.04);
}
.nav-item.active {
  color: var(--gold);
  background: var(--gold-10);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Mobile menu button */
.menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 26px;
  height: 26px;
  position: relative;
  z-index: 1002;
}
.menu-line {
  display: block;
  height: 2.2px;
  width: 100%;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.35s var(--ease-out), opacity 0.25s;
  transform-origin: center;
}
.menu-btn.open .menu-line:nth-child(1) { transform: translateY(7.2px) rotate(-45deg); }
.menu-btn.open .menu-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-btn.open .menu-line:nth-child(3) { transform: translateY(-7.2px) rotate(45deg); }

/* Mobile overlay */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5,5,7,0.92);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  z-index: 998;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-out);
}
.mobile-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.mobile-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
  max-width: 320px;
  padding: 0 24px;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 100%;
}
.mobile-item {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
  padding: 10px 0;
  width: 100%;
  text-align: center;
  border-radius: var(--radius);
  transition: color 0.25s, background 0.25s;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out), color 0.25s, background 0.25s;
}
.mobile-overlay.open .mobile-item {
  opacity: 1;
  transform: translateY(0);
  transition-delay: calc(var(--i) * 0.06s + 0.1s);
}
.mobile-item:hover, .mobile-item:active {
  color: var(--gold);
  background: rgba(244,185,66,0.06);
}
.mobile-action {
  margin-top: 14px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s 0.35s, transform 0.4s 0.35s;
}
.mobile-overlay.open .mobile-action {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Hero ─── */
.hero {
  padding-top: 130px;
  padding-bottom: 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 7px 18px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 24px;
  width: max-content;
  max-width: 100%;
  flex-wrap: wrap;
}
.badge-pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px var(--gold-40);
  animation: pulseBadge 2.2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulseBadge {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.82); }
}

.hero-headline {
  font-size: clamp(2.1rem, 6.5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  color: var(--white);
}
.hero-headline .line { display: block; }
.hero-headline .line-gold {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-lead {
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  color: var(--muted);
  line-height: 1.9;
  max-width: 500px;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-tags {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex-wrap: wrap;
}
.tags-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted-2);
  padding-top: 6px;
  flex-shrink: 0;
}
.tags-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.tag {
  font-family: var(--font-en);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--muted);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid var(--border);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}
.tag:hover {
  border-color: var(--gold-25);
  color: var(--gold);
  background: var(--gold-10);
}

/* Hero float cards */
.hero-visual {
  position: relative;
  height: 340px;
  width: 100%;
  perspective: 900px;
  order: -1;
}
.float-card {
  position: absolute;
  background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.01));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px;
  box-shadow: var(--shadow-lg);
  transition: transform 0.55s var(--ease-out), box-shadow 0.4s, border-color 0.4s;
  will-change: transform;
  overflow: hidden;
}
.float-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(170deg, rgba(244,185,66,0.12), transparent 35%, transparent 70%, rgba(255,255,255,0.04));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.5;
}
.float-card:hover { border-color: rgba(255,255,255,0.10); }

.fc-1 { width: 170px; top: 2%; right: 4%; --float-speed: 7; --float-offset: 0; }
.fc-2 { width: 160px; top: 18%; left: 2%; --float-speed: 8; --float-offset: -2; }
.fc-3 { width: 150px; top: 0%; left: 32%; --float-speed: 9; --float-offset: -4; }
.fc-4 { width: 175px; top: 42%; right: 0%; --float-speed: 6.5; --float-offset: -1; display: none; }
.fc-5 { width: 210px; bottom: 2%; left: 8%; --float-speed: 8.5; --float-offset: -3; }
.fc-6 { width: 195px; bottom: 12%; right: 6%; --float-speed: 7.5; --float-offset: -5; display: none; }

/* Float animation is handled via JS for smooth GPU composition */
@keyframes gentleFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Float card internals */
.fc-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.fc-icon {
  width: 34px; height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--bg);
  color: var(--c, var(--gold));
  flex-shrink: 0;
}
.fc-dots { display: flex; gap: 3px; }
.fc-dots span { width: 3.5px; height: 3.5px; border-radius: 50%; background: var(--muted-3); }
.fc-value {
  font-family: var(--font-en);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 3px;
  letter-spacing: -0.02em;
}
.fc-big { font-family: var(--font-en); font-size: 1.35rem; font-weight: 800; color: var(--white); margin-bottom: 3px; }
.fc-med { font-family: var(--font-en); font-size: 1.15rem; font-weight: 800; color: var(--white); margin-bottom: 3px; }
.fc-sub { font-size: 0.72rem; color: var(--muted-2); margin-bottom: 4px; }
.fc-meta { display: flex; align-items: center; gap: 6px; font-size: 0.70rem; }
.fc-up { color: var(--gold); font-weight: 700; font-family: var(--font-en); }
.fc-meta span:last-child { color: var(--muted-2); }
.fc-chart { width: 100%; height: 34px; margin-top: 6px; }
.fc-spark { width: 100%; height: 30px; margin-top: 6px; }

.fc-profile { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.fc-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
  flex-shrink: 0;
}
.fc-name { font-weight: 800; font-size: 0.82rem; color: var(--text); }
.fc-role { font-size: 0.68rem; color: var(--muted-2); }
.fc-avatars { display: flex; align-items: center; }
.fc-mini { width: 28px; height: 28px; border-radius: 50%; border: 2px solid var(--bg); margin-left: -8px; }
.fc-count {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--surface-2);
  display: grid;
  place-items: center;
  font-size: 0.62rem;
  font-weight: 800;
  margin-right: -8px;
  color: var(--muted);
  border: 2px solid var(--bg);
}

.fc-rings { position: relative; width: 100px; height: 100px; margin: 0 auto 10px; }
.fc-ring-svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.fc-ring-label {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 1rem;
  color: var(--white);
}
.fc-caption { text-align: center; font-size: 0.68rem; color: var(--muted-2); }

.fc-calhead { display: flex; justify-content: space-between; align-items: center; font-size: 0.78rem; font-weight: 800; margin-bottom: 10px; color: var(--text); }
.fc-calnav { display: flex; gap: 6px; color: var(--muted-2); }
.fc-caldays { display: grid; grid-template-columns: repeat(6, 1fr); gap: 5px; font-size: 0.64rem; text-align: center; margin-bottom: 10px; font-family: var(--font-en); font-weight: 600; }
.fc-caldays span { padding: 4px 1px; border-radius: 5px; color: var(--muted); }
.fc-caldays .cal-hl { background: var(--surface-2); color: var(--text); font-weight: 700; }
.fc-caldays .cal-glow { background: var(--gold); color: #0a0a0a; font-weight: 900; box-shadow: 0 0 10px var(--gold-25); }
.fc-calbar { display: flex; align-items: center; justify-content: space-between; font-size: 0.68rem; color: var(--muted-2); background: var(--surface-2); padding: 5px 10px; border-radius: 8px; }
.fc-calbar b { color: var(--white); font-family: var(--font-en); font-weight: 800; }

.fc-progress { height: 4px; background: var(--surface-2); border-radius: 100px; overflow: hidden; margin: 8px 0 6px; }
.fc-progressbar { height: 100%; border-radius: 100px; background: linear-gradient(90deg, var(--gold), var(--accent)); box-shadow: 0 0 8px var(--gold-25); }

.fc-col { flex: 1; }
.fc-miniring { position: relative; width: 50px; height: 50px; flex-shrink: 0; }
.fc-miniring svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.fc-miniring span { position: absolute; inset: 0; display: grid; place-items: center; font-size: 0.65rem; font-weight: 800; font-family: var(--font-en); }

/* ─── Stats ─── */
.stats { padding-top: 0; }
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.stat-box {
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 18px;
  text-align: center;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s, border-color 0.4s;
  box-shadow: var(--shadow);
}
.stat-box:hover {
  transform: translateY(-5px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-lg), 0 0 40px rgba(244,185,66,0.04);
}
.stat-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius);
  background: var(--gold-10);
  color: var(--gold);
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
  border: 1px solid var(--gold-15);
}
.stat-num {
  font-family: var(--font-en);
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 600;
}

/* ─── Services ─── */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.service-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.00));
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  overflow: hidden;
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s, border-color 0.45s;
  box-shadow: var(--shadow);
  cursor: default;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-xl), 0 0 48px rgba(244,185,66,0.03);
}
.service-glow {
  position: absolute;
  top: -40%; right: -30%;
  width: 70%; height: 70%;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-10), transparent 65%);
  opacity: 0;
  transition: opacity 0.6s;
  pointer-events: none;
}
.service-card:hover .service-glow { opacity: 1; }

.service-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius);
  background: var(--gold-10);
  color: var(--gold);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  border: 1px solid var(--gold-15);
  transition: transform 0.4s var(--ease-back), box-shadow 0.4s;
}
.service-card:hover .service-icon {
  transform: scale(1.08);
  box-shadow: 0 0 20px var(--gold-15);
}
.service-title {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
  color: var(--white);
}
.service-desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold);
  position: relative;
  z-index: 1;
  transition: gap 0.3s;
}
.service-link svg { transition: transform 0.3s; }
.service-card:hover .service-link { gap: 10px; }
.service-card:hover .service-link svg { transform: translateX(-3px); }

/* ─── Projects ─── */
.projects-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.project-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.00));
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s, border-color 0.45s;
  box-shadow: var(--shadow);
}
.project-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-xl);
}

.project-media {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(244,185,66,0.04), rgba(255,179,71,0.03));
}
.project-mock {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0.45;
}

.mock-dashboard { display: flex; gap: 10px; width: 100%; max-width: 380px; height: 100%; }
.dash-side { width: 44px; background: rgba(255,255,255,0.04); border-radius: 8px; border: 1px solid var(--border); }
.dash-main { flex: 1; display: flex; flex-direction: column; gap: 10px; }
.dash-bar { height: 30px; background: rgba(255,255,255,0.03); border-radius: 8px; border: 1px solid var(--border); }
.dash-cells { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; flex: 1; }
.dash-cells > div { background: rgba(255,255,255,0.025); border-radius: 8px; border: 1px solid var(--border); }

.mock-bot { display: flex; flex-direction: column; gap: 8px; width: 100%; max-width: 280px; }
.bot-bubble { height: 34px; background: rgba(255,255,255,0.03); border-radius: 10px; border: 1px solid var(--border); width: 75%; }
.bot-bubble.bot-alt { background: rgba(244,185,66,0.04); border-color: rgba(244,185,66,0.10); width: 55%; margin-right: auto; }

.mock-web { width: 100%; max-width: 340px; }
.web-hero { height: 70px; background: rgba(255,255,255,0.03); border-radius: 8px; border: 1px solid var(--border); margin-bottom: 10px; }
.web-blocks { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; }
.web-blocks > div { height: 50px; background: rgba(255,255,255,0.02); border-radius: 8px; border: 1px solid var(--border); }

.mock-api { width: 100%; max-width: 300px; display: flex; flex-direction: column; gap: 7px; }
.api-row { display: flex; align-items: center; gap: 8px; }
.api-row span { font-family: var(--font-en); font-size: 0.58rem; font-weight: 800; color: var(--gold); background: var(--gold-10); padding: 3px 7px; border-radius: 4px; width: 38px; text-align: center; flex-shrink: 0; }
.api-row div { flex: 1; height: 7px; background: rgba(255,255,255,0.03); border-radius: 4px; }

.project-body { padding: 22px 24px 26px; }
.project-tags { display: flex; gap: 8px; margin-bottom: 12px; flex-wrap: wrap; }
.p-tag {
  font-size: 0.70rem;
  font-weight: 700;
  color: var(--muted-2);
  background: var(--surface-2);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-family: var(--font-en);
}
.project-title { font-size: 1.15rem; font-weight: 800; margin-bottom: 6px; color: var(--white); }
.project-desc { font-size: 0.85rem; color: var(--muted); line-height: 1.85; margin-bottom: 16px; }
.project-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold);
  transition: gap 0.3s;
}
.project-cta:hover { gap: 10px; }
.project-cta svg { transition: transform 0.3s; }
.project-card:hover .project-cta svg { transform: translateX(-3px); }

/* ─── Tech Stack ─── */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.tech-item {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.00));
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px 16px 22px;
  text-align: center;
  transition: all 0.45s var(--ease-out);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.tech-item:hover {
  transform: translateY(-5px) scale(1.01);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-lg), 0 0 40px rgba(244,185,66,0.03);
}
.tech-item::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.2px;
  background: linear-gradient(160deg, rgba(244,185,66,0.18), transparent 30%, transparent 70%, rgba(255,255,255,0.04));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}
.tech-item:hover::after { opacity: 1; }

.tech-visual {
  width: 56px; height: 56px;
  margin: 0 auto 16px;
  border-radius: var(--radius);
  background: var(--gold-10);
  border: 1px solid var(--gold-15);
  display: grid;
  place-items: center;
  color: var(--gold);
  transition: transform 0.4s var(--ease-back), box-shadow 0.4s;
}
.tech-item:hover .tech-visual {
  transform: scale(1.1);
  box-shadow: 0 0 24px var(--gold-15);
}
.tech-logo { width: 28px; height: 28px; }

.tech-name {
  font-family: var(--font-en);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.tech-desc { font-size: 0.75rem; color: var(--muted-2); }

/* ─── Why ─── */
.why-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
.why-list { margin-top: 32px; display: flex; flex-direction: column; gap: 18px; }
.why-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.why-check {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--gold-10);
  color: var(--gold);
  border: 1px solid var(--gold-15);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.why-text h4 { font-size: 0.98rem; font-weight: 800; margin-bottom: 4px; color: var(--white); }
.why-text p { font-size: 0.82rem; color: var(--muted); line-height: 1.85; }

.why-cardwrap { position: relative; }
.why-glowbg {
  position: absolute;
  top: -15%; right: -10%;
  width: 110%; height: 110%;
  background: radial-gradient(circle, rgba(244,185,66,0.06), transparent 55%);
  pointer-events: none;
}
.why-card {
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: var(--shadow-lg);
}
.why-main { margin-bottom: 16px; }
.why-h { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.why-h-avatar { width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0; }
.why-h-name { font-weight: 800; font-size: 0.88rem; color: var(--white); }
.why-h-status { font-size: 0.72rem; color: var(--muted-2); }

.why-kpis { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 18px; }
.why-kpi {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px;
  text-align: center;
}
.why-kpi-v {
  display: block;
  font-family: var(--font-en);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 3px;
  letter-spacing: -0.01em;
}
.why-kpi-l { font-size: 0.72rem; color: var(--muted-2); }
.why-graph { width: 100%; height: auto; }

.why-float {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  position: relative;
  animation: gentleFloat 7s ease-in-out infinite;
  width: auto;
  padding: 14px 18px;
}
.why-float-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.why-float-l { font-weight: 800; font-size: 0.82rem; color: var(--white); }
.why-float-s { font-size: 0.70rem; color: var(--muted-2); }

/* ─── Process ─── */
.process-track { position: relative; }
.process-line {
  position: absolute;
  top: 28px;
  right: 0; left: 0;
  height: 2px;
  background: var(--surface-2);
  border-radius: 2px;
  display: none;
}
.process-fill {
  position: absolute;
  top: 0; right: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--accent));
  border-radius: 2px;
  box-shadow: 0 0 16px var(--gold-25);
  width: 0%;
  transition: width 1.2s var(--ease-out);
}
.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.process-step { display: flex; gap: 14px; align-items: flex-start; }
.process-node {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--surface);
  border: 1.5px solid var(--border);
  display: grid;
  place-items: center;
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--muted-2);
  flex-shrink: 0;
  margin-top: 2px;
  transition: all 0.4s var(--ease-out);
}
.process-node.node-gold {
  background: linear-gradient(135deg, var(--gold), var(--accent));
  border-color: transparent;
  color: #0a0a0a;
  box-shadow: 0 0 18px var(--gold-25);
}
.process-step:hover .process-node {
  transform: scale(1.12);
  border-color: var(--gold-25);
  color: var(--gold);
  box-shadow: 0 0 14px var(--gold-10);
}
.process-step:hover .node-gold { color: #0a0a0a; }

.process-card {
  flex: 1;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.00));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  transition: border-color 0.4s, transform 0.4s;
  box-shadow: var(--shadow-sm);
}
.process-card:hover { border-color: var(--border-hover); transform: translateX(-3px); }
.process-card h4 { font-size: 0.95rem; font-weight: 800; margin-bottom: 6px; color: var(--white); }
.process-card p { font-size: 0.80rem; color: var(--muted); line-height: 1.85; }

/* ─── Testimonials ─── */
.testimonials-outer { overflow: hidden; }
.testimonials-track {
  display: flex;
  gap: 16px;
  transition: transform 0.55s var(--ease-out);
  will-change: transform;
}
.testi-card {
  flex: 0 0 100%;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.00));
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.4s, transform 0.4s;
  box-shadow: var(--shadow);
  min-height: 280px;
}
.testi-card:hover { border-color: var(--border-hover); transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.testi-stars { display: flex; gap: 3px; margin-bottom: 14px; color: var(--gold); }
.testi-stars svg { width: 15px; height: 15px; }
.testi-quote {
  font-size: 0.92rem;
  line-height: 1.9;
  color: var(--text);
  margin-bottom: 22px;
  flex: 1;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.85rem;
  color: #fff;
  flex-shrink: 0;
}
.testi-name { font-weight: 800; font-size: 0.88rem; color: var(--white); }
.testi-role { font-size: 0.74rem; color: var(--muted-2); }

.testi-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}
.testi-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid var(--border);
  color: var(--white);
  display: grid;
  place-items: center;
  transition: all 0.3s;
  flex-shrink: 0;
}
.testi-btn:hover { background: var(--gold-10); border-color: var(--gold-25); color: var(--gold); }
.testi-dots { display: flex; gap: 8px; }
.testi-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  padding: 0;
}
.testi-dot.active {
  background: var(--gold);
  box-shadow: 0 0 10px var(--gold-25);
  transform: scale(1.25);
}

/* ─── FAQ ─── */
.faq-box { max-width: 800px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.00));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.4s;
  box-shadow: var(--shadow-sm);
}
.faq-item:hover { border-color: var(--border-hover); }
.faq-item.open { border-color: var(--border-gold); box-shadow: var(--shadow), 0 0 30px rgba(244,185,66,0.03); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  font-family: var(--font-fa);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--white);
  text-align: right;
  transition: color 0.25s;
  -webkit-tap-highlight-color: transparent;
}
.faq-q:hover { color: var(--gold); }
.faq-q-txt { line-height: 1.6; }
.faq-q-icon {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  color: var(--muted-2);
  transition: transform 0.4s var(--ease-out), background 0.3s, color 0.3s, border-color 0.3s;
  flex-shrink: 0;
}
.faq-item.open .faq-q-icon {
  transform: rotate(45deg);
  background: var(--gold-10);
  color: var(--gold);
  border-color: var(--gold-15);
}

.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s var(--ease-out);
}
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a-inner { overflow: hidden; }
.faq-a-inner p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.9;
  padding: 0 22px 20px;
}

/* ─── CTA ─── */
.cta { position: relative; overflow: hidden; padding: 100px 0 90px; }
.cta-bg { position: absolute; inset: 0; pointer-events: none; }
.cta-orb {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 70vw; height: 70vw;
  max-width: 700px; max-height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244,185,66,0.10), transparent 55%);
  filter: blur(30px);
}
.cta-rays {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background: repeating-conic-gradient(from 0deg at 50% 50%, transparent 0deg, rgba(244,185,66,0.5) 1deg, transparent 2deg, transparent 18deg);
}
.cta-wrap { position: relative; z-index: 1; text-align: center; }
.cta-headline {
  font-size: clamp(2rem, 5.5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
  color: var(--white);
}
.cta-headline .accent {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cta-lead {
  font-size: clamp(0.92rem, 1.2vw, 1.05rem);
  color: var(--muted);
  max-width: 500px;
  margin: 0 auto 32px;
  line-height: 1.9;
}
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.cta-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--muted-2);
  font-size: 0.88rem;
}
.trust-faces {
  display: flex;
  direction: ltr;
}
.trust-faces span {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.75rem;
  color: #fff;
  border: 2px solid var(--bg);
  margin-right: -9px;
  flex-shrink: 0;
}
.cta-trust strong { color: var(--white); }

/* ─── Footer ─── */
.footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
  background: linear-gradient(180deg, rgba(255,255,255,0.01), transparent);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-bottom: 48px;
}
.footer-about {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.9;
  margin-top: 14px;
  max-width: 300px;
}
.footer-socials {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}
.soc {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  color: var(--muted-2);
  transition: all 0.3s;
}
.soc:hover { background: var(--gold-10); border-color: var(--gold-15); color: var(--gold); transform: translateY(-2px); }

.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h4 {
  font-size: 0.92rem;
  font-weight: 800;
  margin-bottom: 4px;
  color: var(--white);
}
.footer-col a, .footer-col p {
  font-size: 0.82rem;
  color: var(--muted);
  transition: color 0.25s, transform 0.25s;
  display: inline-block;
}
.footer-col a:hover { color: var(--gold); transform: translateX(-3px); }
.footer-addr { color: var(--muted-2) !important; margin-top: 4px; }

.footer-base {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 0.76rem;
  color: var(--muted-2);
  text-align: center;
}
.footer-base .heart { color: var(--gold); }

/* ═══════════════════════════════════════════
   RESPONSIVE — Mobile First Upwards
   ═══════════════════════════════════════════ */

/* ≥ 375px */
@media (min-width: 375px) {
  .hero-headline { font-size: clamp(2.3rem, 6.5vw, 3.6rem); }
  .hero-visual { height: 360px; }
  .fc-4 { display: block; }
}

/* ≥ 390px */
@media (min-width: 390px) {
  .hero-visual { height: 380px; }
  .fc-6 { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
}

/* ≥ 414px */
@media (min-width: 414px) {
  .hero-visual { height: 400px; }
  .hero-actions { gap: 14px; }
  .btn-lg { padding: 14px 30px; }
}

/* ≥ 480px */
@media (min-width: 480px) {
  .stats-grid { gap: 16px; }
  .stat-box { padding: 28px 20px; }
  .stat-num { font-size: 2.2rem; }
  .tech-grid { gap: 16px; }
  .tech-visual { width: 60px; height: 60px; }
  .tech-logo { width: 30px; height: 30px; }
  .testi-card { padding: 32px 28px; }
}

/* ≥ 640px */
@media (min-width: 640px) {
  .hero-wrap { grid-template-columns: 1.05fr 1fr; gap: 36px; }
  .hero-visual { order: 0; height: 420px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .tech-grid { grid-template-columns: repeat(4, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .testi-card { flex: 0 0 calc(50% - 8px); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ≥ 768px (Tablet) */
@media (min-width: 768px) {
  .header { width: min(1140px, calc(100% - 40px)); padding: 10px 22px; top: 18px; }
  .header-nav { display: flex; }
  .menu-btn { display: none; }
  .header-cta .btn-primary { display: inline-flex; }

  .hero { padding-top: 150px; padding-bottom: 100px; }
  .hero-wrap { grid-template-columns: 1.1fr 1fr; gap: 48px; }
  .hero-headline { font-size: clamp(2.4rem, 4.2vw, 3.4rem); }
  .hero-visual { height: 480px; }
  .float-card { padding: 18px; }
  .fc-1 { width: 190px; top: 4%; right: 8%; }
  .fc-2 { width: 175px; top: 18%; left: 4%; }
  .fc-3 { width: 160px; top: 2%; left: 34%; }
  .fc-4 { width: 185px; top: 44%; right: 2%; }
  .fc-5 { width: 230px; bottom: 4%; left: 10%; }
  .fc-6 { width: 210px; bottom: 14%; right: 10%; }
  .fc-value { font-size: 1.45rem; }
  .fc-big { font-size: 1.5rem; }

  .stats-grid { grid-template-columns: repeat(4, 1fr); gap: 18px; }
  .stat-box { padding: 32px 18px; }
  .stat-num { font-size: 2.2rem; }

  .services-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .service-card { padding: 32px 26px; }

  .projects-grid { grid-template-columns: 1fr 1fr; gap: 22px; }
  .project-wide { grid-column: span 2; }
  .project-media { aspect-ratio: 16/9; }

  .tech-item { padding: 32px 16px 26px; }

  .why-wrap { grid-template-columns: 1fr 1fr; gap: 56px; }

  .process-line { display: block; }
  .process-steps { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .process-step { flex-direction: column; align-items: center; text-align: center; }
  .process-node { margin: 0 0 14px; }
  .process-card:hover { transform: translateY(-3px); }

  .testi-card { flex: 0 0 calc(50% - 8px); min-height: 300px; }

  .faq-q { padding: 20px 26px; font-size: 1rem; }
  .faq-a-inner p { padding: 0 26px 22px; font-size: 0.9rem; }

  .cta-actions { gap: 14px; }

  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; }
  .footer-base { flex-direction: row; justify-content: space-between; }
}

/* ≥ 1024px (Desktop) */
@media (min-width: 1024px) {
  .header { padding: 10px 26px; }
  .nav-item { padding: 8px 16px; font-size: 0.85rem; }

  .hero-wrap { gap: 64px; }
  .hero-headline { font-size: clamp(2.6rem, 3.8vw, 3.6rem); }
  .hero-visual { height: 520px; }
  .fc-1 { width: 200px; }
  .fc-2 { width: 185px; }
  .fc-3 { width: 165px; }
  .fc-4 { width: 190px; }
  .fc-5 { width: 240px; }
  .fc-6 { width: 220px; }

  .process-steps { grid-template-columns: repeat(6, 1fr); gap: 14px; }

  .testi-card { flex: 0 0 calc(33.333% - 11px); }
  .testimonials-outer { overflow: visible; }
}

/* ≥ 1280px */
@media (min-width: 1280px) {
  .container { max-width: 1220px; }
  .hero-visual { height: 560px; }
  .fc-1 { width: 210px; }
  .fc-5 { width: 250px; }
}

/* ≥ 1440px */
@media (min-width: 1440px) {
  .container { max-width: 1320px; }
  .hero-headline { font-size: 3.8rem; }
  .hero-visual { height: 580px; }
}

/* ≥ 1536px */
@media (min-width: 1536px) {
  .container { max-width: 1400px; }
  .hero-headline { font-size: 4rem; }
  .hero-visual { height: 600px; }
  .float-card { padding: 20px; }
}

/* ═══════════════════════════════════════════
   REDUCED MOTION
   ═══════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.2s !important;
  }
  [data-animate] {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .bg-particles span { animation: none; opacity: 0; }
}

/* ═══════════════════════════════════════════
   SAFARI / WEBKIT FIXES
   ═══════════════════════════════════════════ */
@supports (-webkit-touch-callout: none) {
  .header { backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); }
}
