:root {
  --bg: #ffffff;
  --surface: #f3f4f6;
  --card: #ffffff;
  --accent: #5b92f7;
  --accent2: #f25912;
  --gold: #f25912;
  --text: #2b2f36;
  --muted: #6b7280;
  --border: #e6e8ec;
  --accent-rgb: 91,146,247;
  --accent2-rgb: 242,89,18;
  --glass: rgba(255,255,255,0.72);
  --glass-border: rgba(255,255,255,0.3);
  --shadow-sm: 0 2px 8px rgba(43,47,54,0.04);
  --shadow-md: 0 8px 32px rgba(43,47,54,0.08);
  --shadow-lg: 0 16px 48px rgba(43,47,54,0.12);
  --shadow-glow: 0 0 40px rgba(91,146,247,0.15);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 32px;
}

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

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

a { color: inherit; }

.d-none { display: none !important; }

/* BRAND MARK */
.brand-mark {
  width: 44px; height: 44px; border-radius: 50%;
  background: conic-gradient(from 0deg, var(--accent), var(--accent2), var(--gold), var(--accent));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 900; font-size: 1.3rem; flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(var(--accent-rgb), 0.3);
  animation: brand-spin 20s linear infinite;
}
@keyframes brand-spin {
  from { filter: hue-rotate(0deg); }
  to { filter: hue-rotate(360deg); }
}
.hero-mark {
  width: 120px; height: 120px; font-size: 3rem;
  margin-bottom: 1.5rem;
  animation: fadeInDown 0.8s cubic-bezier(0.16,1,0.3,1) both,
             float-gentle 4s ease-in-out infinite 0.8s;
}

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  gap: 1.5rem; padding: 0.9rem 4rem;
  background: var(--glass);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
}
nav.scrolled {
  padding: 0.6rem 4rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.nav-logo { display: flex; align-items: center; gap: 0.6rem; }
.nav-logo span {
  font-size: 1.3rem; font-weight: 900; color: var(--text);
  letter-spacing: -0.5px; transition: color 0.3s;
}

.nav-menu {
  display: flex; align-items: center; gap: 2rem;
  list-style: none; flex: 1; justify-content: center;
}
.nav-menu a {
  text-decoration: none; color: var(--text);
  font-size: 0.95rem; font-weight: 600;
  padding: 0.5rem 0; border-bottom: 2px solid transparent;
  transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
  white-space: nowrap; position: relative;
}
.nav-menu a::after {
  content: ''; position: absolute; bottom: -2px; right: 0;
  width: 0; height: 2px; background: var(--accent);
  transition: width 0.3s cubic-bezier(0.16,1,0.3,1);
}
.nav-menu a:hover::after, .nav-menu a.active::after { width: 100%; }
.nav-menu a:hover, .nav-menu a.active { color: var(--accent); }

.nav-cta {
  background: var(--accent2); color: #fff; border: none;
  padding: 0.6rem 1.8rem; border-radius: 50px;
  font-family: 'Vazirmatn', sans-serif; font-size: 0.9rem;
  font-weight: 700; cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
  white-space: nowrap; position: relative; overflow: hidden;
}
.nav-cta::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(var(--accent2-rgb), 0.35); }
.nav-cta:hover::before { opacity: 1; }

.nav-burger {
  display: none; background: none; border: none;
  font-size: 1.6rem; cursor: pointer; color: var(--text);
  transition: transform 0.3s;
}
.nav-burger:active { transform: scale(0.9); }

/* HERO */
.hero {
  min-height: 100vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 8rem 2rem 4rem;
  position: relative; overflow: hidden;
}
.hero-glow {
  position: absolute; width: 800px; height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(var(--accent-rgb),0.12) 0%,
    rgba(var(--accent2-rgb),0.08) 40%,
    transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  animation: pulse-glow 6s ease-in-out infinite;
  pointer-events: none;
}
.hero-glow::before {
  content: ''; position: absolute; width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--accent2-rgb),0.08), transparent 60%);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  animation: pulse-glow 6s ease-in-out infinite 3s;
}
@keyframes pulse-glow {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  50% { transform: translate(-50%, -50%) scale(1.15); opacity: 0.6; }
}

.hero-badge {
  display: inline-block;
  background: rgba(var(--accent-rgb),0.08);
  border: 1px solid rgba(var(--accent-rgb),0.2);
  color: var(--accent); padding: 0.5rem 1.5rem;
  border-radius: 50px; font-size: 0.9rem; font-weight: 700;
  margin-bottom: 2rem;
  animation: fadeInDown 0.8s cubic-bezier(0.16,1,0.3,1) both;
  backdrop-filter: blur(10px);
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 4.5rem);
  font-weight: 900; line-height: 1.25; letter-spacing: -1px;
  margin-bottom: 1.5rem; color: var(--text);
  animation: fadeInUp 0.9s cubic-bezier(0.16,1,0.3,1) both 0.1s;
}
.hero h1 span {
  color: var(--accent); display: block;
  font-size: 0.5em; margin-top: 0.5rem;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: var(--muted); max-width: 640px;
  line-height: 2; font-weight: 400; margin-bottom: 1rem;
  animation: fadeInUp 0.9s cubic-bezier(0.16,1,0.3,1) both 0.2s;
}
.hero-eng { font-family: sans-serif; }

.hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center;
  animation: fadeInUp 0.9s cubic-bezier(0.16,1,0.3,1) both 0.35s;
  margin-top: 1.5rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent2), #e04a0a);
  color: #fff; border: none; padding: 1rem 2.5rem;
  border-radius: 50px; font-family: 'Vazirmatn', sans-serif;
  font-size: 1.05rem; font-weight: 700; cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
  box-shadow: 0 8px 24px rgba(var(--accent2-rgb),0.25);
  position: relative; overflow: hidden;
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 40px rgba(var(--accent2-rgb),0.35);
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary:active { transform: translateY(-1px) scale(0.98); }

.btn-secondary {
  background: transparent; color: var(--text);
  border: 1.5px solid var(--border); padding: 1rem 2.5rem;
  border-radius: 50px; font-family: 'Vazirmatn', sans-serif;
  font-size: 1.05rem; font-weight: 500; cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
}
.btn-secondary:hover {
  border-color: var(--accent); color: var(--accent);
  background: rgba(var(--accent-rgb),0.06);
  transform: translateY(-2px);
}

/* STATS */
.stats-strip {
  display: flex; justify-content: center; gap: 5rem;
  padding: 3.5rem 4rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap; position: relative;
}
.stats-strip::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(var(--accent-rgb),0.03), rgba(var(--accent2-rgb),0.03));
  pointer-events: none;
}
.stat-item {
  text-align: center; position: relative;
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1);
}
.stat-item:hover { transform: translateY(-4px); }
.stat-num {
  font-size: 2.8rem; font-weight: 900; color: var(--accent);
  letter-spacing: -1px; line-height: 1;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  color: var(--muted); font-size: 0.9rem; margin-top: 0.5rem;
}

/* SECTION LABELS */
section { position: relative; z-index: 1; }
.section-label {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: var(--accent); font-size: 0.8rem; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; margin-bottom: 1rem;
}
.section-label::before {
  content: ''; display: inline-block; width: 24px; height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  animation: label-pulse 2s ease-in-out infinite;
}
@keyframes label-pulse {
  0%, 100% { width: 24px; opacity: 1; }
  50% { width: 32px; opacity: 0.7; }
}
.section-title {
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  font-weight: 900; line-height: 1.2; letter-spacing: -1px;
  margin-bottom: 1.5rem; color: var(--accent);
}

/* WHAT SECTION */
.what-section {
  padding: 7rem 4rem; max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem;
  align-items: center;
}
.what-visual { position: relative; height: 420px; }
.orb { position: absolute; border-radius: 50%; }
.orb-main2 {
  width: 260px; height: 260px;
  background: conic-gradient(from 0deg, var(--accent), var(--accent2), var(--gold), var(--accent));
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  opacity: 0.85;
  box-shadow: 0 0 80px rgba(var(--accent-rgb),0.35), 0 0 160px rgba(var(--accent2-rgb),0.2);
  animation: spin-glow 8s linear infinite, float 6s ease-in-out infinite;
}
@keyframes spin-glow { from { filter: hue-rotate(0deg); } to { filter: hue-rotate(360deg); } }

.orb-ring {
  width: 320px; height: 320px; border: 1px solid rgba(var(--accent-rgb),0.2);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  animation: rotate-ring 12s linear infinite;
}
.orb-ring::after {
  content: ''; position: absolute; width: 10px; height: 10px;
  background: var(--accent); border-radius: 50%; top: -5px; left: 50%;
  box-shadow: 0 0 12px var(--accent), 0 0 24px rgba(var(--accent-rgb),0.5);
}
@keyframes rotate-ring {
  from { transform: translate(-50%,-50%) rotate(0deg); }
  to { transform: translate(-50%,-50%) rotate(360deg); }
}
.orb-ring2 {
  width: 390px; height: 390px; border: 1px solid rgba(var(--accent2-rgb),0.15);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  animation: rotate-ring 20s linear infinite reverse;
}
.orb-ring2::after {
  content: ''; position: absolute; width: 8px; height: 8px;
  background: var(--accent2); border-radius: 50%; bottom: -4px; right: 50%;
  box-shadow: 0 0 10px var(--accent2), 0 0 20px rgba(var(--accent2-rgb),0.5);
}
@keyframes float {
  0%, 100% { transform: translate(-50%,-50%) translateY(0); }
  50% { transform: translate(-50%,-50%) translateY(-14px); }
}

.what-text p { color: var(--muted); font-size: 1.05rem; line-height: 2; font-weight: 400; }

.highlight-box {
  background: linear-gradient(135deg, rgba(var(--accent-rgb),0.06), rgba(var(--accent2-rgb),0.04));
  border: 1px solid rgba(var(--accent-rgb),0.15);
  border-radius: var(--radius-md); padding: 1.5rem;
  margin-top: 2rem; font-size: 1rem; line-height: 1.9; color: var(--text);
  transition: all 0.3s;
}
.highlight-box:hover {
  border-color: rgba(var(--accent-rgb),0.3);
  box-shadow: var(--shadow-glow);
}

.link-more {
  display: inline-block; margin-top: 1.5rem; color: var(--accent);
  font-weight: 700; text-decoration: none;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 2px; transition: all 0.3s;
  position: relative;
}
.link-more::after {
  content: ''; position: absolute; bottom: -2px; right: 0;
  width: 0; height: 2px; background: var(--accent2);
  transition: width 0.3s cubic-bezier(0.16,1,0.3,1);
}
.link-more:hover { opacity: 1; color: var(--accent2); }
.link-more:hover::after { width: 100%; }

/* HOW IT WORKS */
.how-section {
  padding: 7rem 4rem; max-width: 1200px; margin: 0 auto;
  text-align: center;
}
.steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2rem; margin-top: 4rem;
}
.step-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2.5rem 2rem;
  text-align: right; transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.step-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(var(--accent-rgb),0.08), transparent);
  opacity: 0; transition: opacity 0.4s;
}
.step-card::after {
  content: ''; position: absolute; top: 0; right: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.step-card:hover {
  transform: translateY(-8px);
  border-color: rgba(var(--accent-rgb),0.3);
  box-shadow: 0 20px 40px rgba(var(--accent-rgb),0.12);
}
.step-card:hover::before { opacity: 1; }
.step-card:hover::after { transform: scaleX(1); }

.step-num {
  font-size: 3.5rem; font-weight: 900; color: var(--accent);
  opacity: 0.2; line-height: 1; margin-bottom: 1rem;
  transition: opacity 0.3s;
}
.step-card:hover .step-num { opacity: 0.4; }

.step-icon {
  width: 58px; height: 58px; border-radius: 16px;
  background: linear-gradient(135deg, rgba(var(--accent-rgb),0.15), rgba(var(--accent2-rgb),0.15));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin-bottom: 1.2rem;
  transition: all 0.3s;
}
.step-card:hover .step-icon {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 8px 20px rgba(var(--accent-rgb),0.2);
}

.step-title { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.75rem; }
.step-desc { color: var(--muted); font-size: 0.95rem; line-height: 1.8; }

/* FEATURES */
.features-section {
  padding: 7rem 4rem; background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
}
.features-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(var(--accent-rgb),0.04), transparent 60%);
  pointer-events: none;
}
.features-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.features-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem; margin-top: 4rem;
}
.feature-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 2rem 1.5rem;
  text-align: center; transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
  box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
}
.feature-card::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 60%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.feature-card:hover {
  border-color: rgba(var(--accent-rgb),0.3);
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(var(--accent-rgb),0.12);
}
.feature-card:hover::before { opacity: 1; }

.feature-emoji {
  font-size: 2.4rem; margin-bottom: 1rem;
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1);
}
.feature-card:hover .feature-emoji {
  transform: scale(1.2) rotate(-8deg);
}

.feature-name { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.feature-desc { color: var(--muted); font-size: 0.85rem; line-height: 1.7; }

/* PILLARS */
.pillars-section {
  padding: 7rem 4rem; max-width: 1200px; margin: 0 auto;
  text-align: center;
}
.pillars-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2rem; margin-top: 4rem;
}
.pillar-card {
  position: relative; background: var(--card);
  border: 1px solid var(--border); border-radius: var(--radius-xl);
  padding: 3rem 2rem; overflow: hidden;
  transition: all 0.5s cubic-bezier(0.16,1,0.3,1);
  box-shadow: var(--shadow-sm); text-align: right;
}
.pillar-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 4px; border-radius: 4px 4px 0 0;
  transition: height 0.4s cubic-bezier(0.16,1,0.3,1);
}
.pillar-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 48px rgba(43,47,54,0.12);
}
.pillar-card:hover::before { height: 6px; }

.pillar-card:nth-child(1) { border-color: rgba(var(--accent-rgb),0.2); }
.pillar-card:nth-child(1)::before { background: linear-gradient(90deg, var(--accent), rgba(var(--accent-rgb),0.5)); }
.pillar-card:nth-child(2) { border-color: rgba(var(--accent2-rgb),0.2); }
.pillar-card:nth-child(2)::before { background: linear-gradient(90deg, var(--accent2), rgba(var(--accent2-rgb),0.5)); }
.pillar-card:nth-child(3) { border-color: rgba(var(--accent2-rgb),0.2); }
.pillar-card:nth-child(3)::before { background: linear-gradient(90deg, var(--gold), rgba(var(--accent2-rgb),0.5)); }

.pillar-bg { position: absolute; inset: 0; opacity: 0.06; pointer-events: none; transition: opacity 0.4s; }
.pillar-card:hover .pillar-bg { opacity: 0.12; }
.pillar-card:nth-child(1) .pillar-bg { background: radial-gradient(circle at 50% 0%, var(--accent), transparent 70%); }
.pillar-card:nth-child(2) .pillar-bg { background: radial-gradient(circle at 50% 0%, var(--accent2), transparent 70%); }
.pillar-card:nth-child(3) .pillar-bg { background: radial-gradient(circle at 50% 0%, var(--gold), transparent 70%); }

.pillar-icon {
  font-size: 3rem; margin-bottom: 1.5rem;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.pillar-card:hover .pillar-icon { transform: scale(1.15) translateY(-4px); }

.pillar-title { font-size: 1.25rem; font-weight: 800; margin-bottom: 1rem; }
.pillar-desc { color: var(--muted); font-size: 0.95rem; line-height: 1.9; }

/* ALL IN ONE */
.allinone-image {
  position: relative;
  width: 125%;
  margin: -3rem -3rem 2rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(var(--accent-rgb),0.06) 0%, rgba(var(--accent2-rgb),0.08) 100%);
  border-bottom: 1px solid rgba(var(--border), 0.6);
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.16,1,0.3,1);
}
.allinone-image::after {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at 30% 30%, rgba(var(--accent-rgb),0.12), transparent 50%),
              radial-gradient(circle at 70% 70%, rgba(var(--accent2-rgb),0.1), transparent 50%);
  pointer-events: none;
  z-index: 0;
  animation: allinone-image-pan 12s ease-in-out infinite;
}
@keyframes allinone-image-pan {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(2%, 2%) scale(1.05); }
}
.allinone-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-md);
  position: relative;
  z-index: 1;
  transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
  box-shadow: 0 12px 32px rgba(43, 47, 54, 0.08);
}
.allinone-image-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(var(--accent-rgb),0.15), transparent 60%);
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.5s;
}
.allinone-visual:hover .allinone-image img {
  transform: scale(1.04);
}
.allinone-visual:hover .allinone-image-glow {
  opacity: 1;
}


.allinone-section {
  padding: 7rem 4rem; background: var(--surface);
  border-top: 1px solid var(--border); position: relative;
}
.allinone-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(var(--accent2-rgb),0.04), transparent 50%);
  pointer-events: none;
}
.allinone-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem;
  align-items: center;
}
.services-list {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1rem;
}
.service-tag {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 1rem 1.2rem;
  display: flex; align-items: center; gap: 0.7rem;
  font-size: 0.88rem; font-weight: 600;
  transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
  box-shadow: var(--shadow-sm);
}
.service-tag:hover {
  border-color: var(--accent); background: rgba(var(--accent-rgb),0.06);
  transform: translateY(-3px) translateX(-3px);
  box-shadow: 0 8px 20px rgba(var(--accent-rgb),0.1);
}
.service-tag span { font-size: 1.3rem; transition: transform 0.3s; }
.service-tag:hover span { transform: scale(1.2); }
.service-tag [data-lucide] { font-size: 1.5rem; width: 1.5rem; height: 1.5rem; transition: transform 0.3s; }
.service-tag:hover [data-lucide] { transform: scale(1.15); }

.allinone-visual {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 3rem;
  text-align: center; box-shadow: var(--shadow-md);
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
  position: relative; overflow: hidden;
}
.allinone-visual::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(var(--accent-rgb),0.03), rgba(var(--accent2-rgb),0.03));
  pointer-events: none;
}
.allinone-visual:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(43,47,54,0.1);
}

.allinone-badge {
  background: linear-gradient(135deg, var(--accent2), #e04a0a);
  color: #fff; font-size: 1.2rem; font-weight: 900;
  padding: 0.8rem 2rem; border-radius: 50px;
  display: inline-block; margin-bottom: 2rem;
  letter-spacing: 2px; position: relative; overflow: hidden;
}
.allinone-badge::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
}

.allinone-title {
  font-size: 1.8rem; font-weight: 800;
  margin-bottom: 1rem; color: var(--accent);
}
.allinone-desc { color: var(--muted); font-size: 0.95rem; line-height: 1.9; position: relative; }

/* CTA */
.cta-section {
  padding: 8rem 4rem; text-align: center;
  position: relative; overflow: hidden;
  background: var(--surface); border-top: 1px solid var(--border);
}
.cta-glow {
  position: absolute; width: 700px; height: 500px;
  background: radial-gradient(ellipse,
    rgba(var(--accent-rgb),0.12),
    rgba(var(--accent2-rgb),0.06) 40%,
    transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  pointer-events: none;
  animation: pulse-glow 8s ease-in-out infinite;
}

.cta-section h2 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900; letter-spacing: -1.5px;
  margin-bottom: 1.5rem; color: var(--text);
}
.cta-section p {
  color: var(--muted); font-size: 1.1rem;
  margin-bottom: 2.5rem; max-width: 500px;
  margin-left: auto; margin-right: auto; line-height: 2;
}

.cta-phone {
  display: inline-flex; align-items: center; gap: 0.8rem;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 50px; padding: 1.2rem 3.5rem;
  font-size: 1.1rem; font-weight: 700; color: var(--accent);
  margin-top: 1.5rem; box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
  position: relative; overflow: hidden;
}
.cta-phone::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(var(--accent-rgb),0.05), transparent);
  pointer-events: none;
}
.cta-phone:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(var(--accent-rgb),0.15);
  border-color: rgba(var(--accent-rgb),0.3);
}

/* GENERIC PAGE HEADER */
.page-header {
  padding: 9rem 4rem 4rem; text-align: center;
  max-width: 1000px; margin: 0 auto;
}
.page-header .section-label { justify-content: center; }
.page-header p {
  color: var(--muted); font-size: 1.05rem;
  line-height: 2; margin-top: 1rem;
}

/* LONG-FORM CONTENT PAGES */
.content-section { padding: 2rem 4rem 6rem; max-width: 1000px; margin: 0 auto; }
.content-block { margin-bottom: 3rem; }
.content-block h2 {
  font-size: 1.5rem; font-weight: 800; color: var(--text);
  margin-bottom: 1rem; padding-inline-start: 1rem;
  border-inline-start: 4px solid var(--accent);
  transition: all 0.3s;
}
.content-block h2:hover {
  padding-inline-start: 1.5rem;
  border-inline-start-width: 6px;
}
.content-block p {
  color: var(--muted); font-size: 1.02rem; line-height: 2.1; margin-bottom: 1rem;
}
.content-block ul {
  color: var(--muted); font-size: 1.02rem; line-height: 2.1;
  padding-inline-start: 1.5rem; margin-bottom: 1rem;
}
.content-block strong { color: var(--text); }

/* SERVICE / FEATURE DETAIL LIST */
.detail-list { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }
.detail-item {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 2rem;
  display: flex; gap: 1.5rem; align-items: flex-start;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
  position: relative; overflow: hidden;
}
.detail-item::before {
  content: ''; position: absolute; top: 0; right: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.detail-item:hover {
  border-color: rgba(var(--accent-rgb),0.3);
  box-shadow: 0 16px 36px rgba(var(--accent-rgb),0.1);
  transform: translateY(-4px);
}
.detail-item:hover::before { transform: scaleX(1); }

.detail-num {
  flex-shrink: 0; width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(var(--accent-rgb),0.1), rgba(var(--accent2-rgb),0.1));
  color: var(--accent); font-weight: 900; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.detail-item:hover .detail-num {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff; transform: scale(1.1) rotate(-5deg);
}

.detail-item h3 {
  font-size: 1.15rem; font-weight: 800;
  margin-bottom: 0.6rem; color: var(--text);
}
.detail-item p { color: var(--muted); font-size: 0.98rem; line-height: 2; }

/* SIMPLE TAG LIST */
.tag-list { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1rem; }
.tag-chip {
  background: rgba(var(--accent-rgb),0.07);
  border: 1px solid rgba(var(--accent-rgb),0.18);
  color: var(--text); font-size: 0.9rem; font-weight: 600;
  padding: 0.5rem 1.1rem; border-radius: 50px;
  transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
}
.tag-chip:hover {
  background: rgba(var(--accent-rgb),0.12);
  border-color: var(--accent);
  transform: translateY(-2px);
}

/* CONTACT FORM */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; max-width: 1100px; margin: 0 auto;
  padding: 2rem 4rem 6rem;
}
.contact-info-card, .contact-form-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
}
.contact-info-card:hover, .contact-form-card:hover {
  box-shadow: var(--shadow-md);
}
.contact-info-card h3, .contact-form-card h3 {
  font-size: 1.3rem; font-weight: 800; margin-bottom: 1.5rem;
}
.contact-row {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 1.3rem; color: var(--muted); font-size: 1rem;
}
.contact-row .icon { font-size: 1.4rem; }
.contact-form-card label {
  display: block; font-size: 0.9rem; font-weight: 700;
  margin-bottom: 0.4rem; margin-top: 1.2rem;
}
.contact-form-card input, .contact-form-card textarea {
  width: 100%; padding: 0.8rem 1rem; border-radius: var(--radius-sm);
  border: 1px solid var(--border); font-family: 'Vazirmatn', sans-serif;
  font-size: 0.95rem; background: var(--surface);
  transition: all 0.3s;
}
.contact-form-card input:focus, .contact-form-card textarea:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(var(--accent-rgb),0.1);
}
.contact-form-card textarea { min-height: 120px; resize: vertical; }
.contact-form-card button { margin-top: 1.8rem; width: 100%; }

/* PLACEHOLDER */
.placeholder-box {
  max-width: 700px; margin: 3rem auto 6rem; text-align: center;
  padding: 3rem; background: var(--surface);
  border: 1px dashed var(--border); border-radius: var(--radius-lg);
}
.placeholder-box .emoji { font-size: 3rem; margin-bottom: 1rem; }
.placeholder-box h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 1rem; }
.placeholder-box p { color: var(--muted); line-height: 2; }

/* FOOTER */
footer {
  border-top: 1px solid var(--border); padding: 2.5rem 4rem;
  display: flex; justify-content: space-between; align-items: center;
  color: var(--muted); font-size: 0.85rem;
  flex-wrap: wrap; gap: 1.5rem;
  position: relative;
}
footer::before {
  content: ''; position: absolute; top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(var(--accent-rgb),0.3), transparent);
}
.footer-menu { list-style: none; display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-menu a {
  text-decoration: none; color: var(--muted); font-size: 0.85rem;
  transition: all 0.3s; position: relative;
}
.footer-menu a::after {
  content: ''; position: absolute; bottom: -2px; right: 0;
  width: 0; height: 1px; background: var(--accent);
  transition: width 0.3s;
}
.footer-menu a:hover { color: var(--accent); }
.footer-menu a:hover::after { width: 100%; }

/* ANIMATIONS */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes float-gentle {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1),
              transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0; transform: translateX(60px);
  transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1),
              transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0; transform: translateX(-60px);
  transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1),
              transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.reveal-scale {
  opacity: 0; transform: scale(0.85);
  transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1),
              transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* Stagger delays */
.stagger-1 { transition-delay: 0.05s; }
.stagger-2 { transition-delay: 0.1s; }
.stagger-3 { transition-delay: 0.15s; }
.stagger-4 { transition-delay: 0.2s; }
.stagger-5 { transition-delay: 0.25s; }
.stagger-6 { transition-delay: 0.3s; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .pillars-grid .pillar-card:nth-child(3) { grid-column: span 2; max-width: 50%; margin: 0 auto; }
}

@media (max-width: 900px) {
  nav { padding: 0.8rem 1.5rem; }
  nav.scrolled { padding: 0.6rem 1.5rem; }
  .nav-logo span { display: none; }
  .nav-burger { display: block; }
  .nav-menu {
    position: fixed; top: 65px; left: 0; right: 0;
    background: var(--glass);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    flex-direction: column; gap: 0;
    border-bottom: 1px solid var(--border);
    max-height: 0; overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16,1,0.3,1);
  }
  .nav-menu.open { max-height: 400px; }
  .nav-menu li { width: 100%; text-align: center; border-top: 1px solid var(--border); }
  .nav-menu a { display: block; padding: 1rem; }
  .nav-cta { display: none; }

  .hero-mark { width: 90px; height: 90px; font-size: 2.2rem; }
  .hero { padding: 7rem 1.5rem 3rem; min-height: auto; }

  .what-section, .allinone-inner, .contact-grid {
    grid-template-columns: 1fr; gap: 3rem;
  }
  .steps-grid, .pillars-grid, .features-grid { grid-template-columns: 1fr; }
  .pillars-grid .pillar-card:nth-child(3) { grid-column: auto; max-width: 100%; }
  .services-list { grid-template-columns: 1fr; }
  .what-visual { display: none; }

  .stats-strip { gap: 2rem; padding: 2.5rem 1.5rem; justify-content: space-around; }
  .stat-item { flex: 1 1 40%; }
  .stat-num { font-size: 2rem; }

  .how-section, .features-inner, .pillars-section, .what-section,
  .allinone-section, .cta-section, .content-section, .contact-grid, .page-header {
    padding-left: 1.5rem; padding-right: 1.5rem;
  }
  .page-header { padding-top: 7rem; }

  footer { flex-direction: column; text-align: center; }
  .detail-item { flex-direction: column; }

  .cta-phone { padding: 1rem 2rem; font-size: 1rem; }
}

@media (max-width: 600px) {
  .hero h1 { font-size: 1.8rem; }
  .hero-sub { font-size: 0.95rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn-primary, .btn-secondary { width: 100%; text-align: center; }

  .stats-strip { gap: 1.5rem; padding: 2rem 1rem; }
  .stat-item { flex: 1 1 45%; }
  .stat-num { font-size: 1.8rem; }
  .stat-label { font-size: 0.8rem; }

  .section-title { font-size: 1.6rem; }

  .features-section, .allinone-section, .cta-section { padding: 4rem 1.5rem; }
  .pillars-section, .how-section { padding: 4rem 1.5rem; }

  .detail-item { padding: 1.5rem; gap: 1rem; }
  .detail-num { width: 40px; height: 40px; font-size: 0.95rem; }

  .cta-phone { flex-direction: column; padding: 1rem 1.5rem; }

  .content-block h2 { font-size: 1.3rem; }
  .content-block p { font-size: 0.95rem; line-height: 1.9; }
}

/* NAV LOGO */
.nav-logo img {
  height: 58px; width: auto;
  transition: transform 0.3s;
}
.nav-logo:hover img { transform: scale(1.05); }

@media (max-width: 900px) {
  .nav-logo img { height: 50px; }
}

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--surface); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--accent), var(--accent2));
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

/* Selection */
::selection {
  background: rgba(var(--accent-rgb),0.2);
  color: var(--text);
}

/* LUCIDE ICONS */
[data-lucide] {
  width: 1em; height: 1em;
  display: inline-block; vertical-align: -0.125em;
}
.lucide { stroke-width: 1.8; }
.icon-lg { font-size: 2.5rem; }
.icon-md { font-size: 1.5rem; }
.icon-sm { font-size: 1rem; }
.icon-accent { color: var(--accent); }
.icon-accent2 { color: var(--accent2); }
.icon-white { color: #fff; }
.icon-muted { color: var(--muted); }
