:root {
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-glow: #FFE8A8;
  --gold-deep: #8A6420;
  --bg: #050505;
  --bg2: #0A0A0A;
  --surface: #0F0F0F;
  --surface2: #161616;
  --border: rgba(201,168,76,0.12);
  --border-strong: rgba(201,168,76,0.4);
  --text: #F0E8D5;
  --text-muted: var(--tx-55);
  --text-dim: var(--tx-30);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'IRANYekanX', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}


@media (hover: hover) {
  body { cursor: none; }
}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold-deep); }



.mega-card-icon-wrap svg,
.service-tile-icon svg,
.product-img > svg,
.blog-card-img > svg,
.mega-link-icon svg,
.hero-tab svg,
.mobile-menu > a svg,
.footer-social svg,
.app-btn svg,
.nav-search-icon svg,
.how-num-back svg,
.btn-primary > svg,
.btn-secondary > svg,
.mega-card-link svg,
.blog-card-arrow svg,
.cta-buttons .btn-primary > svg,
.section-actions svg,
.icon {
  fill: none;
  stroke: url(#goldGrad);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}


.testimonial-stars { color: var(--gold); }

.icon { width: 48px; height: 48px; }
.icon-sm { width: 24px; height: 24px; }
.icon-lg { width: 56px; height: 56px; }


.cursor-dot, #cd,
.cursor-ring, #cr {
  display: none;
}
@media (hover: hover) {
  .cursor-dot, #cd {
    display: block !important;
    position: fixed; width: 6px; height: 6px;
    background: var(--gold-glow);
    border-radius: 50%; pointer-events: none;
    z-index: 99999; transform: translate(-50%,-50%);
    box-shadow: 0 0 10px var(--gold-light);
    mix-blend-mode: screen;
    top: 0; left: 0;
  }
  .cursor-ring, #cr {
    display: block !important;
    position: fixed; width: 38px; height: 38px;
    border: 1px solid rgba(201,168,76,0.5);
    border-radius: 50%;
    pointer-events: none; z-index: 99998;
    transform: translate(-50%,-50%);
    top: 0; left: 0;
    transition: width .35s cubic-bezier(.16,1,.3,1), height .35s cubic-bezier(.16,1,.3,1), border-color .3s;
  }
  .cursor-ring.big, #cr.big {
    width: 70px; height: 70px;
    border-color: var(--gold-light);
    background: rgba(201,168,76,0.06);
  }
}

.grain-overlay {
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.95' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: overlay;
}


nav.main-nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 76px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
  background: var(--glass-70);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}

.nav-logo svg.bird-logo { width: 36px; height: 36px; filter: drop-shadow(0 0 12px rgba(201,168,76,0.4)); }

.nav-logo-text {
  font-family: 'Instrument Serif', serif;
  font-size: 30px; font-weight: 400;
  background: linear-gradient(135deg, var(--gold-glow), var(--gold));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 1px;
}

.nav-center {
  display: flex; align-items: center; gap: 4px;
}

.nav-item { position: relative; }

.nav-item > a {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 18px;
  text-decoration: none; color: var(--text-muted);
  font-size: 13px; font-weight: 400;
  transition: color .3s;
  border-radius: 8px;
}

.nav-item > a:hover { color: var(--gold-light); }

.nav-item-arrow { font-size: 9px; transition: transform .3s; }
.nav-item:hover .nav-item-arrow { transform: rotate(180deg); }

.mega-menu {
  position: absolute; top: calc(100% + 4px); right: -20px;
  min-width: 280px;
  background: linear-gradient(180deg, var(--card-97), var(--panel-97));
  backdrop-filter: blur(32px) saturate(180%);
  -webkit-backdrop-filter: blur(32px) saturate(180%);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
  display: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .25s ease, transform .25s ease;
  z-index: 1000;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(201,168,76,0.05);
}


.mega-menu--cols {
  display: none;
  min-width: 640px;
  max-width: 960px;
  flex-direction: row;
  gap: 0;
  padding: 0;
  overflow: hidden;
}


.mega-menu--master {
  min-width: 720px;
  max-width: 900px;
  flex-direction: row;
  gap: 0;
  padding: 0;
  overflow: hidden;
}
.mega-rail {
  flex: 0 0 248px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 14px;
  border-left: 1px solid rgba(201,168,76,0.10);
  background: rgba(201,168,76,0.025);
}
.mega-cat {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 13px;
  border-radius: 12px;
  text-decoration: none;
  color: var(--tx-60);
  font-family: 'IRANYekanX', sans-serif;
  transition: background .2s, color .2s;
  cursor: pointer;
}
.mega-cat-ic {
  width: 36px; height: 36px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.16);
  border-radius: 10px;
  color: var(--gold);
  transition: background .2s, box-shadow .2s;
}
.mega-cat-ic svg { width: 19px; height: 19px; }
.mega-cat-name { flex: 1; font-size: 14px; font-weight: 500; white-space: nowrap; }
.mega-cat-chev { font-size: 15px; opacity: 0; transform: translateX(4px); transition: opacity .2s, transform .2s; color: var(--gold-light); }
.mega-cat:hover, .mega-cat.active { background: rgba(201,168,76,0.10); color: var(--gold-light); }
.mega-cat.active .mega-cat-ic { background: rgba(201,168,76,0.20); box-shadow: 0 0 14px rgba(201,168,76,0.12); }
.mega-cat.active .mega-cat-chev { opacity: 1; transform: none; }

.mega-panels { flex: 1; min-width: 0; padding: 22px 26px; }
.mega-panel { display: none; }
.mega-panel.active { display: block; animation: birdMegaFade .25s ease; }
@keyframes birdMegaFade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.mega-panel-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px; padding-bottom: 14px;
  border-bottom: 1px solid rgba(201,168,76,0.12);
}
.mega-panel-title { font-family: 'IRANYekanX', sans-serif; font-size: 16px; font-weight: 700; color: var(--text-strong); letter-spacing: -0.2px; }
.mega-panel-all { font-size: 12px; font-weight: 500; color: var(--gold-light); text-decoration: none; display: flex; align-items: center; gap: 4px; transition: gap .2s; white-space: nowrap; }
.mega-panel-all:hover { gap: 8px; }
.mega-panel-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3px 20px; }
.mega-prod {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 11px; border-radius: 9px;
  font-family: 'IRANYekanX', sans-serif; font-size: 13.5px; font-weight: 400;
  color: var(--tx-60); text-decoration: none;
  transition: background .18s, color .18s, transform .18s;
  min-width: 0;
}
.mega-prod-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold-deep); flex-shrink: 0; transition: background .2s, box-shadow .2s; }
.mega-prod-name { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mega-prod:hover { background: rgba(201,168,76,0.08); color: var(--gold-light); transform: translateX(-3px); }
.mega-prod:hover .mega-prod-dot { background: var(--gold); box-shadow: 0 0 8px var(--gold); }
.mega-prod--soon { opacity: 0.4; pointer-events: none; }

@media (max-width: 980px) {
  .mega-menu--master { min-width: 560px; max-width: 92vw; }
  .mega-rail { flex-basis: 200px; }
  .mega-panel-grid { grid-template-columns: 1fr; }
}

.nav-item:hover .mega-menu {
  display: flex;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}


.mega-menu::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 0; right: 0;
  height: 20px;
}


.mega-col {
  flex: 1;
  min-width: 190px;
  padding: 28px 22px;
  border-right: 1px solid rgba(201,168,76,0.06);
}
.mega-col:last-child { border-right: none; }


.mega-col-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(201,168,76,0.12);
}

.mega-col-icon {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 10px;
  color: var(--gold);
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(201,168,76,0.08);
}

.mega-col-title {
  font-family: 'IRANYekanX', sans-serif !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  color:var(--text-strong) !important;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  line-height: 1.3;
  transition: color .2s;
  letter-spacing: -0.2px;
}
.mega-col-title:hover { color: var(--gold-light); }

.mega-col-arrow {
  display: none;
}


.mega-col-items {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mega-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  font-family: 'IRANYekanX', sans-serif;
  font-size: 13.5px;
  font-weight: 400;
  color: var(--tx-60);
  text-decoration: none;
  transition: all .2s ease;
  white-space: nowrap;
}
.mega-link:hover {
  color: var(--tx-95);
  background: rgba(201,168,76,0.07);
  transform: translateX(-3px);
}


.mega-link-icon-sm {
  width: 22px; height: 22px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(201,168,76,0.07);
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: 6px;
  color: var(--gold);
  flex-shrink: 0;
  opacity: 0.8;
  transition: opacity .2s;
}
.mega-link:hover .mega-link-icon-sm {
  opacity: 1;
  background: rgba(201,168,76,0.12);
}


.mega-link--direct {
  padding: 10px 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--tx-85);
}
.mega-link--direct:hover {
  color: var(--gold-light);
}


.mega-link-icon {
  width: 36px; height: 36px;
  background: rgba(201,168,76,0.06);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.mega-link-icon svg { width: 18px; height: 18px; }

.nav-right {
  display: flex; align-items: center; gap: 16px;
}

.nav-search {
  position: relative;
  width: 240px;
  height: 40px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 100px;
  display: flex; align-items: center;
  padding: 0 16px;
  transition: all .3s;
}

.nav-search:focus-within {
  border-color: rgba(201,168,76,0.4);
  background: rgba(201,168,76,0.05);
}

.nav-search input {
  flex: 1; background: none; border: none; outline: none;
  color: var(--text); font-family: 'IRANYekanX', sans-serif;
  font-size: 13px; padding: 0 8px;
  direction: rtl;
}

.nav-search input::placeholder { color: var(--text-dim); }

.nav-search-icon {
  color: var(--gold-light);
  display: inline-flex; align-items: center; justify-content: center;
  background: none; border: 0; padding: 0; margin: 0; box-shadow: none;
  font: inherit; line-height: 0; cursor: pointer; flex: none;
  -webkit-appearance: none; appearance: none;
  transition: color .2s, transform .12s cubic-bezier(.23,1,.32,1);
}
.nav-search-icon:active { transform: scale(.9); }
@media (hover: hover) { .nav-search-icon:hover { color: var(--gold); } }
.nav-search-icon svg { display: block; width: 14px; height: 14px; }

.nav-search input[type="search"] { -webkit-appearance: none; appearance: none; }
.nav-search input[type="search"]::-webkit-search-cancel-button,
.nav-search input[type="search"]::-webkit-search-decoration { -webkit-appearance: none; display: none; }

.nav-cta {
  padding: 10px 24px;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  border: none; border-radius: 100px;
  color: var(--bg);
  font-family: 'IRANYekanX', sans-serif;
  font-size: 13px; font-weight: 600;
  text-decoration: none;
  transition: all .3s;
  box-shadow: 0 4px 20px rgba(201,168,76,0.2);
  white-space: nowrap;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.4);
}


.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 50%;
  align-items: center; justify-content: center;
  flex-direction: column; gap: 4px;
  cursor: pointer;
}

.nav-toggle span {
  display: block; width: 16px; height: 1px;
  background: var(--gold-light);
  transition: all .3s;
}


.mobile-menu {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 100%; max-width: 380px;
  background: linear-gradient(180deg, var(--bg2), var(--bg));
  border-left: 1px solid var(--border);
  z-index: 999;
  padding: 100px 32px 32px;
  transform: translateX(100%);
  transition: transform .5s cubic-bezier(.16,1,.3,1);
  overflow-y: auto;
  display: flex; flex-direction: column; gap: 4px;
}

.mobile-menu.open { transform: translateX(0); }

.mobile-menu a {
  padding: 16px 20px;
  border-radius: 12px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 15px;
  display: flex; align-items: center; gap: 12px;
  border: 1px solid transparent;
  transition: all .25s;
}

.mobile-menu a:hover, .mobile-menu a.active {
  background: rgba(201,168,76,0.05);
  border-color: var(--border);
  color: var(--gold-light);
}

.mobile-menu-divider {
  height: 1px;
  background: var(--border);
  margin: 12px 0;
}

.mobile-overlay {
  position: fixed; inset: 0;
  background: var(--glass-70);
  backdrop-filter: blur(8px);
  z-index: 998;
  opacity: 0; visibility: hidden;
  transition: all .4s ease;
}

.mobile-overlay.open { opacity: 1; visibility: visible; }


.hero {
  position: relative;
  min-height: 100vh;
  padding: 96px 24px 60px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}

#heroCanvas {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  z-index: 0 !important;
}


.hero-vignette {
  position: absolute; inset: 0;
  z-index: 2;
  background: radial-gradient(ellipse 50% 50% at center, var(--glass-85) 0%, var(--glass-40) 40%, transparent 80%);
  pointer-events: none;
}

.hero-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 60% 50% at center, black, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 60% 50% at center, black, transparent 80%);
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 880px;
  width: 100%;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 20px;
  border: 1px solid var(--border-strong);
  border-radius: 100px;
  font-family: 'IRANYekanX', sans-serif;
  font-size: 13px; letter-spacing: 1px;
  color: var(--gold-light);
  background: var(--glass-60);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  margin-bottom: 32px;
  direction: rtl;
}

.badge-dot {
  width: 6px; height: 6px;
  background: var(--gold-light);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--gold-glow);
  animation: dotPulse 1.5s ease-in-out infinite;
}

@keyframes dotPulse {
  0%,100% { opacity: 1; }
  50% { opacity: 0.3; }
}


.hero-title {
  font-family: 'Onvan', 'IRANYekanX', sans-serif;
  font-size: clamp(34px, 5.8vw, 70px);
  font-weight: 400;
  line-height: 1.38;
  letter-spacing: -0.5px;
  margin-bottom: 14px; 
  color:var(--text-strong);
  text-shadow: 0 0 40px var(--glass-90), 0 0 80px var(--glass-60);
}


.hero-slogan {
  font-family: 'IRANYekanX', sans-serif;
  font-size: clamp(15px, 2.4vw, 22px);
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: -0.2px; 
  color: var(--gold-light);
  margin: 0 auto 30px;
  max-width: 620px;
}

.hero-title em {
  font-family: 'Onvan', 'IRANYekanX', sans-serif;
  font-style: normal;
  font-weight: 400;
  background: linear-gradient(180deg, var(--gold-glow), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: clamp(14px, 2vw, 17px);
  color: var(--tx-85);
  line-height: 1.9;
  max-width: 560px; margin: 0 auto 40px;
  font-weight: 300;
  text-shadow: 0 0 20px var(--glass-80);
}

.hero-actions {
  display: flex; gap: 14px;
  justify-content: center; flex-wrap: wrap;
  margin-bottom: 56px;
}


.btn-primary {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 36px;
  background: linear-gradient(135deg, var(--gold-glow), var(--gold-light) 45%, var(--gold));
  border: none; border-radius: 100px;
  color: #1A1304;
  font-family: 'IRANYekanX', sans-serif;
  font-size: 14px; font-weight: 600;
  text-decoration: none;
  transition: all .4s cubic-bezier(.16,1,.3,1);
  box-shadow: 0 8px 30px rgba(201,168,76,0.25);
  position: relative; overflow: hidden;
}

.btn-primary::before {
  content: ''; position: absolute;
  top: 0; left: -100%; width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left .8s ease;
}

.btn-primary:hover::before { left: 150%; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 50px rgba(201,168,76,0.45); }

.btn-primary > svg {
  stroke: #1A1304 !important;
  stroke-width: 2;
  fill: none;
}


html[data-bird-theme="light"] .btn-secondary { color: var(--gold-deep); }

html[data-bird-theme="light"] .btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: #FFFDF7;
}
html[data-bird-theme="light"] .btn-primary > svg { stroke: #FFFDF7 !important; }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 36px;
  background: var(--glass-40);
  border: 1px solid var(--border-strong);
  border-radius: 100px;
  color: var(--gold-light);
  font-family: 'IRANYekanX', sans-serif;
  font-size: 14px; font-weight: 400;
  text-decoration: none;
  transition: all .4s cubic-bezier(.16,1,.3,1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.btn-secondary:hover {
  background: rgba(201,168,76,0.08);
  border-color: var(--gold-light);
  transform: translateY(-2px);
}

.hero-tabs {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center;
}

.hero-tab {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  background: var(--glass-60);
  border: 1px solid var(--border);
  border-radius: 100px;
  text-decoration: none;
  color: var(--text-muted);
  font-size: 12px; font-weight: 400;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all .3s ease;
  white-space: nowrap;
}

.hero-tab:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  background: rgba(201,168,76,0.1);
}

.hero-tab svg { width: 14px; height: 14px; flex-shrink: 0; }

.hero-scroll {
  position: absolute;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column;
  align-items: center; gap: 8px;
  z-index: 10;
}

.hero-scroll-text {
  font-family: 'Bird Mono', ui-monospace, monospace;
  font-style: normal;
  font-size: 9.5px; letter-spacing: 3px;
  color: var(--text-dim); text-transform: uppercase;
  direction: ltr;
}

.hero-scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2.5s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%,100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}


.trust-float {
  position: relative;
  z-index: 20;
  margin: -60px auto 0;
  max-width: 1100px;
  padding: 0 24px;
}

.trust-card {
  background: linear-gradient(180deg, var(--card-95), var(--panel-95));
  backdrop-filter: blur(32px);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px 24px;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(201,168,76,0.05), inset 0 1px 0 rgba(201,168,76,0.08);
  position: relative;
}

.trust-card::before {
  content: '';
  position: absolute; top: 0; left: 20%; right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.trust-stat {
  text-align: center; position: relative;
  padding: 0 8px;
}

.trust-stat + .trust-stat::before {
  content: '';
  position: absolute; right: 0; top: 15%; bottom: 15%;
  width: 1px;
  background: var(--border);
}

.trust-num {
  font-family: 'Bird Mono', ui-monospace, monospace;
  font-size: clamp(24px, 3.4vw, 36px); font-weight: 700; letter-spacing: -1px;
  background: linear-gradient(180deg, var(--gold-glow), var(--gold));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block; margin-bottom: 6px;
  line-height: 1;
}

.trust-label {
  font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--text-muted);
}


section.content-section {
  padding: 120px 48px 60px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.section-head {
  display: flex; align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 20px;
}

.section-head.center {
  flex-direction: column;
  align-items: center;
  text-align: center;
}


.section-eyebrow {
  font-family: 'Bird Mono', ui-monospace, monospace;
  font-style: normal;
  font-size: 11px; letter-spacing: 3.4px;
  color: var(--gold); text-transform: uppercase;
  margin-bottom: 14px;
  direction: ltr;
}

.section-title {
  font-family: 'Onvan', 'IRANYekanX', sans-serif;
  font-size: clamp(26px, 3.4vw, 42px);
  font-weight: 400;
  line-height: 1.42;
  color:var(--text-strong);
  -webkit-text-fill-color:var(--text-strong);
}

.section-title em {
  font-family: 'Onvan', 'IRANYekanX', sans-serif !important;
  font-style: normal !important;
  font-weight: 400 !important;
  background: linear-gradient(180deg, var(--gold-glow), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
}

.section-subtitle {
  font-size: 14px; color: var(--text-muted);
  line-height: 1.8; margin-top: 12px;
  max-width: 500px;
}

.section-actions {
  display: flex; align-items: center; gap: 12px;
}


.mega-cats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.mega-card {
  position: relative;
  background: linear-gradient(180deg, var(--card-85), var(--panel-85));
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 440px;
  transition: transform .5s cubic-bezier(.16,1,.3,1), border-color .3s;
}

.mega-card::before {
  content: '';
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 50%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0; transition: opacity .4s;
}

.mega-card::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(201,168,76,0.1), transparent 50%);
  opacity: 0; transition: opacity .4s;
  pointer-events: none;
}

.mega-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-6px);
}

.mega-card:hover::before, .mega-card:hover::after { opacity: 1; }

.mega-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 16px;
  flex-shrink: 0;
}

.mega-card-icon-box {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(201,168,76,0.18), rgba(201,168,76,0.04));
  border: 1px solid var(--border-strong);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  flex-shrink: 0;
  transition: all .4s;
}

.mega-card-icon-box::after {
  content: '';
  position: absolute; inset: -8px;
  border-radius: 22px;
  background: radial-gradient(circle, rgba(201,168,76,0.3), transparent);
  filter: blur(20px);
  opacity: 0;
  transition: opacity .4s;
  z-index: -1;
}

.mega-card:hover .mega-card-icon-box::after { opacity: 1; }

.mega-card-icon-box svg {
  width: 28px; height: 28px;
  fill: none;
  stroke: url(#goldGrad);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  color: #C9A84C;
}
.mega-card-icon-box svg circle[fill="currentColor"],
.mega-card-icon-box svg path[fill="currentColor"],
.mega-card-icon-box svg rect[fill="currentColor"] {
  fill: #C9A84C;
  stroke: none;
}

.mega-card-titles {
  flex: 1;
  min-width: 0;
}

.mega-card-eyebrow {
  font-family: 'Bird Mono', ui-monospace, monospace;
  font-style: normal;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
  direction: ltr;
}

.mega-card-title {
  font-family: 'IRANYekanX', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}

.mega-product-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  margin-bottom: 14px;
}

.mega-product-list li {
  display: block;
}

.mega-product-list li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 10px;
  margin: 0 -10px;
  border-radius: 8px;
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  transition: all .25s ease;
  white-space: nowrap;
  overflow: hidden;
}

.mega-product-list li a::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(201,168,76,0.4);
  flex-shrink: 0;
  transition: all .3s;
}

.mega-product-list li a > span {
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
}

.mega-product-list li a:hover {
  background: rgba(201,168,76,0.05);
  color: var(--gold-light);
  padding-right: 14px;
}

.mega-product-list li a:hover::before {
  background: var(--gold-glow);
  box-shadow: 0 0 6px var(--gold);
}

.mega-card-all {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 12px 14px;
  margin: 0 -14px -8px;
  border-radius: 10px;
  background: rgba(201,168,76,0.04);
  border: 1px solid var(--border);
  font-family: 'IRANYekanX', sans-serif;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--gold-light);
  text-decoration: none;
  transition: all .3s;
}

.mega-card-all svg {
  width: 14px; height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .3s;
}

.mega-card-all:hover {
  background: rgba(201,168,76,0.1);
  border-color: var(--gold);
  color: var(--gold-glow);
}

.mega-card-all:hover svg {
  transform: translateX(-4px);
}


.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.service-tile {
  position: relative;
  aspect-ratio: 1;
  background: linear-gradient(180deg, var(--card-60), var(--panel-60));
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-decoration: none;
  text-align: center;
  overflow: hidden;
  transition: transform .5s cubic-bezier(.16,1,.3,1), border-color .3s;
}

.service-tile::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(201,168,76,0.15), transparent 50%);
  opacity: 0; transition: opacity .4s;
  pointer-events: none;
}

.service-tile:hover {
  border-color: var(--border-strong);
  transform: translateY(-6px);
}
.service-tile:hover::after { opacity: 1; }

.service-tile-icon {
  margin-bottom: 12px;
  filter: drop-shadow(0 4px 12px rgba(201,168,76,0.2));
  transition: transform .5s;
}

.service-tile-icon svg { width: 36px; height: 36px; }

.service-tile:hover .service-tile-icon {
  transform: scale(1.15) translateY(-2px);
}

.service-tile-name {
  font-size: 12px;
  color: var(--text);
  font-weight: 400;
}


.products-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.product-card {
  position: relative;
  background: linear-gradient(180deg, var(--card-85), var(--panel-85));
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform .5s cubic-bezier(.16,1,.3,1), border-color .3s;
  display: flex;
  flex-direction: column;
}

.product-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.4), transparent);
  opacity: 0; transition: opacity .4s;
  z-index: 2;
}

.product-card::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 30%), rgba(201,168,76,0.1), transparent 50%);
  opacity: 0; transition: opacity .4s;
  pointer-events: none;
  z-index: 1;
}

.product-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-6px);
}

.product-card:hover::before, .product-card:hover::after { opacity: 1; }

.product-img {
  aspect-ratio: 1 / 1;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  background:
    radial-gradient(ellipse at center, var(--clr, rgba(201,168,76,0.3)) 0%, transparent 70%),
    linear-gradient(180deg, var(--card-50), var(--panel-50));
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.product-img-bg-pattern {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.05), transparent 40%);
  opacity: 0.6;
}

.product-img svg {
  width: 56px; height: 56px;
  filter: drop-shadow(0 8px 20px var(--clr, rgba(201,168,76,0.5)));
  transition: transform .5s;
  z-index: 1;
}

.product-card:hover .product-img svg {
  transform: scale(1.15) translateY(-4px);
}

.product-body {
  padding: 18px;
  display: flex; flex-direction: column;
  flex: 1;
}

.product-tag-row {
  display: flex; gap: 6px;
  margin-bottom: 10px; flex-wrap: wrap;
}

.product-tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 9px; letter-spacing: 2px;
  text-transform: uppercase;
  background: rgba(201,168,76,0.08);
  border: 1px solid var(--border);
  color: var(--gold);
  direction: ltr;
}

.product-tag.hot {
  background: rgba(220,38,38,0.1);
  border-color: rgba(220,38,38,0.3);
  color: #ef4444;
}


h3.product-name { margin: 0; font-weight: inherit; }
.product-name {
  font-family: 'Onvan', 'IRANYekanX', sans-serif;
  font-size: 16px; font-weight: 400; line-height: 1.65;
  margin-bottom: 6px;
  color: var(--text);
}

.product-desc {
  font-size: 12px; color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}

.product-footer {
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.product-price {
  display: flex; flex-direction: column;
}

.product-price-label {
  font-size: 10px; color: var(--text-dim);
  letter-spacing: 1px;
}

.product-price-num {
  font-family: 'IRANYekanX', sans-serif;
  font-size: 20px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold-glow), var(--gold));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.product-price-unit {
  font-size: 10px;
  color: var(--text-muted);
  margin-top: 2px;
}

.product-add {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  border: none;
  color: var(--bg);
  font-size: 22px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 300;
  transition: all .4s cubic-bezier(.16,1,.3,1);
  box-shadow: 0 4px 16px rgba(201,168,76,0.3);
  flex-shrink: 0;
}

.product-add svg {
  fill: none !important;
  stroke: var(--bg) !important;
  stroke-width: 2.5;
  stroke-linecap: round;
}

.product-card:hover .product-add {
  transform: rotate(180deg);
  box-shadow: 0 6px 24px rgba(201,168,76,0.5);
}


.how-it-works {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}


.how-line { display: none; }

.how-step {
  position: relative;
  text-align: center;
  z-index: 1;
}

.how-step::after {
  content: '';
  position: absolute;
  top: 60px;                              
  inset-inline-start: calc(50% + 60px);   
  width: calc(100% + 24px - 120px);       
  height: 1px;
  
  background: linear-gradient(90deg, var(--gold-deep), var(--gold), var(--gold-deep));
  pointer-events: none;
}
.how-step:last-child::after { content: none; }

.how-num-wrap {
  width: 120px; height: 120px;
  margin: 0 auto 24px;
  position: relative;
  perspective: 1000px;
}

.how-num-inner {
  position: absolute; inset: 0;
  transform-style: preserve-3d;
  transition: transform .8s cubic-bezier(.16,1,.3,1);
}

.how-step:hover .how-num-inner { transform: rotateY(180deg); }

.how-num-face {
  position: absolute; inset: 0;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--card-95), var(--panel-95));
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  box-shadow: 0 0 0 6px var(--bg);
}

.how-num-front {
  font-family: 'IRANYekanX', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--gold-light);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  display: flex; align-items: center; justify-content: center;
}

.how-num-back {
  transform: rotateY(180deg);
  background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(201,168,76,0.05));
  border-color: var(--border-strong);
}

.how-num-back svg { width: 36px; height: 36px; }

.how-step-title {
  font-family: 'Onvan', 'IRANYekanX', sans-serif;
  font-size: 16px; font-weight: 400;
  color: var(--text);
  margin-bottom: 10px;
}

.how-step-desc {
  font-size: 13px; color: var(--text-muted);
  line-height: 1.8;
  max-width: 220px; margin: 0 auto;
}


.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.blog-card {
  position: relative;
  background: linear-gradient(180deg, var(--card-85), var(--panel-85));
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex; flex-direction: column;
  transition: transform .5s cubic-bezier(.16,1,.3,1), border-color .3s;
}

.blog-card-img {
  position: relative;
  height: 180px;
  background: var(--clr, linear-gradient(135deg, #1a1a1a, var(--bg2)));
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}

.blog-card-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, var(--glass-85));
}

.blog-card-img svg {
  width: 80px; height: 80px;
  opacity: 0.5;
  filter: drop-shadow(0 8px 24px rgba(201,168,76,0.3));
  z-index: 1;
}

.blog-card-tag {
  position: absolute;
  top: 16px; right: 16px;
  padding: 6px 14px;
  background: var(--glass-70);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-strong);
  border-radius: 100px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 11px; letter-spacing: 2px;
  color: var(--gold-light);
  text-transform: uppercase;
  direction: ltr;
  z-index: 2;
}

.blog-card-body {
  padding: 24px;
  display: flex; flex-direction: column;
  flex: 1;
}

.blog-card-title {
  font-family: 'Onvan', 'IRANYekanX', sans-serif;
  font-size: 18px; font-weight: 400;
  line-height: 1.6;
  margin-bottom: 12px;
  color: var(--text);
}

.blog-card-desc {
  font-size: 13px; color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
  flex: 1;
}

.blog-card-meta {
  display: flex; align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.blog-card-date {
  font-family: 'Bird Mono', ui-monospace, monospace;
  font-style: normal;
  font-size: 10.5px; letter-spacing: .5px;
  color: var(--text-dim);
  direction: ltr;
}

.blog-card-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
  transition: gap .3s;
  direction: ltr;
}

.blog-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-6px);
}

.blog-card:hover .blog-card-arrow { gap: 12px; }


.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial {
  position: relative;
  background: linear-gradient(180deg, var(--card-85), var(--panel-85));
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  transition: transform .5s cubic-bezier(.16,1,.3,1), border-color .3s;
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: 16px; right: 24px;
  font-family: 'Instrument Serif', serif;
  font-size: 100px;
  font-weight: 400;
  color: rgba(201,168,76,0.08);
  line-height: 1;
}

.testimonial:hover {
  border-color: var(--border-strong);
  transform: translateY(-4px);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 14px; letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-text {
  font-family: 'IRANYekanX', sans-serif;
  font-size: 14px;
  font-weight: 300;
  font-style: normal;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-deep), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Instrument Serif', serif;
  font-size: 19px; font-weight: 400;
  color: var(--bg);
  flex-shrink: 0;
}

.testimonial-name {
  font-size: 14px; font-weight: 500;
  color: var(--text);
  margin-bottom: 2px;
}

.testimonial-role {
  font-size: 11px; color: var(--text-dim);
  letter-spacing: 1px;
  direction: ltr;
}


.cta-section {
  padding: 0 48px;
  margin: 80px auto;
  max-width: 1400px;
}

.cta-banner {
  position: relative;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(201,168,76,0.15), transparent),
    linear-gradient(180deg, var(--card-95), var(--panel-95));
  border: 1px solid var(--border-strong);
  border-radius: 32px;
  padding: 80px 48px;
  text-align: center;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-glow), transparent);
}

.cta-decor {
  position: absolute;
  font-family: 'Instrument Serif', serif;
  font-size: 200px; font-weight: 300;
  font-style: italic;
  color: rgba(201,168,76,0.04);
  pointer-events: none;
  white-space: nowrap;
  direction: ltr;
}

.cta-decor-1 { top: -40px; right: -50px; }
.cta-decor-2 { bottom: -80px; left: -50px; }

.cta-eyebrow {
  font-family: 'Bird Mono', ui-monospace, monospace;
  font-style: normal;
  font-size: 11px; letter-spacing: 3.4px;
  color: var(--gold); text-transform: uppercase;
  margin-bottom: 18px;
  position: relative; z-index: 1;
  direction: ltr;
}

.cta-title {
  font-family: 'Onvan', 'IRANYekanX', sans-serif;
  font-size: clamp(26px, 4.2vw, 44px);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 22px;
  position: relative; z-index: 1;
  background: linear-gradient(180deg, #fff, var(--gold-light));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta-desc {
  font-size: 15px; color: var(--text-muted);
  line-height: 1.9; max-width: 580px;
  margin: 0 auto 36px;
  position: relative; z-index: 1;
}

.cta-buttons {
  display: flex; gap: 14px;
  justify-content: center; flex-wrap: wrap;
  position: relative; z-index: 1;
}


.partners {
  padding: 60px 24px;
  max-width: 1400px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.partners-title {
  text-align: center;
  font-size: 11px; letter-spacing: 4px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 28px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  direction: ltr;
}

.partners-row {
  display: flex; align-items: center;
  justify-content: space-around;
  gap: 24px; flex-wrap: wrap;
  filter: grayscale(1) brightness(0.6);
  opacity: 0.6;
  transition: all .4s;
}

.partners-row:hover { opacity: 0.9; filter: grayscale(0.5) brightness(0.8); }

.partner-logo {
  font-family: 'Instrument Serif', serif;
  font-size: 21px; font-weight: 400;
  color: var(--text-muted);
  transition: all .3s;
}


.support-strip {
  background:
    radial-gradient(ellipse 80% 60% at 30% 50%, rgba(201,168,76,0.1), transparent),
    linear-gradient(135deg, var(--card-95), var(--panel-95));
  padding: 32px 48px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  gap: 40px; flex-wrap: wrap;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.support-strip-text {
  font-family: 'IRANYekanX', sans-serif;
  font-size: clamp(16px, 2.6vw, 22px);
  font-weight: 700;
  background: linear-gradient(180deg, #fff, var(--gold-light));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

.support-divider {
  width: 1px; height: 40px;
  background: var(--border-strong);
}

.support-phones {
  display: flex; gap: 24px; flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.support-phone-label {
  color: var(--text-muted);
  font-size: 11px;
  letter-spacing: 1px;
}

.support-phone-num {
  color: var(--gold-light);
  font-weight: 500;
  letter-spacing: 1px;
  direction: ltr;
  font-size: 14px;
  margin-top: 2px;
}


footer {
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201,168,76,0.04), transparent),
    var(--bg2);
  padding: 80px 48px 32px;
  border-top: 1px solid var(--border);
}

.footer-top {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
  direction: rtl;
}

.footer-top > div {
  direction: rtl;
  text-align: right;
}

.footer-brand { max-width: 320px; }

.footer-logo {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 20px;
  text-decoration: none;
}

.footer-tagline {
  font-family: 'IRANYekanX', sans-serif;
  font-style: normal;
  font-size: 15px;
  color: var(--gold);
  margin-bottom: 16px;
  line-height: 1.5;
}

.footer-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex; gap: 10px;
}

.footer-social {
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  transition: all .3s;
}

.footer-social svg { width: 16px; height: 16px; }

.footer-social:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  background: rgba(201,168,76,0.06);
  transform: translateY(-3px);
}

.footer-col-title {
  font-family: 'IRANYekanX', sans-serif;
  font-weight: 800;
  font-style: normal;
  font-size: 15px;
  letter-spacing: 0;
  color: var(--gold);
  text-transform: none;
  text-align: right;
  direction: rtl;
  margin-bottom: 22px;
  display: block;
  width: 100%;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.footer-links a {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  transition: all .25s ease;
  display: block;
  text-align: right;
  direction: rtl;
}

.footer-links a:hover {
  color: var(--gold-light);
  transform: translateX(4px);
}

.footer-apps {
  margin-top: 32px;
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}

.footer-apps-title {
  font-family: 'IRANYekanX', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--text);
}

.footer-apps-row {
  display: flex; gap: 10px; flex-wrap: wrap;
}

.app-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 12px;
  transition: all .3s;
}

.app-btn svg { width: 16px; height: 16px; }

.app-btn:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  background: rgba(201,168,76,0.05);
}

.footer-bottom {
  max-width: 1400px;
  margin: 24px auto 0;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}

.footer-copy {
  font-size: 11px; letter-spacing: 2px;
  color: var(--text-dim);
  direction: ltr;
}

.footer-legal {
  display: flex; gap: 20px;
}

.footer-legal a {
  font-size: 11px; color: var(--text-dim);
  text-decoration: none;
  transition: color .3s;
}

.footer-legal a:hover { color: var(--gold-light); }


.footer-legal a,
.footer-social,
.app-btn,
.footer-links a { position: relative; }


.footer-legal a::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 44px; height: 44px;
  transform: translate(-50%, -50%);
}


.footer-social::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 44px; height: 44px;
  transform: translate(-50%, -50%);
}


.app-btn::after {
  content: '';
  position: absolute;
  top: 50%; left: 0; right: 0;
  height: 44px;
  transform: translateY(-50%);
}


.footer-links a { min-width: 44px; }

@media (pointer: coarse) {
  .footer-links { gap: 27px; }
  .footer-links a::after {
    content: '';
    position: absolute;
    top: 50%; left: 0; right: 0;
    height: 44px;
    transform: translateY(-50%);
  }
}


.footer-social,
.app-btn { transition: color .3s, border-color .3s, background .3s, transform .16s cubic-bezier(.23,1,.32,1); }
.footer-social:active,
.app-btn:active { transform: scale(.97); }
@media (hover: hover) and (pointer: fine) {
  .footer-social:hover:active { transform: translateY(-3px) scale(.97); }
}




@media (max-width: 1200px) {
  .nav-search { display: none; }
  .mega-cats { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(4, 1fr); }
  .products-row { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid .blog-card:nth-child(3) { grid-column: span 2; }
  .testimonials { grid-template-columns: 1fr; }
  .how-it-works { grid-template-columns: repeat(2, 1fr); gap: 48px; }
  .how-line { display: none; }
  
  .how-step::after { content: none; }
  .footer-top { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: span 3; }
}


@media (max-width: 768px) {
  
  body { cursor: auto !important; }
  .cursor-dot, .cursor-ring { display: none !important; }

  
  nav.main-nav { padding: 0 20px; height: 64px; }
  .nav-center, .nav-search { display: none; }
  .nav-right .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-logo svg.bird-logo { width: 30px; height: 30px; }
  .nav-logo-text { font-size: 22px; }

  
  .hero { padding: 80px 16px 40px; }
  .hero-content { padding: 0 8px; }
  .hero-badge { font-size: 10px; letter-spacing: 2px; padding: 6px 14px; margin-bottom: 24px; }
  .hero-title { font-size: clamp(32px, 10vw, 48px); margin-bottom: 10px; }
  .hero-slogan { font-size: 15px; margin-bottom: 22px; }
  .hero-desc { font-size: 14px; margin-bottom: 28px; padding: 0 8px; }
  .hero-actions { gap: 10px; margin-bottom: 36px; }
  .btn-primary, .btn-secondary { padding: 14px 28px; font-size: 13px; }
  .hero-tabs { gap: 8px; padding: 0 8px; }
  .hero-tab { padding: 8px 14px; font-size: 11px; }
  .hero-tab svg { width: 12px; height: 12px; }
  .hero-scroll { bottom: 16px; }

  
  .trust-float { margin-top: -40px; padding: 0 16px; }
  .trust-card {
    grid-template-columns: 1fr 1fr;
    gap: 20px; padding: 24px 16px;
  }
  .trust-stat + .trust-stat::before { display: none; }
  .trust-stat:nth-child(odd):not(:first-child)::before {
    content: '';
    position: absolute; right: 0; top: 15%; bottom: 15%;
    width: 1px; background: var(--border);
    display: block;
  }
  .trust-num { font-size: 28px; }
  .trust-label { font-size: 9px; letter-spacing: 1px; }

  
  section.content-section { padding: 80px 16px 32px; }
  .section-head { flex-direction: column; align-items: flex-start; gap: 18px; }
  .section-head.center { align-items: center; }
  .section-title { font-size: clamp(28px, 8vw, 36px); }
  .section-subtitle { font-size: 13px; }

  
  .mega-cats { grid-template-columns: 1fr; gap: 14px; }
  .mega-card { min-height: auto; padding: 24px 20px; }
  .mega-card-icon-box { width: 56px; height: 56px; }
  .mega-card-icon-box svg { width: 28px; height: 28px; }
  .mega-card-title { font-size: 22px; margin-bottom: 14px; }
  .mega-card-desc { font-size: 13px; }
  .mega-card-count { font-size: 12px; padding: 6px 12px; }

  
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .service-tile { padding: 16px; border-radius: 14px; }
  .service-tile-icon svg { width: 32px; height: 32px; }
  .service-tile-name { font-size: 11px; }

  
  .products-row { grid-template-columns: 1fr 1fr; gap: 12px; }
  .product-img svg { width: 44px; height: 44px; }
  .product-body { padding: 14px; }
  .product-name { font-size: 13px; }
  .product-desc { font-size: 11px; }
  .product-price-num { font-size: 18px; }
  .product-add { width: 32px; height: 32px; font-size: 18px; }

  
  .how-it-works { grid-template-columns: 1fr; gap: 32px; }
  .how-num-wrap { width: 90px; height: 90px; margin-bottom: 16px; }
  .how-num-front { font-size: 36px; }
  .how-num-back svg { width: 28px; height: 28px; }

  
  .blog-grid { grid-template-columns: 1fr; }
  .blog-grid .blog-card:nth-child(3) { grid-column: span 1; }
  .blog-card-img { height: 160px; }
  .blog-card-img svg { width: 64px; height: 64px; }
  .blog-card-body { padding: 20px; }
  .blog-card-title { font-size: 18px; }

  
  .testimonials { grid-template-columns: 1fr; gap: 14px; }
  .testimonial { padding: 24px 20px; }
  .testimonial-text { font-size: 14px; }

  
  .cta-section { padding: 0 16px; margin: 60px auto; }
  .cta-banner { padding: 50px 24px; border-radius: 24px; }
  .cta-decor { font-size: 100px; }
  .cta-buttons { gap: 10px; }
  .cta-buttons .btn-primary, .cta-buttons .btn-secondary { padding: 14px 24px; font-size: 13px; }

  
  .partners { padding: 40px 16px; }
  .partners-row { gap: 20px; }
  .partner-logo { font-size: 16px; }

  
  .support-strip {
    flex-direction: column; gap: 20px;
    padding: 28px 20px;
  }
  .support-divider { display: none; }
  .support-phones { flex-direction: column; gap: 16px; }

  
  footer { padding: 60px 20px 24px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: span 2; }
  .footer-apps { flex-direction: column; align-items: stretch; gap: 16px; padding: 24px 0; }
  .footer-apps-row { justify-content: center; }
  .footer-bottom { flex-direction: column; align-items: center; gap: 12px; text-align: center; }
}

@media (max-width: 480px) {
  .hero-tabs { gap: 6px; }
  .hero-tab { padding: 7px 12px; font-size: 10px; gap: 6px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .products-row { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}



:where(html.bird-js) .reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s cubic-bezier(.16,1,.3,1);
}
@media (prefers-reduced-motion: reduce){ :where(html.bird-js) .reveal{ transition: opacity .3s ease; transform: none; } }

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}






.how-steps-5 {
  grid-template-columns: repeat(5, 1fr) !important;
  align-items: start !important;
}
.how-steps-5 .how-line {
  grid-column: 1 / 6 !important;
}
@media (max-width: 1200px) {
  .how-steps-5 {
    grid-template-columns: repeat(5, 1fr) !important;
  }
}
@media (max-width: 900px) {
  .how-steps-5 {
    grid-template-columns: repeat(3, 1fr) !important;
  }
  .how-steps-5 .how-line { display: none !important; }
}
@media (max-width: 580px) {
  .how-steps-5 {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

.blog-marquee-section {
  overflow: hidden;
}

.blog-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  
  direction: ltr;
  
  -webkit-mask-image: linear-gradient(to left, transparent 0%, #000 6%, #000 94%, transparent 100%);
          mask-image: linear-gradient(to left, transparent 0%, #000 6%, #000 94%, transparent 100%);
  padding: 8px 0 16px;
}

.blog-marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: bird-blog-marquee 18s linear infinite;
  
  direction: ltr;
}

.blog-marquee-track:hover {
  animation-play-state: paused;
}

.blog-marquee-card {
  flex: 0 0 340px;
  width: 340px;
  
  direction: rtl;
}

@keyframes bird-blog-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(var(--mq-end, -50%)); }
}


.blog-marquee-card.has-image .blog-card-img {
  background: var(--bg2);
}
.blog-marquee-card.has-image .blog-card-img-overlay {
  background: linear-gradient(180deg, transparent 40%, var(--glass-92));
}


.blog-marquee-card .blog-card-tag {
  -webkit-backdrop-filter: none;
          backdrop-filter: none;
  background: var(--glass-92);
}


.blog-marquee-card .blog-card-img {
  height: 160px;
}
.blog-marquee-card .blog-card-body {
  padding: 20px;
}
.blog-marquee-card .blog-card-title {
  font-size: 17px;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-marquee-card .blog-card-desc {
  font-size: 13px;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}


.blog-marquee-card .blog-card-date {
  direction: rtl;
  font-family: 'IRANYekanX', sans-serif;
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0;
}


.testimonials-marquee-section {
  overflow: hidden;
}

.testimonials-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  
  direction: ltr;
  -webkit-mask-image: linear-gradient(to left, transparent 0%, #000 6%, #000 94%, transparent 100%);
          mask-image: linear-gradient(to left, transparent 0%, #000 6%, #000 94%, transparent 100%);
  padding: 8px 0 16px;
}

.testimonials-marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: bird-test-marquee 45s linear infinite;
  direction: ltr;
}

.testimonials-marquee-track:hover {
  animation-play-state: paused;
}

.testimonial-marquee-card {
  flex: 0 0 380px;
  width: 380px;
  direction: rtl;
  
  display: flex;
  flex-direction: column;
}

.testimonial-marquee-card .testimonial-text {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: calc(14px * 1.9 * 4);
}

@keyframes bird-test-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(var(--mq-end, -50%)); }
}


@media (max-width: 768px) {
  .blog-marquee-card {
    flex: 0 0 280px;
    width: 280px;
  }
  .blog-marquee-track {
    animation-duration: 22s;
  }
  .testimonial-marquee-card {
    flex: 0 0 300px;
    width: 300px;
  }
  .testimonials-marquee-track {
    animation-duration: 32s;
  }
}


@media (prefers-reduced-motion: reduce) {
  .blog-marquee-track,
  .testimonials-marquee-track {
    animation: none;
  }
  
  .blog-marquee,
  .testimonials-marquee {
    overflow-x: auto;
    -webkit-mask-image: none;
            mask-image: none;
  }
  
  .blog-marquee-card[aria-hidden="true"],
  .testimonial-marquee-card[aria-hidden="true"] {
    display: none;
  }
}


.footer-col-trust {
  display: flex;
  flex-direction: column;
}

.footer-trust-badges {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 4px;
}


.footer-trust-badges img {
  width: 80px;
  height: auto;
  border-radius: 8px;
  display: block;
}

.footer-trust-badges a {
  display: inline-block;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.footer-trust-badges a:hover {
  opacity: 1;
}


.trust-badge-placeholder {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  padding: 16px;
  border: 1px dashed rgba(201,168,76,0.3);
  border-radius: 10px;
  color: rgba(201,168,76,0.6);
  font-size: 12px;
  line-height: 1.6;
  text-align: right;
  max-width: 140px;
}

.trust-badge-placeholder svg {
  opacity: 0.5;
}


.reading-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 3px;
  background: rgba(201,168,76,0.08); z-index: 200;
}
.reading-progress-bar {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-light), var(--gold-glow));
  box-shadow: 0 0 10px rgba(201,168,76,0.4);
  transition: width .1s linear;
}


.sp-hero {
  position: relative;
  padding: 120px 5vw 60px;
  text-align: center;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(201,168,76,0.07), transparent 70%);
  border-bottom: 1px solid var(--border);
}

.sp-breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.sp-breadcrumb a { color: var(--text-muted); text-decoration: none; transition: color .2s; }
.sp-breadcrumb a:hover { color: var(--gold-light); }
.sp-bc-sep { color: var(--gold-deep); font-size: 9px; }

.sp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  padding: 7px 20px;
  border: 1px solid var(--border-strong);
  border-radius: 100px;
  margin-bottom: 28px;
}

.sp-title {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.35;
  max-width: 860px;
  margin: 0 auto 24px;
  letter-spacing: -0.5px;
}

.sp-excerpt {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 36px;
  line-height: 2;
}

.sp-excerpt p { margin: 0; }

.sp-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  font-size: 13px;
  color: var(--text-muted);
  flex-wrap: wrap;
}
.sp-meta-item { display: flex; align-items: center; gap: 8px; }
.sp-meta-item svg { width: 13px; height: 13px; color: var(--gold); flex-shrink: 0; }
.sp-author-mini { gap: 10px; }
.sp-avatar {
  width: 30px; height: 30px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-deep));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 12px; color: var(--bg);
}
.sp-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold-deep); }


.sp-cover {
  max-width: 1200px;
  margin: -30px auto 0;
  padding: 0 5vw;
  position: relative;
  z-index: 2;
}
.sp-cover-inner {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 16/7;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.sp-cover-inner.has-image { background-size: cover; background-position: center; }
.sp-cover-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, var(--glass-50));
}
.sp-cover-inner svg {
  width: 110px; height: 110px;
  color: var(--gold-light); opacity: 0.55;
  position: relative;
}


.sp-layout {
  max-width: 1280px;
  margin: 60px auto 0;
  padding: 0 5vw 80px;
  display: grid;
  grid-template-columns: 200px 1fr 220px;
  gap: 56px;
  align-items: start;
}


.sp-share-col {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.sp-share-label {
  font-family: 'IRANYekanX', sans-serif;
  font-style: normal;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  color: var(--gold);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  width: 100%;
  text-align: center;
  margin-bottom: 4px;
}
.sp-share-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg2);
  color: var(--text-muted);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all .25s;
  text-decoration: none;
}
.sp-share-btn:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  background: rgba(201,168,76,0.07);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(201,168,76,0.15);
}
.sp-share-btn svg { width: 18px; height: 18px; }


.sp-content {
  font-size: 17px;
  line-height: 2.1;
  color: var(--tx-87);
  min-width: 0;
}
.sp-content > * + * { margin-top: 24px; }

.sp-content h2 {
  font-size: 26px; font-weight: 800; color: var(--text);
  margin-top: 52px !important; margin-bottom: 16px;
  padding-right: 18px; position: relative;
}
.sp-content h2::before {
  content: ''; position: absolute;
  right: 0; top: 8px; bottom: 8px;
  width: 4px; border-radius: 2px;
  background: linear-gradient(180deg, var(--gold-light), var(--gold-deep));
}
.sp-content h3 {
  font-size: 20px; font-weight: 700;
  color: var(--gold-light);
  margin-top: 36px !important; margin-bottom: 10px;
}
.sp-content a { color: var(--gold-light); border-bottom: 1px dashed var(--gold-deep); text-decoration: none; transition: all .2s; }
.sp-content a:hover { color: var(--gold-glow); border-bottom-color: var(--gold); border-bottom-style: solid; }
.sp-content strong { color: var(--gold-light); font-weight: 700; }
.sp-content ul, .sp-content ol { padding-right: 24px; }
.sp-content li { margin-bottom: 8px; }
.sp-content li::marker { color: var(--gold); }
.sp-content blockquote {
  margin: 40px -10px !important;
  padding: 32px 48px;
  background: rgba(201,168,76,0.03);
  border: 1px solid var(--border);
  border-right: 4px solid var(--gold);
  border-radius: 12px;
  font-size: 18px; line-height: 2;
  color: var(--text); position: relative;
}
.sp-content blockquote::before {
  content: '"'; position: absolute;
  top: -6px; right: 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 70px; color: var(--gold);
  line-height: 1; opacity: 0.35;
}
.sp-content pre {
  background: var(--bg2); border: 1px solid var(--border); border-radius: 12px;
  padding: 20px 22px; font-family: 'JetBrains Mono','Fira Code',monospace;
  font-size: 14px; color: var(--gold-light);
  direction: ltr; text-align: left; overflow-x: auto; line-height: 1.7;
}
.sp-content img {
  width: 100%; height: auto;
  border-radius: 14px; border: 1px solid var(--border);
  display: block; margin: 8px 0;
}
.sp-content figure { margin: 32px 0 !important; }
.sp-content figcaption {
  text-align: center; font-size: 13px;
  color: var(--text-muted); margin-top: 10px; font-style: italic;
}


.sp-table-wrap {
  margin: 24px 0; overflow-x: auto; -webkit-overflow-scrolling: touch;
  border: 1px solid var(--border); border-radius: 14px;
}
.sp-content table {
  width: 100%; border-collapse: collapse; font-size: 14.5px; line-height: 1.85;
  background: var(--bg2); min-width: 420px;
}
.sp-table-wrap > table { border: 0; margin: 0; } 

.sp-content > table { border: 1px solid var(--border); border-radius: 14px; overflow: hidden; }
.sp-content table th {
  background: linear-gradient(180deg, rgba(201,168,76,.15), rgba(201,168,76,.06));
  color: var(--gold-light); font-weight: 800; text-align: right;
  padding: 13px 16px; white-space: nowrap;
  border-bottom: 1px solid rgba(201,168,76,.35);
}
.sp-content table td {
  padding: 12px 16px; text-align: right; color: var(--text);
  border-bottom: 1px solid var(--border);
  border-inline-start: 1px solid rgba(255,255,255,.035);
}
.sp-content table tr th:first-child,
.sp-content table tr td:first-child { border-inline-start: 0; }
.sp-content table tbody tr:nth-child(even) { background: rgba(201,168,76,.035); }
.sp-content table tbody tr:hover { background: rgba(201,168,76,.07); }
.sp-content table tbody tr:last-child td { border-bottom: 0; }

.sp-content > .sp-table-wrap + * { margin-top: 24px; }


.sp-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 48px !important; padding-top: 40px; border-top: 1px solid var(--border); }
.sp-tag-pill {
  padding: 8px 16px;
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 100px; color: var(--text-muted);
  font-size: 13px; text-decoration: none; transition: all .25s;
}
.sp-tag-pill:hover { border-color: var(--gold); color: var(--gold-light); background: rgba(201,168,76,0.04); }


.sp-author-box {
  display: flex; gap: 20px;
  padding: 28px; margin-top: 40px !important;
  background: linear-gradient(135deg, var(--bg2), var(--surface));
  border: 1px solid var(--border); border-radius: 18px;
}
.sp-author-box-avatar {
  width: 72px; height: 72px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold-glow), var(--gold-deep));
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; font-weight: 800; color: var(--bg);
  box-shadow: 0 0 20px rgba(201,168,76,0.2);
}
.sp-author-box-label {
  font-family: 'IRANYekanX', sans-serif; font-style: normal;
  font-size: 12px; font-weight: 700; letter-spacing: 0; text-transform: none;
  color: var(--gold); margin-bottom: 4px;
}
.sp-author-box-name { font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.sp-author-box-bio { font-size: 13px; line-height: 1.9; color: var(--text-muted); }


.sp-post-nav {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; margin-top: 40px !important;
}
.sp-nav-card {
  padding: 22px; background: var(--bg2);
  border: 1px solid var(--border); border-radius: 14px;
  text-decoration: none; transition: all .3s; display: block;
}
.sp-nav-card:hover { border-color: var(--gold-deep); background: rgba(201,168,76,0.03); transform: translateY(-2px); }
.sp-nav-label {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; color: var(--text-muted);
  letter-spacing: 2px; margin-bottom: 10px;
}
.sp-nav-label svg { width: 13px; height: 13px; }
.sp-nav-next .sp-nav-label { justify-content: flex-end; }
.sp-nav-title { font-size: 14px; font-weight: 600; color: var(--text); line-height: 1.6; }
.sp-nav-next .sp-nav-title { text-align: left; }


.sp-toc-col { position: sticky; top: 100px; }
.sp-toc-title {
  font-family: 'IRANYekanX', sans-serif; font-style: normal;
  font-size: 12px; font-weight: 700; letter-spacing: 0; text-transform: none;
  color: var(--gold); margin-bottom: 14px;
  padding-bottom: 12px; border-bottom: 1px solid var(--border);
}
.sp-toc-list { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.sp-toc-list a {
  display: block; padding: 9px 14px;
  border-right: 2px solid transparent;
  color: var(--text-muted); text-decoration: none;
  font-size: 13px; line-height: 1.6; border-radius: 0 8px 8px 0;
  transition: all .2s;
}
.sp-toc-list a:hover { color: var(--gold-light); background: rgba(201,168,76,0.04); border-right-color: var(--gold-deep); }
.sp-toc-list a.active { color: var(--gold-light); background: rgba(201,168,76,0.06); border-right-color: var(--gold); }


.sp-comments-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 5vw 100px;
}
.sp-comments-head {
  display: flex; align-items: flex-end;
  padding-bottom: 20px; border-bottom: 1px solid var(--border);
  margin-bottom: 36px;
}
.sp-comments-count { display: flex; align-items: center; gap: 14px; }
.sp-comments-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px; line-height: 1;
  color: var(--gold-light); font-weight: 300;
}
.sp-comments-label { font-size: 13px; color: var(--text-muted); letter-spacing: 1px; }


.sp-comment-form { background: var(--bg2); border: 1px solid var(--border); border-radius: 18px; padding: 28px; margin-bottom: 40px; }
.sp-comment-form-title { font-size: 18px; font-weight: 700; color: var(--text); margin-bottom: 20px; }
.sp-comment-fields-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.sp-comment-field input,
.sp-comment-field textarea,
#comment-form input[type="text"],
#comment-form input[type="email"],
#comment-form textarea {
  width: 100%; padding: 13px 18px;
  background: var(--bg); border: 1px solid var(--border); border-radius: 12px;
  color: var(--text); font-family: inherit; font-size: 14px;
  outline: none; transition: all .2s; direction: rtl;
}
#comment-form input:focus, #comment-form textarea:focus,
.sp-comment-field input:focus, .sp-comment-field textarea:focus {
  border-color: var(--gold-deep); background: rgba(201,168,76,0.02);
}
.sp-comment-field-full { margin-bottom: 14px; }
.sp-comment-field-full textarea { min-height: 120px; resize: vertical; }
.sp-comment-note { font-size: 12px; color: var(--text-muted); margin-bottom: 16px !important; }
.sp-comment-form-actions { display: flex; justify-content: flex-start; }
.sp-comment-submit {
  padding: 12px 28px;
  background: linear-gradient(135deg, var(--gold-glow), var(--gold));
  color: var(--bg); border: none; border-radius: 100px;
  font-family: inherit; font-weight: 700; font-size: 13px;
  cursor: pointer; transition: all .25s;
}
.sp-comment-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(201,168,76,0.3); }


.sp-comment-list { list-style: none; padding: 0; }
.sp-comment-item { padding: 24px 0; border-bottom: 1px solid var(--border); }
.sp-comment-item:last-child { border-bottom: 0; }
.sp-comment-item .children { list-style: none; padding-right: 58px; margin-top: 16px; border-right: 2px solid var(--border); }
.sp-comment-head { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.sp-comment-avatar {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 16px; color: var(--bg);
}
.sp-comment-meta { flex: 1; }
.sp-comment-author { font-weight: 700; font-size: 14px; color: var(--text); display: flex; align-items: center; gap: 8px; }
.sp-comment-badge { font-size: 11px; color: var(--gold); font-weight: 400; }
.sp-comment-date { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.sp-comment-body { font-size: 14px; line-height: 1.9; color: var(--tx-85); margin-bottom: 10px; }
.sp-comment-body p { margin: 0; }
.sp-comment-actions { display: flex; gap: 14px; }
.comment-reply-link {
  display: flex; align-items: center; gap: 5px;
  font-size: 12px; color: var(--text-muted);
  text-decoration: none; transition: color .2s;
}
.comment-reply-link:hover { color: var(--gold-light); }


.sp-related {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 5vw 100px;
  border-top: 1px solid var(--border);
  text-align: center;
}
.sp-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  text-align: right;
}
.sp-related-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 18px; overflow: hidden;
  text-decoration: none; transition: all .3s; display: block;
}
.sp-related-card:hover { border-color: var(--gold-deep); transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.3); }
.sp-related-img {
  aspect-ratio: 16/10;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.sp-related-img svg { width: 52px; height: 52px; color: var(--gold); opacity: 0.55; }
.sp-related-tag {
  position: absolute; top: 12px; right: 12px;
  padding: 4px 12px;
  background: var(--glass-70); backdrop-filter: blur(8px);
  border: 1px solid var(--border); border-radius: 100px;
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 10px; letter-spacing: 2px; color: var(--gold-light);
}
.sp-related-body { padding: 18px 20px 20px; }
.sp-related-title { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 10px; line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.sp-related-meta { display: flex; justify-content: space-between; font-size: 12px; color: var(--text-muted); }
.sp-related-arrow { color: var(--gold); }


@media (max-width: 1100px) {
  .sp-layout { grid-template-columns: 1fr; gap: 40px; }
  .sp-share-col { position: static; flex-direction: row; justify-content: center; flex-wrap: wrap; }
  .sp-toc-col { position: static; order: -1; }
  .sp-toc-list { flex-direction: row; flex-wrap: wrap; gap: 6px; }
  .sp-toc-list a { border-right: 0; border: 1px solid var(--border); border-radius: 100px; padding: 7px 14px; font-size: 12px; }
  .sp-toc-list a.active { background: rgba(201,168,76,0.06); border-color: var(--gold); }
}
@media (max-width: 768px) {
  .sp-related-grid { grid-template-columns: 1fr; }
  .sp-post-nav { grid-template-columns: 1fr; }
  .sp-author-box { flex-direction: column; }
  .sp-comment-fields-row { grid-template-columns: 1fr; }
  .sp-cover { padding: 0 3vw; }
  .sp-cover-inner { aspect-ratio: 16/9; border-radius: 14px; }
}

:root{
  --glass-40:rgba(5,5,5,0.4); --glass-50:rgba(5,5,5,0.5); --glass-60:rgba(5,5,5,0.6);
  --glass-70:rgba(5,5,5,0.7); --glass-80:rgba(5,5,5,0.8); --glass-85:rgba(5,5,5,0.85);
  --glass-90:rgba(5,5,5,0.9); --glass-92:rgba(5,5,5,0.92);
  --panel-50:rgba(10,10,10,0.5); --panel-60:rgba(10,10,10,0.6); --panel-85:rgba(10,10,10,0.85);
  --panel-95:rgba(10,10,10,0.95); --panel-97:rgba(10,10,10,0.97);
  
  --icon-g1:#FFE8A8; --icon-g2:#E8C97A; --icon-g3:#8A6420;
}

html[data-bird-theme="light"]{
  --bg:#F6F3EC; --bg2:#FBF9F4; --surface:#FFFFFF; --surface2:#F1EDE3;
  --border:rgba(138,100,32,0.15); --border-strong:rgba(138,100,32,0.36);
  
  --text:#221B10; --text-muted:rgba(34,27,16,0.64); --text-dim:rgba(34,27,16,0.66);
  --text-strong:#221B10;
  --gold:#8A6420; --gold-light:#97711F; --gold-glow:#A9842F; --gold-deep:#6B4D14;
  --tx-30:rgba(34,27,16,0.66); --tx-55:rgba(34,27,16,0.60); --tx-60:rgba(34,27,16,0.64);
  --tx-85:rgba(34,27,16,0.80); --tx-87:rgba(34,27,16,0.83); --tx-95:rgba(34,27,16,0.92);
  --glass-40:rgba(251,249,244,0.70); --glass-50:rgba(251,249,244,0.78); --glass-60:rgba(251,249,244,0.85);
  --glass-70:rgba(251,249,244,0.90); --glass-80:rgba(251,249,244,0.93); --glass-85:rgba(251,249,244,0.95);
  --glass-90:rgba(251,249,244,0.97); --glass-92:rgba(251,249,244,0.98);
  --panel-50:rgba(251,249,244,0.80); --panel-60:rgba(251,249,244,0.88); --panel-85:#F7F4ED;
  --panel-95:#F9F6F0; --panel-97:#FBF8F2;
  --card-50:rgba(255,255,255,0.66); --card-60:rgba(255,255,255,0.78); --card-85:#FFFFFF; --card-95:#FFFFFF; --card-97:#FFFFFF;
  --icon-g1:#C9A84C; --icon-g2:#8A6420; --icon-g3:#6B4D14;
}

html[data-bird-theme="light"] body{ color:var(--text); font-weight:400; }
html[data-bird-theme="light"] ::selection{ background:rgba(201,168,76,.30); color:#221B10; }

html[data-bird-theme="light"] .hero::after,
html[data-bird-theme="light"] .hero::before{ opacity:.5; }


.bird-theme-toggle{width:40px;height:40px;flex:none;display:inline-flex;align-items:center;justify-content:center;border-radius:50%;background:var(--surface2);border:1px solid var(--border-strong);color:var(--gold-light);cursor:pointer;transition:.2s;padding:0;}
.bird-theme-toggle:hover{border-color:var(--gold);color:var(--gold);transform:translateY(-1px);}
.bird-theme-toggle .bti-sun{display:none;}
html[data-bird-theme="light"] .bird-theme-toggle .bti-moon{display:none;}
html[data-bird-theme="light"] .bird-theme-toggle .bti-sun{display:block;}
@media (hover:hover){.bird-theme-toggle{cursor:none;}}


.bird-theme-modal{position:fixed;inset:0;z-index:100000;display:none;opacity:0;align-items:center;justify-content:center;background:rgba(0,0,0,0.82);padding:20px;font-family:'IRANYekanX',sans-serif;}
.bird-theme-modal.show{display:flex;opacity:1;animation:btmFade .25s ease;}
@keyframes btmFade{from{opacity:0}to{opacity:1}}
.btm-card{width:100%;max-width:420px;background:var(--surface);border:1px solid var(--border-strong);border-radius:20px;padding:30px 26px;text-align:center;box-shadow:0 24px 70px rgba(0,0,0,0.55);}
.btm-ico{font-size:38px;margin-bottom:6px;}
.btm-title{font-size:20px;font-weight:800;color:var(--text);margin:0 0 8px;}
.btm-sub{font-size:13px;color:var(--text-muted);line-height:1.9;margin:0 0 22px;}
.btm-opts{display:flex;gap:14px;}
.btm-opt{flex:1;position:relative;background:var(--bg2);border:2px solid var(--border);border-radius:14px;padding:16px 10px 14px;cursor:pointer;transition:.2s;font-family:'IRANYekanX',sans-serif;}
.btm-opt:hover{border-color:var(--gold);transform:translateY(-2px);}
.btm-prev{display:block;height:52px;border-radius:10px;margin-bottom:10px;}
.btm-prev-dark{background:linear-gradient(135deg,#0a0a0a,#161616);box-shadow:inset 0 0 0 1px rgba(201,168,76,.3);}
.btm-prev-light{background:linear-gradient(135deg,#ffffff,#efe9db);box-shadow:inset 0 0 0 1px rgba(138,100,32,.3);}
.btm-opt-name{font-size:15px;font-weight:800;color:var(--text);}
.btm-badge{position:absolute;top:8px;left:8px;font-size:10px;font-weight:700;color:#0a0a0a;background:var(--gold-glow);padding:2px 8px;border-radius:20px;}
@media (hover:hover){.btm-opt{cursor:none;}}


.bird-theme-hint{position:fixed;top:92px;left:50%;transform:translateX(-50%) translateY(-12px);z-index:100000;max-width:340px;background:var(--surface);border:1px solid var(--gold);border-radius:12px;padding:13px 16px;font-family:'IRANYekanX',sans-serif;font-size:12.5px;line-height:1.85;color:var(--text);box-shadow:0 14px 40px rgba(0,0,0,0.4);opacity:0;pointer-events:none;transition:.35s;text-align:center;}
.bird-theme-hint strong{color:var(--gold-light);}
.bird-theme-hint.show{opacity:1;transform:translateX(-50%) translateY(0);}


:root{ --card-50:rgba(15,15,15,0.5); --card-60:rgba(15,15,15,0.6); --card-85:rgba(15,15,15,0.85); --card-95:rgba(15,15,15,0.95); --card-97:rgba(15,15,15,0.97); }

html[data-bird-theme="light"] body,
html[data-bird-theme="light"] body.elementor-kit-11{ background-color:var(--bg) !important; }
html[data-bird-theme="light"] .elementor-kit-11{ --e-global-color-text:#221B10; --e-global-color-accent:#F6F3EC; }


:root{
  --text-strong:#fff;
  --tx-30:rgba(240,232,213,0.52); --tx-55:rgba(240,232,213,0.55); --tx-60:rgba(240,232,213,0.6);
  --tx-85:rgba(240,232,213,0.85); --tx-87:rgba(240,232,213,0.87); --tx-95:rgba(240,232,213,0.95);
}

html[data-bird-theme="light"] .hero-title,
html[data-bird-theme="light"] .hero-desc,
html[data-bird-theme="light"] .section-title{ text-shadow:none !important; }


html[data-bird-theme="light"] .hero-slogan{ color:var(--gold-deep); }


.cursor-dot,#cd,.cursor-ring,#cr{display:none !important;}
@media (hover:hover){
  html,body,body *{cursor:auto !important;}
  a,a *,button,button *,.btn,.btn *,.nav-cta,.bird-theme-toggle,.btm-opt,.nav-toggle,select,summary,label,[role="button"],[onclick]{cursor:pointer !important;}
  input,textarea,[contenteditable]{cursor:text !important;}
}

html[data-bird-theme="light"] input:where(:not([type=range],[type=checkbox],[type=radio])),
html[data-bird-theme="light"] select,
html[data-bird-theme="light"] textarea{background:#fff !important;color:var(--text) !important;border:1px solid var(--border-strong) !important;}
html[data-bird-theme="light"] input::placeholder,
html[data-bird-theme="light"] textarea::placeholder{color:rgba(34,27,16,.45) !important;}

html[data-bird-theme="light"] .page-content [style*="color"]{color:var(--text) !important;-webkit-text-fill-color:var(--text) !important;}
html[data-bird-theme="light"] .page-content a[style*="color"]{color:var(--gold) !important;-webkit-text-fill-color:var(--gold) !important;}
html[data-bird-theme="light"] .trust-card{box-shadow:0 1px 2px rgba(34,27,16,.04), 0 18px 44px rgba(110,84,30,.12) !important;}
html[data-bird-theme="light"] .trust-card::before{opacity:.5;}


html[data-bird-theme="light"] .nav-search{background:#fff;border-color:var(--border-strong);}
html[data-bird-theme="light"] .nav-search input{background:transparent !important;border:none !important;}
html[data-bird-theme="light"] .nav-search-icon{background:none !important;border:0 !important;color:var(--gold) !important;box-shadow:none !important;}

html[data-bird-theme="light"] .mega-card:hover,
html[data-bird-theme="light"] .product-card:hover,
html[data-bird-theme="light"] .service-tile:hover{
  border-color:var(--gold) !important;
  box-shadow:0 2px 4px rgba(34,27,16,.05), 0 20px 44px rgba(110,84,30,.15) !important;
}
html[data-bird-theme="light"] .mega-card:hover::before,
html[data-bird-theme="light"] .mega-card:hover::after,
html[data-bird-theme="light"] .product-card:hover::before,
html[data-bird-theme="light"] .product-card:hover::after,
html[data-bird-theme="light"] .service-tile:hover::after{opacity:.22 !important;}

html[data-bird-theme="light"] .mega-card,
html[data-bird-theme="light"] .product-card,
html[data-bird-theme="light"] .service-tile,
html[data-bird-theme="light"] .cta-banner{box-shadow:0 1px 2px rgba(34,27,16,.04), 0 14px 34px rgba(110,84,30,.10) !important;}


html[data-bird-theme="light"] .cta-title,
html[data-bird-theme="light"] .support-strip-text{
  background:none !important;
  -webkit-text-fill-color:var(--gold) !important;
  color:var(--gold) !important;
}

html[data-bird-theme="light"] .hero-vignette{
  background:radial-gradient(ellipse 55% 55% at center, rgba(201,168,76,.05) 0%, transparent 70%) !important;
}


.nav-item.mega-open .mega-menu { display: flex; opacity: 1; visibility: visible; transform: none; }


img.emoji, img.wp-smiley { width:1em!important; height:1em!important; max-width:1em!important; min-width:0!important; display:inline!important; vertical-align:-.1em; margin:0 .05em 0 .1em!important; padding:0!important; border:none!important; box-shadow:none!important; }


.btn-primary:active,.btn-secondary:active,.nav-cta:active,.hero-tab:active,
.bsp-pill:active,.bsp-btn-cart:active,.bsp-tab:active,
.pagination a:active,.page-numbers:active,.filter-chip:active,
.mega-card-link:active,.service-tile:active,.bird-btn:active{transform:scale(.97);}
.product-card:active,.mega-card:active,.blog-card:active,.testimonial-card:active{transform:scale(.985);}

@media (hover:none){
  .product-card:hover,.mega-card:hover,.service-tile:hover,.blog-card:hover,
  .testimonial-card:hover,.btn-primary:hover,.btn-secondary:hover,.nav-cta:hover,
  .hero-tab:hover,.bsp-pill:hover,.filter-chip:hover{transform:none;}
}

@media (prefers-reduced-motion: reduce){
  .btn-primary:active,.btn-secondary:active,.nav-cta:active,.hero-tab:active,
  .bsp-pill:active,.bsp-btn-cart:active,.product-card:active,.mega-card:active,
  .blog-card:active,.testimonial-card:active,.service-tile:active{transform:none;}
}


.woocommerce-cart form.woocommerce-cart-form .coupon,
.woocommerce-cart .cart .coupon,
.woocommerce-checkout .checkout_coupon,
.woocommerce-checkout .woocommerce-form-coupon-toggle{display:none!important;}


:where(a, button, input, select, textarea, summary, [tabindex]):focus-visible {
  outline: 2px solid var(--gold, #C9A84C);
  outline-offset: 3px;
  border-radius: 8px;
}
html[data-bird-theme="light"] :where(a, button, input, select, textarea, summary, [tabindex]):focus-visible {
  outline-color: #8A6420;
}
.nav-item:focus-within .mega-menu {
  display: flex; opacity: 1; visibility: visible; transform: none;
}
